[jboss-user] [Microcontainer] - Re: Neither 2.0-SNAPSHOT nor 2.0.Beta work with Maven build

genman do-not-reply at jboss.com
Thu Jul 26 01:17:14 EDT 2007


Thanks ... There's some libraries such as junit.jar and jboss-test which are leaking into dependencies as well. It seems these are explicitly added to the kernel:

microcontainer/kernel/pom.xml :

  |   <dependencyManagement>
  |     <dependencies>
  |       <dependency>
  |         <groupId>jboss</groupId>
  |         <artifactId>jboss-test</artifactId>
  |         <version>${version.jboss.test}</version>
  |         <scope>compile</scope>
  |       </dependency>
  |       <dependency>
  |         <groupId>junit</groupId>
  |         <artifactId>junit</artifactId>
  |         <version>${version.junit}</version>
  |         <scope>compile</scope>
  |       </dependency>
  |     </dependencies>
  |   </dependencyManagement>
  | 

Changing compile -> test does not work . There's a bunch of test code, I guess base test cases, that's in src/main/java not src/test/java ...

View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4067673#4067673

Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4067673



More information about the jboss-user mailing list