[jboss-cvs] Repository SVN: r29538 - in maven2/org/gatein/wci: wci-parent and 1 other directories.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Mon Oct 12 11:01:31 EDT 2009


Author: thomas.heute at jboss.com
Date: 2009-10-12 11:01:31 -0400 (Mon, 12 Oct 2009)
New Revision: 29538

Added:
   maven2/org/gatein/wci/wci-parent/
   maven2/org/gatein/wci/wci-parent/2.0.0-Beta02/
   maven2/org/gatein/wci/wci-parent/2.0.0-Beta02/wci-parent-2.0.0-Beta02.pom
Log:
Wagon: Adding pom.xml to repository

Added: maven2/org/gatein/wci/wci-parent/2.0.0-Beta02/wci-parent-2.0.0-Beta02.pom
===================================================================
--- maven2/org/gatein/wci/wci-parent/2.0.0-Beta02/wci-parent-2.0.0-Beta02.pom	                        (rev 0)
+++ maven2/org/gatein/wci/wci-parent/2.0.0-Beta02/wci-parent-2.0.0-Beta02.pom	2009-10-12 15:01:31 UTC (rev 29538)
@@ -0,0 +1,200 @@
+<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>
+  
+  <name>GateIn - Web Container Integration component</name>
+  
+  <groupId>org.gatein.wci</groupId>
+  <artifactId>wci-parent</artifactId>
+  <version>2.0.0-Beta02</version>
+  <packaging>pom</packaging>
+  
+  <parent>
+    <groupId>org.gatein</groupId>
+    <artifactId>gatein-parent</artifactId>
+    <version>1.0.0-Beta02</version>
+  </parent>
+  
+  <scm>
+    <connection>scm:svn:http://anonsvn.jboss.org/repos/gatein/components/wci/tags/2.0.0-Beta02</connection>
+    <developerConnection>scm:svn:https://svn.jboss.org/repos/gatein/components/wci/tags/2.0.0-Beta02</developerConnection>
+    <url>http://fisheye.jboss.org/browse/gatein/components/wci/tags/2.0.0-Beta02</url>
+  </scm>
+  
+  <properties>
+    <version.gatein.common>2.0.0-Beta03</version.gatein.common>
+    
+    <version.junit>3.8.2-brew</version.junit>
+    <version.jaxb>2.1</version.jaxb>
+    <version.jetty>6.1.7</version.jetty>
+    <version.jaxen>1.0-FCS</version.jaxen>
+    <version.saxpath>1.0-FCS</version.saxpath>
+    
+    <version.apache.commons-logging>1.1.0.jboss</version.apache.commons-logging> 
+
+    <!-- used in test module by maven-antrun-extended-plugin -->
+    <version.jboss.unit>1.2.3</version.jboss.unit>
+    <version.cargo>1.0.1-alpha-1</version.cargo>
+
+  </properties>
+  
+  <dependencyManagement>
+    <dependencies>
+      <!-- Import dependency management configuration -->
+      <dependency>
+        <groupId>org.gatein</groupId>
+        <artifactId>gatein-dep</artifactId>
+        <version>1.0.0-Beta01</version>
+        <type>pom</type>
+        <scope>import</scope>
+      </dependency>
+      
+      <!-- Internal dependencies -->
+      <dependency>
+        <groupId>org.gatein.common</groupId>
+        <artifactId>common-common</artifactId>
+        <version>${version.gatein.common}</version>
+      </dependency>
+      <dependency>
+        <groupId>org.gatein.common</groupId>
+        <artifactId>common-mc</artifactId>
+        <version>${version.gatein.common}</version>
+      </dependency>
+      
+      <dependency>
+        <groupId>org.gatein.wci</groupId>
+        <artifactId>wci-wci</artifactId>
+        <version>${project.version}</version>
+     </dependency>
+     <dependency>
+       <groupId>org.gatein.wci</groupId>
+       <artifactId>wci-tomcat</artifactId>
+       <version>${project.version}</version>
+      </dependency>
+
+      <!-- External dependencies -->
+      <dependency>
+        <artifactId>junit</artifactId>
+        <groupId>junit</groupId>
+        <version>${version.junit}</version>
+      </dependency>
+      <dependency>
+        <groupId>org.mortbay.jetty</groupId>
+        <artifactId>jetty</artifactId>
+        <version>${version.jetty}</version>
+      </dependency>
+      
+      <dependency>
+        <groupId>commons-logging</groupId>
+        <artifactId>commons-logging</artifactId>
+        <version>${version.apache.commons-logging}</version>
+      </dependency>
+      <dependency>
+        <groupId>jaxen</groupId>
+        <artifactId>jaxen</artifactId>
+        <version>${version.jaxen}</version>
+      </dependency>
+      <dependency>
+        <groupId>saxpath</groupId>
+        <artifactId>saxpath</artifactId>
+        <version>${version.saxpath}</version>
+      </dependency>
+      <dependency>
+        <groupId>javax.xml.bind</groupId>
+        <artifactId>jaxb-api</artifactId>
+        <version>${version.jaxb}</version>
+      </dependency>
+    </dependencies>
+  </dependencyManagement>
+  
+  <modules>
+    <module>wci</module>
+    <module>exo</module>
+    <module>tomcat</module>
+    <module>jetty</module>
+    <module>test</module>
+  </modules>
+  
+  <repositories>
+    <repository>
+      <id>repository.jboss.org</id>
+      <name>JBoss Repository</name>
+      <layout>default</layout>
+      <url>http://repository.jboss.org/maven2/</url>
+      <snapshots>
+        <enabled>false</enabled>
+      </snapshots>
+    </repository>
+    <repository>
+      <id>snapshots.jboss.org</id>
+      <name>JBoss Snapshots Repository</name>
+      <layout>default</layout>
+      <url>http://snapshots.jboss.org/maven2/</url>
+      <snapshots>
+        <enabled>true</enabled>
+      </snapshots>
+      <releases>
+        <enabled>false</enabled>
+      </releases>
+    </repository>
+    <repository>
+      <id>codehaus snapshot repository</id>
+      <url>http://snapshots.repository.codehaus.org/</url>
+      <releases>
+        <enabled>true</enabled>
+      </releases>
+      <snapshots>
+        <enabled>true</enabled>
+      </snapshots>
+    </repository>
+  </repositories>
+  
+  <build>
+    <plugins>
+      
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-jar-plugin</artifactId>
+        <configuration>
+          <archive>
+            <manifest>
+              <addClasspath>false</addClasspath>
+            </manifest>
+          </archive>
+        </configuration>
+      </plugin>
+      
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-source-plugin</artifactId>
+        <!-- directory src/main/java is missing so there are no sources-->
+        <inherited>false</inherited>
+      </plugin>
+      
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-plugin</artifactId>
+      </plugin>
+      
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-report-plugin</artifactId>
+        <version>${version.surefire.plugin}</version>
+        <configuration>
+          <!--<outputDirectory>/data/reports</outputDirectory>-->
+          <aggregate>true</aggregate>
+        </configuration>
+        <executions>
+          <execution>
+            <phase>test</phase>
+            <goals>
+              <goal>report-only</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+      
+    </plugins>
+  </build>
+  
+</project>




More information about the jboss-cvs-commits mailing list