[jboss-cvs] JBossAS SVN: r59791 - in projects/microcontainer/trunk: build and 8 other directories.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Jan 18 13:04:03 EST 2007


Author: pgier
Date: 2007-01-18 13:04:03 -0500 (Thu, 18 Jan 2007)
New Revision: 59791

Added:
   projects/microcontainer/trunk/aop-mc-int/pom.xml
   projects/microcontainer/trunk/build/pom.xml
   projects/microcontainer/trunk/container/pom.xml
   projects/microcontainer/trunk/dependency/pom.xml
   projects/microcontainer/trunk/deployers/pom.xml
   projects/microcontainer/trunk/kernel/pom.xml
   projects/microcontainer/trunk/managed/pom.xml
   projects/microcontainer/trunk/metatype/pom.xml
   projects/microcontainer/trunk/osgi-int/pom.xml
   projects/microcontainer/trunk/spring-int/pom.xml
Log:
Adding basic pom.xml files for maven build.
Reference: JBMICROCONT-117

Added: projects/microcontainer/trunk/aop-mc-int/pom.xml
===================================================================
--- projects/microcontainer/trunk/aop-mc-int/pom.xml	                        (rev 0)
+++ projects/microcontainer/trunk/aop-mc-int/pom.xml	2007-01-18 18:04:03 UTC (rev 59791)
@@ -0,0 +1,153 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>jboss</groupId>
+  <artifactId>jboss-aop-mc-int</artifactId>
+  <packaging>jar</packaging>
+  <version>2.0.0.Beta</version>
+  <name>JBoss Microcontainer AOP MC INT</name>
+  <url>http://www.jboss.org</url>
+  <description>JBoss Microcontainer</description>
+  <licenses>
+   <license>
+      <name>lgpl</name>
+      <url>http://repository.jboss.com/licenses/lgpl.txt</url>
+   </license>
+  </licenses>
+  <organization>
+    <name>JBoss Inc.</name>
+    <url>http://www.jboss.org</url>
+  </organization>
+ 
+  <repositories>
+    <repository>
+      <id>jboss</id>
+      <name>JBoss Inc. Repository</name>
+      <layout>default</layout>
+      <url>http://repository.jboss.com/maven2/</url>
+      <snapshots>
+        <enabled>true</enabled>
+      </snapshots>
+    </repository>
+  </repositories>
+
+  <pluginRepositories>
+     <pluginRepository>
+        <id>jbosspluginrepo</id>
+        <name>jboss plugin repository</name>
+        <url>http://repository.jboss.com/maven2</url>
+        <layout>default</layout>
+        <snapshots>
+           <enabled>false</enabled>
+           <updatePolicy>never</updatePolicy>
+        </snapshots>
+     </pluginRepository>
+  </pluginRepositories>
+  
+  <build>
+     <sourceDirectory>src/main</sourceDirectory>
+     <testSourceDirectory>src/tests</testSourceDirectory>
+     <finalName>${artifactId}</finalName>
+     <plugins>
+    
+      <!-- define how we want compilation to take place
+           here, we accept most of the defaults but say that we want the
+           optimization flag set, and define the source and target to be 1.5,
+           these setting will be inherited by child projects -->
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <version>2.0</version>
+          <configuration>
+              <optimize>true</optimize>
+              <source>1.5</source>
+              <target>1.5</target>
+          </configuration>
+      </plugin>  
+
+       <plugin>
+         <groupId>org.apache.maven.plugins</groupId>
+         <artifactId>maven-jar-plugin</artifactId>
+         <configuration>
+           <archive>
+             <manifest>
+               <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
+               <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
+             </manifest>
+           </archive>
+         </configuration>
+       </plugin>
+      <!-- define that we wish to create src jars -->
+      <plugin>
+        <artifactId>maven-source-plugin</artifactId>
+        <inherited>true</inherited>
+         <executions>
+          <execution>
+            <goals>
+              <goal>jar</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>     
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <skip>true</skip>
+        </configuration>
+      </plugin>
+    
+    </plugins>
+  </build>
+  <dependencies>
+  
+    <!-- Global dependencies -->
+    <dependency>
+	  <groupId>jboss</groupId>
+	  <artifactId>jboss-container</artifactId>
+	  <version>2.0.0.Beta</version>
+	</dependency>
+    <dependency>
+	  <groupId>jboss</groupId>
+	  <artifactId>jboss-aop</artifactId>
+	  <!--<version>2.0.0.alpha2</version>-->
+	  <version>snapshot</version>
+	</dependency>
+    <dependency>
+	  <groupId>jboss</groupId>
+	  <artifactId>jboss-common-core</artifactId>
+	  <version>2.0.4.Alpha2</version>
+	</dependency>
+    <dependency>
+	  <groupId>jboss</groupId>
+	  <artifactId>jboss-kernel</artifactId>
+	  <version>2.0.0.Beta</version>
+	</dependency>
+	<dependency>
+	  <groupId>jboss</groupId>
+	  <artifactId>jboss-test</artifactId>
+	  <version>1.0.1.GA</version>
+	</dependency>
+    <dependency>
+	  <groupId>junit</groupId>
+	  <artifactId>junit</artifactId>
+	  <version>3.8.1</version>
+	</dependency>
+	
+	<!-- Test dependencies -->
+	<dependency>
+	  <groupId>jboss</groupId>
+	  <artifactId>jbossxb</artifactId>
+	  <version>1.0.0.CR8</version>
+	</dependency>
+    <dependency>
+      <groupId>jboss</groupId>
+      <artifactId>jboss-kernel</artifactId>
+      <version>2.0.0.Beta</version>
+      <type>test-jar</type>
+      <scope>test</scope>
+    </dependency>
+	
+  </dependencies>
+  
+</project>
+

