[jboss-cvs] JBossAS SVN: r93991 - projects/microcontainer/branches/gatein_mc_pico.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Sep 24 10:05:41 EDT 2009


Author: mstruk
Date: 2009-09-24 10:05:40 -0400 (Thu, 24 Sep 2009)
New Revision: 93991

Added:
   projects/microcontainer/branches/gatein_mc_pico/pom.xml
Log:
Initial commit

Added: projects/microcontainer/branches/gatein_mc_pico/pom.xml
===================================================================
--- projects/microcontainer/branches/gatein_mc_pico/pom.xml	                        (rev 0)
+++ projects/microcontainer/branches/gatein_mc_pico/pom.xml	2009-09-24 14:05:40 UTC (rev 93991)
@@ -0,0 +1,58 @@
+
+<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>org.exoplatform.kernel</groupId>
+   <artifactId>picocontainer-mc</artifactId>
+   <version>1.2-SNAPSHOT</version>
+
+   <name>Picocontainer</name>
+   <description>DI container</description>
+
+    <build>
+        <plugins>
+         <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-compiler-plugin</artifactId>
+          <version>2.0.2</version>
+          <configuration>
+            <source>1.5</source>
+            <target>1.5</target>
+            <showDeprecation>true</showDeprecation>
+            <showWarnings>true</showWarnings>
+            <optimize>false</optimize>
+          </configuration>
+         </plugin>
+        </plugins>
+    </build>
+
+   <dependencies>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.2</version>  
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.jboss.kernel</groupId>
+      <artifactId>jboss-kernel</artifactId>
+      <version>2.2.0-SNAPSHOT</version>
+    </dependency>
+
+    <dependency>
+      <groupId>org.jboss.kernel</groupId>
+      <artifactId>jboss-dependency</artifactId>
+      <version>2.2.0-SNAPSHOT</version>
+    </dependency>
+
+    <dependency>
+      <groupId>org.jboss</groupId>
+      <artifactId>jboss-mdr</artifactId>
+      <version>2.0.2.GA</version>
+    </dependency>
+       
+   </dependencies>
+
+</project>




More information about the jboss-cvs-commits mailing list