[jboss-maven2-commits] Repository SVN: r31428 - in maven2/org/gatein/wci: wci-test-server-parent and 1 other directories.

jboss-maven2-commits at lists.jboss.org jboss-maven2-commits at lists.jboss.org
Mon Nov 23 16:01:08 EST 2009


Author: thomas.heute at jboss.com
Date: 2009-11-23 16:01:07 -0500 (Mon, 23 Nov 2009)
New Revision: 31428

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

Added: maven2/org/gatein/wci/wci-test-server-parent/2.0.0-CR01/wci-test-server-parent-2.0.0-CR01.pom
===================================================================
--- maven2/org/gatein/wci/wci-test-server-parent/2.0.0-CR01/wci-test-server-parent-2.0.0-CR01.pom	                        (rev 0)
+++ maven2/org/gatein/wci/wci-test-server-parent/2.0.0-CR01/wci-test-server-parent-2.0.0-CR01.pom	2009-11-23 21:01:07 UTC (rev 31428)
@@ -0,0 +1,114 @@
+<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">
+   <parent>
+      <groupId>org.gatein.wci</groupId>
+      <artifactId>wci-test-parent</artifactId>
+      <version>2.0.0-CR01</version>
+   </parent>
+   <modelVersion>4.0.0</modelVersion>
+   <artifactId>wci-test-server-parent</artifactId>
+   <packaging>pom</packaging>
+   <name>GateIn - WCI test server parent</name>
+
+   <properties>
+      <test.common.xml>${project.build.directory}/common/common.xml</test.common.xml>
+   </properties>
+ 
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>build-helper-maven-plugin</artifactId>
+        <version>1.4</version>
+        <inherited>false</inherited>
+        <executions>
+          <execution>
+            <id>attach-artifacts</id>
+            <phase>generate-resources</phase>
+            <configuration>
+             <artifacts>
+              <artifact>
+                <file>src/common/resources/common.xml</file>
+                <type>xml</type>
+              </artifact>
+             </artifacts>
+            </configuration>
+            <goals>
+              <goal>attach-artifact</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+      <plugin>
+        <artifactId>maven-dependency-plugin</artifactId>
+        <configuration>
+          <artifactItems>
+            <artifactItem>
+              <groupId>org.gatein.wci</groupId>
+              <artifactId>wci-test-server-parent</artifactId>
+              <version>${project.version}</version>
+              <type>xml</type>
+              <outputDirectory>${project.build.directory}/common</outputDirectory>
+              <destFileName>common.xml</destFileName>
+            </artifactItem>
+          </artifactItems>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+
+  <profiles>
+    <profile>
+      <id>default-servers</id>
+      <activation>
+        <activeByDefault>true</activeByDefault>
+      </activation>
+      <modules>
+        <module>tomcat6</module>
+        <module>jboss42</module>
+        <module>jboss51</module>
+      </modules>
+    </profile>
+    <profile>
+      <id>all-servers</id>
+      <modules>
+        <module>tomcat6</module>
+        <module>jboss42</module>
+        <module>jboss51</module>
+        <module>jetty6</module>
+      </modules>
+    </profile>
+    <profile>
+      <id>tomcat</id>
+      <modules>
+        <module>tomcat6</module>
+      </modules>
+    </profile>
+    <profile>
+      <id>jboss42</id>
+      <modules>
+        <module>jboss42</module>
+      </modules>
+    </profile>
+    <profile>
+      <id>jboss51</id>
+      <modules>
+        <module>jboss51</module>
+      </modules>
+    </profile>
+    <profile>
+      <id>jboss</id>
+      <modules>
+        <module>jboss42</module>
+        <module>jboss51</module>
+      </modules>
+    </profile>
+    <profile>
+      <id>jetty</id>
+      <modules>
+        <module>jetty6</module>
+      </modules>
+    </profile>
+
+  </profiles>
+ 
+</project>



More information about the jboss-maven2-commits mailing list