Added: projects/microcontainer/trunk/build/pom.xml
===================================================================
--- projects/microcontainer/trunk/build/pom.xml	                        (rev 0)
+++ projects/microcontainer/trunk/build/pom.xml	2007-01-18 18:04:03 UTC (rev 59791)
@@ -0,0 +1,70 @@
+<!--
+A top level maven pom that expects a structure like: 
+  build/pom.xml
+  aop-mc-int/pom.xml
+  container/pom.xml
+  dependency/pom.xml
+  deployers/pom.xml
+  kernel/pom.xml
+  managed/pom.xml
+  metatype/pom.xml
+  spring-int/pom.xml
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>jboss</groupId>
+  <version>2.0.0.Beta</version>
+  <artifactId>jboss-microcontainer</artifactId>
+  <name>JBoss Microcontainer Build</name>
+  <url>http://www.jboss.org</url>
+  <description>Parent POM for the JBoss Microcontainer Projects</description>
+  <licenses>
+   <license>
+      <name>lgpl</name>
+      <url>http://repository.jboss.com/licenses/lgpl.txt</url>
+   </license>
+  </licenses>
+  <organization>
+    <name>JBoss Inc.</name>
+    <url>http://www.jboss.org</url>
+  </organization>
+
+  <packaging>pom</packaging>
+  <modules>
+    <module>../container</module>
+    <module>../dependency</module>
+    <module>../metatype</module>
+    <module>../kernel</module>
+    <module>../managed</module>
+    <module>../deployers</module>
+    <module>../aop-mc-int</module>
+    <module>../spring-int</module>
+  </modules>
+  <reporting>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-project-info-reports-plugin</artifactId>
+        <reportSets>
+          <reportSet>
+            <reports>
+              <report>dependencies</report>
+              <report>issue-tracking</report>
+              <report>license</report>
+              <report>scm</report>
+            </reports>
+          </reportSet>
+        </reportSets>
+      </plugin>
+    </plugins>
+  </reporting>
+  
+  <distributionManagement>
+    <repository>
+      <id>cvs-file-repository</id>
+      <url>file://${maven.cvs.root}</url>
+    </repository>
+  </distributionManagement>
+
+</project>

