On 29 January 2010 10:50, David Blevins <david.blev...@visi.com> wrote:
> > On Jan 26, 2010, at 5:48 PM, Stephen Davidson wrote: > > Greetings. >> >> Thanks! I am still learning this Maven thingy. >> > > Been using it for years and still learning things. > > > <plugin> >> <groupId>org.apache.maven.plugins</groupId> >> <artifactId>maven-surefire-plugin</artifactId> >> <configuration> >> <skip>true</skip> >> <systemPropertyVariables> >> </systemPropertyVariables> >> </configuration> >> <executions> >> <execution> >> <id>surefire-it</id> >> <phase>integration-test</phase> >> <goals> >> <goal>test</goal> >> </goals> >> <configuration> >> <skip>false</skip> >> </configuration> >> </execution> >> </executions> >> </plugin> >> > > Not sure what that might do. I don't typically specify the <execution> for > surefire. Also not sure what the <skip>true</skip> might do in the > <configuration> section. > > I'd try, in a test case, listing the properties available and see if the > ones you've specified show up. If they don't than it's definitely a maven > issue and you'll want to ping their user list. If they do show up, and > somehow OpenEJB isn't recognizing them, then there's likely something we > need to track down on our end. > > Hope that helps at least a little :) > > > That "hack" was needed before maven-failsafe-plugin was released... if you switch over to failsafe your life should be easier > > -David > > -- > http://blog.dblevins.com/ > http://twitter.com/dblevins > Like OpenEJB? Tweet it! > > > >