Added: projects/microcontainer/trunk/container/pom.xml
===================================================================
--- projects/microcontainer/trunk/container/pom.xml	                        (rev 0)
+++ projects/microcontainer/trunk/container/pom.xml	2007-01-18 18:04:03 UTC (rev 59791)
@@ -0,0 +1,191 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>jboss</groupId>
+  <artifactId>jboss-container</artifactId>
+  <packaging>jar</packaging>
+  <version>2.0.0.Beta</version>
+  <name>JBoss Microcontainer Container</name>
+  <url>http://www.jboss.org</url>
+  <description>JBoss Microcontainer Container</description>
+  <licenses>
+   <license>
+      <name>lgpl</name>
+      <url>http://repository.jboss.com/licenses/lgpl.txt</url>
+   </license>
+  </licenses>
+  <organization>
+    <name>JBoss Inc.</name>
+    <url>http://www.jboss.org</url>
+  </organization>
+ 
+  <repositories>
+    <repository>
+      <id>jboss</id>
+      <name>JBoss Inc. Repository</name>
+      <layout>default</layout>
+      <url>http://repository.jboss.com/maven2/</url>
+      <snapshots>
+        <enabled>true</enabled>
+      </snapshots>
+    </repository>
+  </repositories>
+
+  <pluginRepositories>
+     <pluginRepository>
+        <id>jbosspluginrepo</id>
+        <name>jboss plugin repository</name>
+        <url>http://repository.jboss.com/maven2</url>
+        <layout>default</layout>
+        <snapshots>
+           <enabled>false</enabled>
+           <updatePolicy>never</updatePolicy>
+        </snapshots>
+     </pluginRepository>
+  </pluginRepositories>
+  
+  <build>
+     <sourceDirectory>src/main</sourceDirectory>
+	 <testSourceDirectory>src/tests</testSourceDirectory>
+     <finalName>${artifactId}</finalName>
+     <plugins>
+    
+    <!-- define how we want compilation to take place
+           here, we accept most of the defaults but say that we want the
+           optimization flag set, and define the source and target to be 1.5,
+           these setting will be inherited by child projects -->
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <version>2.0</version>
+          <configuration>
+              <optimize>true</optimize>
+              <source>1.5</source>
+              <target>1.5</target>
+          </configuration>
+      </plugin>  
+
+       <plugin>
+         <groupId>org.apache.maven.plugins</groupId>
+         <artifactId>maven-jar-plugin</artifactId>
+         <configuration>
+           <archive>
+             <manifest>
+               <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
+               <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
+             </manifest>
+           </archive>
+         </configuration>
+       </plugin>
+	   
+      <!-- define that we wish to create src jars -->
+      <plugin>
+        <artifactId>maven-source-plugin</artifactId>
+        <inherited>true</inherited>
+         <executions>
+          <execution>
+            <goals>
+              <goal>jar</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>     
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <skip>true</skip>
+        </configuration>
+      </plugin>
+    
+    </plugins>
+  </build>
+  <dependencies>
+    <!-- Global dependencies -->
+    <dependency>
+	  <groupId>javassist</groupId>
+	  <artifactId>javassist</artifactId>
+	  <version>3.4.GA</version>
+	</dependency>
+    <dependency>
+	  <groupId>jboss</groupId>
+	  <artifactId>jboss-vfs</artifactId>
+	  <version>2.0.4.snapshot</version>
+	</dependency>
+    <!--<dependency>
+	  <groupId>jboss</groupId>
+	  <artifactId>jboss-common-core</artifactId>
+	  <version>2.0.4.Alpha</version>
+	</dependency>-->
+    <!--<dependency>
+	  <groupId>apache-log4j</groupId>
+	  <artifactId>log4j</artifactId>
+	  <version>1.2.8</version>
+	</dependency>-->
+    <!--<dependency>
+	  <groupId>apache-xerces</groupId>
+	  <artifactId>xercesImpl</artifactId>
+	  <version>2.7.1</version>
+	</dependency>-->
+    <!--<dependency>
+	  <groupId>jboss</groupId>
+	  <artifactId>jboss-logging-jdk</artifactId>
+	  <version>2.0.2.GA</version>
+	</dependency>-->
+    <!--<dependency>
+	  <groupId>jboss</groupId>
+	  <artifactId>jboss-logging-log4j</artifactId>
+	  <version>2.0.2.GA</version>
+	</dependency>-->
+    <!--<dependency>
+	  <groupId>jboss</groupId>
+	  <artifactId>jboss-logging-spi</artifactId>
+	  <version>2.0.2.GA</version>
+	</dependency>-->
+    <!--<dependency>
+	  <groupId>jboss</groupId>
+	  <artifactId>jbossxb</artifactId>
+	  <version>1.0.0.CR8</version>
+	</dependency>-->
+    <!--<dependency>
+	  <groupId>jboss</groupId>
+	  <artifactId>jboss-aop</artifactId>
+	  <version>2.0.0.alpha2</version>
+	</dependency>-->
+    <!--<dependency>
+	  <groupId>oswego-concurrent</groupId>
+	  <artifactId>concurrent</artifactId>
+	  <version>1.3.4</version>
+	</dependency>-->
+    <!--<dependency>
+	  <groupId>net.java.dev.javacc</groupId>
+	  <artifactId>javacc</artifactId>
+	  <version>4.0</version>
+	</dependency>-->
+    <!--<dependency>
+	  <groupId>trove</groupId>
+	  <artifactId>trove</artifactId>
+	  <version>1.0.2</version>
+	</dependency>-->
+	
+	<!-- Test dependencies -->
+    <dependency>
+	  <groupId>jboss</groupId>
+	  <artifactId>jboss-test</artifactId>
+	  <version>1.0.1.GA</version>
+	  <scope>test</scope>
+	</dependency>
+    <dependency>
+	  <groupId>junit</groupId>
+	  <artifactId>junit</artifactId>
+	  <version>3.8.1</version>
+	  <scope>test</scope>
+	</dependency>
+    <dependency>
+	  <groupId>jboss.profiler.jvmti</groupId>
+	  <artifactId>jboss-profiler-jvmti</artifactId>
+	  <version>1.0.0.CR5</version>
+	  <scope>test</scope>
+	</dependency>
+   </dependencies>
+</project>
+

Added: projects/microcontainer/trunk/dependency/pom.xml
===================================================================
--- projects/microcontainer/trunk/dependency/pom.xml	                        (rev 0)
+++ projects/microcontainer/trunk/dependency/pom.xml	2007-01-18 18:04:03 UTC (rev 59791)
@@ -0,0 +1,125 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>jboss</groupId>
+  <artifactId>jboss-dependency</artifactId>
+  <packaging>jar</packaging>
+  <version>2.0.0.Beta</version>
+  <name>JBoss Microcontainer Dependency</name>
+  <url>http://www.jboss.org</url>
+  <description>JBoss Microcontainer Dependency</description>
+  <licenses>
+   <license>
+      <name>lgpl</name>
+      <url>http://repository.jboss.com/licenses/lgpl.txt</url>
+   </license>
+  </licenses>
+  <organization>
+    <name>JBoss Inc.</name>
+    <url>http://www.jboss.org</url>
+  </organization>
+ 
+  <repositories>
+    <repository>
+      <id>jboss</id>
+      <name>JBoss Inc. Repository</name>
+      <layout>default</layout>
+      <url>http://repository.jboss.com/maven2/</url>
+      <snapshots>
+        <enabled>true</enabled>
+      </snapshots>
+    </repository>
+  </repositories>
+
+  <pluginRepositories>
+     <pluginRepository>
+        <id>jbosspluginrepo</id>
+        <name>jboss plugin repository</name>
+        <url>http://repository.jboss.com/maven2</url>
+        <layout>default</layout>
+        <snapshots>
+           <enabled>false</enabled>
+           <updatePolicy>never</updatePolicy>
+        </snapshots>
+     </pluginRepository>
+  </pluginRepositories>
+  
+  <build>
+     <sourceDirectory>src/main</sourceDirectory>
+     <testSourceDirectory>src/tests</testSourceDirectory>
+     <finalName>${artifactId}</finalName>
+     <plugins>
+    
+    <!-- define how we want compilation to take place
+           here, we accept most of the defaults but say that we want the
+           optimization flag set, and define the source and target to be 1.5,
+           these setting will be inherited by child projects -->
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <version>2.0</version>
+          <configuration>
+              <optimize>true</optimize>
+              <source>1.5</source>
+              <target>1.5</target>
+          </configuration>
+      </plugin>  
+
+       <plugin>
+         <groupId>org.apache.maven.plugins</groupId>
+         <artifactId>maven-jar-plugin</artifactId>
+         <configuration>
+           <archive>
+             <manifest>
+               <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
+               <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
+             </manifest>
+           </archive>
+         </configuration>
+       </plugin>
+      <!-- define that we wish to create src jars -->
+      <plugin>
+        <artifactId>maven-source-plugin</artifactId>
+        <inherited>true</inherited>
+         <executions>
+          <execution>
+            <goals>
+              <goal>jar</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>     
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <skip>true</skip>
+        </configuration>
+      </plugin>
+    
+    </plugins>
+  </build>
+  <dependencies>
+    <!-- Global dependencies -->
+    <dependency>
+	  <groupId>jboss</groupId>
+	  <artifactId>jboss-common-core</artifactId>
+	  <version>2.0.4.Alpha</version>
+	</dependency>
+	
+	<!-- Test dependencies -->
+    <dependency>
+	  <groupId>jboss</groupId>
+	  <artifactId>jboss-test</artifactId>
+	  <version>1.0.1.GA</version>
+	  <scope>test</scope>
+	</dependency>
+    <dependency>
+	  <groupId>junit</groupId>
+	  <artifactId>junit</artifactId>
+	  <version>3.8.1</version>
+	  <scope>test</scope>
+	</dependency>
+   </dependencies>
+   
+</project>
+

Added: projects/microcontainer/trunk/deployers/pom.xml
===================================================================
--- projects/microcontainer/trunk/deployers/pom.xml	                        (rev 0)
+++ projects/microcontainer/trunk/deployers/pom.xml	2007-01-18 18:04:03 UTC (rev 59791)
@@ -0,0 +1,141 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>jboss</groupId>
+  <artifactId>jboss-deployers</artifactId>
+  <packaging>jar</packaging>
+  <version>2.0.0.Beta</version>
+  <name>JBoss Microcontainer Deployers</name>
+  <url>http://www.jboss.org</url>
+  <description>JBoss Microcontainer Deployers</description>
+  <licenses>
+   <license>
+      <name>lgpl</name>
+      <url>http://repository.jboss.com/licenses/lgpl.txt</url>
+   </license>
+  </licenses>
+  <organization>
+    <name>JBoss Inc.</name>
+    <url>http://www.jboss.org</url>
+  </organization>
+ 
+  <repositories>
+    <repository>
+      <id>jboss</id>
+      <name>JBoss Inc. Repository</name>
+      <layout>default</layout>
+      <url>http://repository.jboss.com/maven2/</url>
+      <snapshots>
+        <enabled>true</enabled>
+      </snapshots>
+    </repository>
+  </repositories>
+
+  <pluginRepositories>
+     <pluginRepository>
+        <id>jbosspluginrepo</id>
+        <name>jboss plugin repository</name>
+        <url>http://repository.jboss.com/maven2</url>
+        <layout>default</layout>
+        <snapshots>
+           <enabled>false</enabled>
+           <updatePolicy>never</updatePolicy>
+        </snapshots>
+     </pluginRepository>
+  </pluginRepositories>
+  
+  <build>
+     <sourceDirectory>src/main</sourceDirectory>
+     <testSourceDirectory>src/tests</testSourceDirectory>
+     <finalName>${artifactId}</finalName>
+     <plugins>
+    
+      <!-- define how we want compilation to take place
+           here, we accept most of the defaults but say that we want the
+           optimization flag set, and define the source and target to be 1.5,
+           these setting will be inherited by child projects -->
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <version>2.0</version>
+          <configuration>
+              <optimize>true</optimize>
+              <source>1.5</source>
+              <target>1.5</target>
+          </configuration>
+      </plugin>  
+
+       <plugin>
+         <groupId>org.apache.maven.plugins</groupId>
+         <artifactId>maven-jar-plugin</artifactId>
+         <configuration>
+           <archive>
+             <manifest>
+               <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
+               <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
+             </manifest>
+           </archive>
+         </configuration>
+       </plugin>
+      <!-- define that we wish to create src jars -->
+      <plugin>
+        <artifactId>maven-source-plugin</artifactId>
+        <inherited>true</inherited>
+         <executions>
+          <execution>
+            <goals>
+              <goal>jar</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>     
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <skip>true</skip>
+        </configuration>
+      </plugin>
+    
+    </plugins>
+  </build>
+  <dependencies>
+	
+    <!-- Global dependencies -->
+	<dependency>
+	  <groupId>jboss</groupId>
+	  <artifactId>jboss-aop</artifactId>
+	  <version>2.0.0.alpha2</version>
+	</dependency>
+    <dependency>
+	  <groupId>jboss</groupId>
+	  <artifactId>jboss-common-core</artifactId>
+	  <version>2.0.4.Alpha2</version>
+	</dependency>
+    <dependency>
+	  <groupId>jboss</groupId>
+	  <artifactId>jboss-kernel</artifactId>
+	  <version>2.0.0.Beta</version>
+	</dependency>
+    <dependency>
+	  <groupId>jboss</groupId>
+	  <artifactId>jboss-managed</artifactId>
+	  <version>2.0.0.Beta</version>
+	</dependency>
+
+	<!-- Test dependencies -->
+	<dependency>
+	  <groupId>jboss</groupId>
+	  <artifactId>jboss-test</artifactId>
+	  <version>1.0.1.GA</version>
+	  <scope>test</scope>
+	</dependency>
+    <dependency>
+	  <groupId>junit</groupId>
+	  <artifactId>junit</artifactId>
+	  <version>3.8.1</version>
+	  <scope>test</scope>
+	</dependency>
+  </dependencies>
+  
+</project>
+

Added: projects/microcontainer/trunk/kernel/pom.xml
===================================================================
--- projects/microcontainer/trunk/kernel/pom.xml	                        (rev 0)
+++ projects/microcontainer/trunk/kernel/pom.xml	2007-01-18 18:04:03 UTC (rev 59791)
@@ -0,0 +1,147 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>jboss</groupId>
+  <artifactId>jboss-kernel</artifactId>
+  <packaging>jar</packaging>
+  <version>2.0.0.Beta</version>
+  <name>JBoss Microcontainer Kernel</name>
+  <url>http://www.jboss.org</url>
+  <description>JBoss Microcontainer Kernel</description>
+  <licenses>
+    <license>
+      <name>lgpl</name>
+      <url>http://repository.jboss.com/licenses/lgpl.txt</url>
+    </license>
+  </licenses>
+  <organization>
+    <name>JBoss Inc.</name>
+    <url>http://www.jboss.org</url>
+  </organization>
+ 
+  <repositories>
+    <repository>
+      <id>jboss</id>
+      <name>JBoss Inc. Repository</name>
+      <layout>default</layout>
+      <url>http://repository.jboss.com/maven2/</url>
+      <snapshots>
+        <enabled>true</enabled>
+      </snapshots>
+    </repository>
+  </repositories>
+
+  <pluginRepositories>
+    <pluginRepository>
+      <id>jbosspluginrepo</id>
+      <name>jboss plugin repository</name>
+      <url>http://repository.jboss.com/maven2</url>
+      <layout>default</layout>
+      <snapshots>
+        <enabled>false</enabled>
+        <updatePolicy>never</updatePolicy>
+      </snapshots>
+    </pluginRepository>
+  </pluginRepositories>
+  
+  <build>
+    <sourceDirectory>src/main</sourceDirectory>
+    <testSourceDirectory>src/tests</testSourceDirectory>
+    <finalName>${artifactId}</finalName>
+    <plugins>
+    
+    <!-- define how we want compilation to take place
+         here, we accept most of the defaults but say that we want the
+         optimization flag set, and define the source and target to be 1.5,
+         these setting will be inherited by child projects -->
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <version>2.0</version>
+        <configuration>
+          <optimize>true</optimize>
+          <source>1.5</source>
+          <target>1.5</target>
+        </configuration>
+      </plugin>  
+
+       <plugin>
+         <groupId>org.apache.maven.plugins</groupId>
+         <artifactId>maven-jar-plugin</artifactId>
+         <configuration>
+           <archive>
+             <manifest>
+               <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
+               <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
+             </manifest>
+           </archive>
+         </configuration>
+         <executions>
+            <execution>
+                <goals>
+                    <goal>test-jar</goal>
+                </goals>
+            </execution>
+         </executions>
+       </plugin>
+	   	   
+      <!-- define that we wish to create src jars -->
+      <plugin>
+        <artifactId>maven-source-plugin</artifactId>
+        <inherited>true</inherited>
+         <executions>
+          <execution>
+            <goals>
+              <goal>jar</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>     
+    
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <skip>true</skip>
+        </configuration>
+      </plugin>
+	  
+    </plugins>
+  </build>
+  <dependencies>
+    <!-- Global dependencies -->
+    <dependency>
+	  <groupId>jboss</groupId>
+	  <artifactId>jboss-container</artifactId>
+	  <version>2.0.0.Beta</version>
+	</dependency>
+    <dependency>
+	  <groupId>jboss</groupId>
+	  <artifactId>jboss-dependency</artifactId>
+	  <version>2.0.0.Beta</version>
+	</dependency>
+    <dependency>
+	  <groupId>jboss</groupId>
+	  <artifactId>jboss-test</artifactId>
+	  <version>1.0.1.GA</version>
+	</dependency>
+    <dependency>
+	  <groupId>jboss</groupId>
+	  <artifactId>jbossxb</artifactId>
+	  <version>1.0.0.CR8</version>
+	</dependency>
+    
+    <dependency>
+	  <groupId>junit</groupId>
+	  <artifactId>junit</artifactId>
+	  <version>3.8.1</version>
+	  <!-- Note: JUnit is required for the main classes, so it is not actually in the test -->
+	  <!--   scope.  Maybe these dependencies can be changed. --> 
+	  <!--<scope>test</scope>-->
+	</dependency>
+	
+	<!-- Test dependencies -->
+	
+   </dependencies>
+ 
+</project>
+

Added: projects/microcontainer/trunk/managed/pom.xml
===================================================================
--- projects/microcontainer/trunk/managed/pom.xml	                        (rev 0)
+++ projects/microcontainer/trunk/managed/pom.xml	2007-01-18 18:04:03 UTC (rev 59791)
@@ -0,0 +1,136 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>jboss</groupId>
+  <artifactId>jboss-managed</artifactId>
+  <packaging>jar</packaging>
+  <version>2.0.0.Beta</version>
+  <name>JBoss Microcontainer Managed</name>
+  <url>http://www.jboss.org</url>
+  <description>JBoss Microcontainer Managed</description>
+  <licenses>
+   <license>
+      <name>lgpl</name>
+      <url>http://repository.jboss.com/licenses/lgpl.txt</url>
+   </license>
+  </licenses>
+  <organization>
+    <name>JBoss Inc.</name>
+    <url>http://www.jboss.org</url>
+  </organization>
+ 
+  <repositories>
+    <repository>
+      <id>jboss</id>
+      <name>JBoss Inc. Repository</name>
+      <layout>default</layout>
+      <url>http://repository.jboss.com/maven2/</url>
+      <snapshots>
+        <enabled>true</enabled>
+      </snapshots>
+    </repository>
+  </repositories>
+
+  <pluginRepositories>
+     <pluginRepository>
+        <id>jbosspluginrepo</id>
+        <name>jboss plugin repository</name>
+        <url>http://repository.jboss.com/maven2</url>
+        <layout>default</layout>
+        <snapshots>
+           <enabled>false</enabled>
+           <updatePolicy>never</updatePolicy>
+        </snapshots>
+     </pluginRepository>
+  </pluginRepositories>
+  
+  <build>
+     <sourceDirectory>src/main</sourceDirectory>
+     <testSourceDirectory>src/tests</testSourceDirectory>
+     <finalName>${artifactId}</finalName>
+     <plugins>
+    
+      <!-- define how we want compilation to take place
+           here, we accept most of the defaults but say that we want the
+           optimization flag set, and define the source and target to be 1.5,
+           these setting will be inherited by child projects -->
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <version>2.0</version>
+          <configuration>
+              <optimize>true</optimize>
+              <source>1.5</source>
+              <target>1.5</target>
+          </configuration>
+      </plugin>  
+
+       <plugin>
+         <groupId>org.apache.maven.plugins</groupId>
+         <artifactId>maven-jar-plugin</artifactId>
+         <configuration>
+           <archive>
+             <manifest>
+               <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
+               <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
+             </manifest>
+           </archive>
+         </configuration>
+       </plugin>
+      <!-- define that we wish to create src jars -->
+      <plugin>
+        <artifactId>maven-source-plugin</artifactId>
+        <inherited>true</inherited>
+         <executions>
+          <execution>
+            <goals>
+              <goal>jar</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>  
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <skip>true</skip>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+  
+  <dependencies>
+    <!-- Global dependencies -->
+	<dependency>
+	  <groupId>jboss</groupId>
+	  <artifactId>jboss-aop</artifactId>
+	  <version>2.0.0.alpha2</version>
+	</dependency>
+    <dependency>
+	  <groupId>jboss</groupId>
+	  <artifactId>jboss-container</artifactId>
+	  <version>2.0.0.Beta</version>
+	</dependency>
+    <dependency>
+	  <groupId>jboss</groupId>
+	  <artifactId>jboss-metatype</artifactId>
+	  <version>2.0.0.Beta</version>
+	</dependency>
+
+	<!-- Test dependencies -->
+	<dependency>
+	  <groupId>jboss</groupId>
+	  <artifactId>jboss-test</artifactId>
+	  <version>1.0.1.GA</version>
+	  <scope>test</scope>
+	</dependency>
+    <dependency>
+	  <groupId>junit</groupId>
+	  <artifactId>junit</artifactId>
+	  <version>3.8.1</version>
+	  <scope>test</scope>
+	</dependency>
+   </dependencies>
+  
+  
+</project>
+

Added: projects/microcontainer/trunk/metatype/pom.xml
===================================================================
--- projects/microcontainer/trunk/metatype/pom.xml	                        (rev 0)
+++ projects/microcontainer/trunk/metatype/pom.xml	2007-01-18 18:04:03 UTC (rev 59791)
@@ -0,0 +1,121 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>jboss</groupId>
+  <artifactId>jboss-metatype</artifactId>
+  <packaging>jar</packaging>
+  <version>2.0.0.Beta</version>
+  <name>JBoss Microcontainer Metatype</name>
+  <url>http://www.jboss.org</url>
+  <description>JBoss Microcontainer Metatype</description>
+  <licenses>
+   <license>
+      <name>lgpl</name>
+      <url>http://repository.jboss.com/licenses/lgpl.txt</url>
+   </license>
+  </licenses>
+  <organization>
+    <name>JBoss Inc.</name>
+    <url>http://www.jboss.org</url>
+  </organization>
+ 
+  <repositories>
+    <repository>
+      <id>jboss</id>
+      <name>JBoss Inc. Repository</name>
+      <layout>default</layout>
+      <url>http://repository.jboss.com/maven2/</url>
+      <snapshots>
+        <enabled>true</enabled>
+      </snapshots>
+    </repository>
+  </repositories>
+
+  <pluginRepositories>
+     <pluginRepository>
+        <id>jbosspluginrepo</id>
+        <name>jboss plugin repository</name>
+        <url>http://repository.jboss.com/maven2</url>
+        <layout>default</layout>
+        <snapshots>
+           <enabled>false</enabled>
+           <updatePolicy>never</updatePolicy>
+        </snapshots>
+     </pluginRepository>
+  </pluginRepositories>
+  
+  <build>
+     <sourceDirectory>src/main</sourceDirectory>
+     <testSourceDirectory>src/tests</testSourceDirectory>
+     <finalName>${artifactId}</finalName>
+     <plugins>
+    
+      <!-- define how we want compilation to take place
+           here, we accept most of the defaults but say that we want the
+           optimization flag set, and define the source and target to be 1.5,
+           these setting will be inherited by child projects -->
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <version>2.0</version>
+          <configuration>
+              <optimize>true</optimize>
+              <source>1.5</source>
+              <target>1.5</target>
+          </configuration>
+      </plugin>  
+
+       <plugin>
+         <groupId>org.apache.maven.plugins</groupId>
+         <artifactId>maven-jar-plugin</artifactId>
+         <configuration>
+           <archive>
+             <manifest>
+               <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
+               <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
+             </manifest>
+           </archive>
+         </configuration>
+       </plugin>
+      <!-- define that we wish to create src jars -->
+      <plugin>
+        <artifactId>maven-source-plugin</artifactId>
+        <inherited>true</inherited>
+         <executions>
+          <execution>
+            <goals>
+              <goal>jar</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>     
+    
+    </plugins>
+  </build>
+  <dependencies>
+    <!-- Global dependencies -->
+	
+	<!-- Test dependencies -->
+    <dependency>
+	  <groupId>jboss</groupId>
+	  <artifactId>jboss-common-core</artifactId>
+	  <version>2.0.4.Alpha</version>
+	  <scope>test</scope>
+	</dependency>
+    <dependency>
+	  <groupId>jboss</groupId>
+	  <artifactId>jboss-test</artifactId>
+	  <version>1.0.1.GA</version>
+	  <scope>test</scope>
+	</dependency>
+    <dependency>
+	  <groupId>junit</groupId>
+	  <artifactId>junit</artifactId>
+	  <version>3.8.1</version>
+	  <scope>test</scope>
+	</dependency>
+	
+   </dependencies>
+  
+  
+</project>
+

Added: projects/microcontainer/trunk/osgi-int/pom.xml
===================================================================
--- projects/microcontainer/trunk/osgi-int/pom.xml	                        (rev 0)
+++ projects/microcontainer/trunk/osgi-int/pom.xml	2007-01-18 18:04:03 UTC (rev 59791)
@@ -0,0 +1,143 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>jboss</groupId>
+  <artifactId>jboss-osgi-int</artifactId>
+  <packaging>jar</packaging>
+  <version>2.0.0.Beta</version>
+  <name>JBoss Microcontainer OSGI INT</name>
+  <url>http://www.jboss.org</url>
+  <description>JBoss Microcontainer</description>
+  <licenses>
+   <license>
+      <name>lgpl</name>
+      <url>http://repository.jboss.com/licenses/lgpl.txt</url>
+   </license>
+  </licenses>
+  <organization>
+    <name>JBoss Inc.</name>
+    <url>http://www.jboss.org</url>
+  </organization>
+ 
+  <repositories>
+    <repository>
+      <id>jboss</id>
+      <name>JBoss Inc. Repository</name>
+      <layout>default</layout>
+      <url>http://repository.jboss.com/maven2/</url>
+      <snapshots>
+        <enabled>true</enabled>
+      </snapshots>
+    </repository>
+  </repositories>
+
+  <pluginRepositories>
+     <pluginRepository>
+        <id>jbosspluginrepo</id>
+        <name>jboss plugin repository</name>
+        <url>http://repository.jboss.com/maven2</url>
+        <layout>default</layout>
+        <snapshots>
+           <enabled>false</enabled>
+           <updatePolicy>never</updatePolicy>
+        </snapshots>
+     </pluginRepository>
+  </pluginRepositories>
+  
+  <build>
+     <sourceDirectory>src/main</sourceDirectory>
+     <testSourceDirectory>src/tests</testSourceDirectory>
+     <finalName>${artifactId}</finalName>
+     <plugins>
+    
+      <!-- define how we want compilation to take place
+           here, we accept most of the defaults but say that we want the
+           optimization flag set, and define the source and target to be 1.5,
+           these setting will be inherited by child projects -->
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <version>2.0</version>
+          <configuration>
+              <optimize>true</optimize>
+              <source>1.5</source>
+              <target>1.5</target>
+          </configuration>
+      </plugin>  
+
+      <plugin>
+	    <groupId>org.codehaus.mojo</groupId>
+        <artifactId>javacc-maven-plugin</artifactId>
+        <version>2.1</version>
+		<executions>
+		  <execution>
+		    <phase>generate-sources</phase>
+			<goals>
+			  <goal>javacc</goal>
+			</goals>
+		  </execution>
+		</executions>
+        <configuration>
+            <sourceDirectory>${basedir}/src/main</sourceDirectory>
+			<!--<outputDirectory>${project.build.directory}/generated-sources/javacc/org/jboss/vfs/bundle</outputDirectory>-->
+        </configuration>
+      </plugin>  
+
+       <plugin>
+         <groupId>org.apache.maven.plugins</groupId>
+         <artifactId>maven-jar-plugin</artifactId>
+         <configuration>
+           <archive>
+             <manifest>
+               <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
+               <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
+             </manifest>
+           </archive>
+         </configuration>
+       </plugin>
+      <!-- define that we wish to create src jars -->
+      <plugin>
+        <artifactId>maven-source-plugin</artifactId>
+        <inherited>true</inherited>
+         <executions>
+          <execution>
+            <goals>
+              <goal>jar</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>     
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <skip>false</skip>
+        </configuration>
+      </plugin>
+    
+    </plugins>
+  </build>
+  <dependencies>
+    <!-- Global dependencies -->
+    <dependency>
+	  <groupId>jboss</groupId>
+	  <artifactId>jboss-container</artifactId>
+	  <version>2.0.0.Beta</version>
+	</dependency>
+    <dependency>
+	  <groupId>org.osgi</groupId>
+	  <artifactId>osgi_R4_core</artifactId>
+	  <version>1.0</version>
+	</dependency>
+	
+	<!-- Test dependencies -->
+    <dependency>
+	  <groupId>junit</groupId>
+	  <artifactId>junit</artifactId>
+	  <version>4.1</version>
+	  <scope>test</scope>
+	</dependency>
+
+  </dependencies>
+  
+</project>
+

Added: projects/microcontainer/trunk/spring-int/pom.xml
===================================================================
--- projects/microcontainer/trunk/spring-int/pom.xml	                        (rev 0)
+++ projects/microcontainer/trunk/spring-int/pom.xml	2007-01-18 18:04:03 UTC (rev 59791)
@@ -0,0 +1,133 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>jboss</groupId>
+  <artifactId>jboss-spring-int</artifactId>
+  <packaging>jar</packaging>
+  <version>2.0.0.Beta</version>
+  <name>JBoss Microcontainer Spring Int</name>
+  <url>http://www.jboss.org</url>
+  <description>JBoss Microcontainer Spring Int</description>
+  <licenses>
+   <license>
+      <name>lgpl</name>
+      <url>http://repository.jboss.com/licenses/lgpl.txt</url>
+   </license>
+  </licenses>
+  <organization>
+    <name>JBoss Inc.</name>
+    <url>http://www.jboss.org</url>
+  </organization>
+ 
+  <repositories>
+    <repository>
+      <id>jboss</id>
+      <name>JBoss Inc. Repository</name>
+      <layout>default</layout>
+      <url>http://repository.jboss.com/maven2/</url>
+      <snapshots>
+        <enabled>true</enabled>
+      </snapshots>
+    </repository>
+  </repositories>
+
+  <pluginRepositories>
+     <pluginRepository>
+        <id>jbosspluginrepo</id>
+        <name>jboss plugin repository</name>
+        <url>http://repository.jboss.com/maven2</url>
+        <layout>default</layout>
+        <snapshots>
+           <enabled>false</enabled>
+           <updatePolicy>never</updatePolicy>
+        </snapshots>
+     </pluginRepository>
+  </pluginRepositories>
+  
+  <build>
+     <sourceDirectory>src/main</sourceDirectory>
+     <testSourceDirectory>src/tests</testSourceDirectory>
+     <finalName>${artifactId}</finalName>
+     <plugins>
+    
+      <!-- define how we want compilation to take place
+           here, we accept most of the defaults but say that we want the
+           optimization flag set, and define the source and target to be 1.5,
+           these setting will be inherited by child projects -->
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <version>2.0</version>
+          <configuration>
+              <optimize>true</optimize>
+              <source>1.5</source>
+              <target>1.5</target>
+          </configuration>
+      </plugin>  
+
+       <plugin>
+         <groupId>org.apache.maven.plugins</groupId>
+         <artifactId>maven-jar-plugin</artifactId>
+         <configuration>
+           <archive>
+             <manifest>
+               <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
+               <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
+             </manifest>
+           </archive>
+         </configuration>
+       </plugin>
+      <!-- define that we wish to create src jars -->
+      <plugin>
+        <artifactId>maven-source-plugin</artifactId>
+        <inherited>true</inherited>
+         <executions>
+          <execution>
+            <goals>
+              <goal>jar</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+      
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <skip>true</skip>
+        </configuration>
+      </plugin>
+        
+    </plugins>
+  </build>
+  <dependencies>
+    <!-- Global dependencies -->
+    <dependency>
+	  <groupId>jboss</groupId>
+	  <artifactId>jbossxb</artifactId>
+	  <version>1.0.0.CR8</version>
+	</dependency>
+    <dependency>
+	  <groupId>jboss</groupId>
+	  <artifactId>jboss-kernel</artifactId>
+	  <version>2.0.0.Beta</version>
+	</dependency>
+	
+	<!-- Test dependencies -->
+	<dependency>
+	  <groupId>jboss</groupId>
+	  <artifactId>jboss-test</artifactId>
+	  <version>1.0.1.GA</version>
+	  <scope>test</scope>
+	</dependency>
+    <dependency>
+      <groupId>jboss</groupId>
+      <artifactId>jboss-kernel</artifactId>
+      <version>2.0.0.Beta</version>
+      <type>test-jar</type>
+      <scope>test</scope>
+    </dependency>
+
+   </dependencies>
+  
+</project>
+




More information about the jboss-cvs-commits mailing list