[jboss-svn-commits] JBoss Common SVN: r4115 - in arquillian/trunk/demo: domain and 2 other directories.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Mon Mar 8 04:20:15 EST 2010


Author: aslak
Date: 2010-03-08 04:20:15 -0500 (Mon, 08 Mar 2010)
New Revision: 4115

Added:
   arquillian/trunk/demo/domain/pom.xml
   arquillian/trunk/demo/pom.xml
Modified:
   arquillian/trunk/demo/junit/pom.xml
   arquillian/trunk/demo/testng/pom.xml
Log:
ARQ-44 Fixed poms


Added: arquillian/trunk/demo/domain/pom.xml
===================================================================
--- arquillian/trunk/demo/domain/pom.xml	                        (rev 0)
+++ arquillian/trunk/demo/domain/pom.xml	2010-03-08 09:20:15 UTC (rev 4115)
@@ -0,0 +1,68 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<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 -->
+   <parent>
+      <groupId>org.jboss.arquillian</groupId>
+      <artifactId>arquillian-build</artifactId>
+      <version>1.0.0-SNAPSHOT</version>
+      <relativePath>../../build/pom.xml</relativePath>
+   </parent>
+
+   <!-- Model Version -->
+   <modelVersion>4.0.0</modelVersion>
+
+   <!-- Artifact Configuration -->
+   <groupId>org.jboss.arquillian.example</groupId>
+   <artifactId>arquillian-example-domain</artifactId>
+   <name>Arquillian Example Domain</name>
+   <description>Domain for the Arquillian examples</description>
+
+   <!-- Properties -->
+   <properties>
+
+      <!-- Versioning -->
+
+   </properties>
+
+   <build>
+      <plugins>
+         <!-- Surefire -->
+         <plugin>
+            <artifactId>maven-surefire-plugin</artifactId>
+            <configuration>
+               <!-- ARQ-60 -->
+               <skip>true</skip>
+            </configuration>
+         </plugin>
+      </plugins>
+   </build>
+
+   <profiles>
+      <profile>
+         <!--
+            Added a default profile used during compiling. The JavaEE
+            API jar can not be on classpath during test execution.
+         -->
+         <id>default</id>
+         <activation>
+            <activeByDefault>true</activeByDefault>
+         </activation>
+         <dependencies>
+            <dependency>
+               <groupId>javax</groupId>
+               <artifactId>javaee-api</artifactId>
+               <scope>provided</scope>
+            </dependency>
+         </dependencies>
+      </profile>
+   </profiles>
+
+   <!-- Dependencies -->
+   <dependencies>
+
+
+   </dependencies>
+
+</project>

Modified: arquillian/trunk/demo/junit/pom.xml
===================================================================
--- arquillian/trunk/demo/junit/pom.xml	2010-03-08 08:41:53 UTC (rev 4114)
+++ arquillian/trunk/demo/junit/pom.xml	2010-03-08 09:20:15 UTC (rev 4115)
@@ -7,17 +7,17 @@
       <groupId>org.jboss.arquillian</groupId>
       <artifactId>arquillian-build</artifactId>
       <version>1.0.0-SNAPSHOT</version>
-      <relativePath>../build/pom.xml</relativePath>
+      <relativePath>../../build/pom.xml</relativePath>
    </parent>
 
    <!-- Model Version -->
    <modelVersion>4.0.0</modelVersion>
 
    <!-- Artifact Configuration -->
-   <artifactId>arquillian-demo</artifactId>
-   <name>Arquillian Demo</name>
-   <description>Demo of Arquillian Usage</description>
-
+   <groupId>org.jboss.arquillian.example</groupId>
+   <artifactId>arquillian-example-junit</artifactId>
+   <name>Arquillian Example JUnit</name>
+   <description>JUnit example of Arquillian Usage</description> 
    <!-- Properties -->
    <properties>
 
@@ -128,6 +128,12 @@
       </dependency>
 
       <dependency>
+         <groupId>org.jboss.arquillian.example</groupId>
+         <artifactId>arquillian-example-domain</artifactId>
+         <version>${project.version}</version>
+      </dependency>
+
+      <dependency>
          <groupId>junit</groupId>
          <artifactId>junit</artifactId>
          <scope>test</scope>

Added: arquillian/trunk/demo/pom.xml
===================================================================
--- arquillian/trunk/demo/pom.xml	                        (rev 0)
+++ arquillian/trunk/demo/pom.xml	2010-03-08 09:20:15 UTC (rev 4115)
@@ -0,0 +1,35 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  vi:ts=2:sw=2:expandtab:
+-->
+<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 -->
+  <parent>
+    <groupId>org.jboss.arquillian</groupId>
+    <artifactId>arquillian-parent</artifactId>
+    <version>1.0.0-SNAPSHOT</version>
+  </parent>
+
+  <!-- Model Information -->
+  <modelVersion>4.0.0</modelVersion>
+
+  <!-- Artifact Information  -->
+  <groupId>org.jboss.arquillian.example</groupId>
+  <artifactId>arquillian-example-parent</artifactId>
+  <packaging>pom</packaging>
+  <name>Arguillian Example Aggregator</name>
+  <url>http://www.jboss.org</url>
+  <description>Arguillian Example Aggregator</description>
+
+  <!-- Aggregate Modules -->
+  <modules>
+
+    <module>domain</module>
+    <module>junit</module>
+    <module>testng</module>
+
+  </modules>
+
+</project>

Modified: arquillian/trunk/demo/testng/pom.xml
===================================================================
--- arquillian/trunk/demo/testng/pom.xml	2010-03-08 08:41:53 UTC (rev 4114)
+++ arquillian/trunk/demo/testng/pom.xml	2010-03-08 09:20:15 UTC (rev 4115)
@@ -7,16 +7,17 @@
       <groupId>org.jboss.arquillian</groupId>
       <artifactId>arquillian-build</artifactId>
       <version>1.0.0-SNAPSHOT</version>
-      <relativePath>../build/pom.xml</relativePath>
+      <relativePath>../../build/pom.xml</relativePath>
    </parent>
 
    <!-- Model Version -->
    <modelVersion>4.0.0</modelVersion>
 
    <!-- Artifact Configuration -->
-   <artifactId>arquillian-demo-testng</artifactId>
-   <name>Arquillian Demo TestNG</name>
-   <description>TestNG Demo of Arquillian Usage</description>
+   <groupId>org.jboss.arquillian.example</groupId>
+   <artifactId>arquillian-example-testng</artifactId>
+   <name>Arquillian Example TestNG</name>
+   <description>TestNG example of Arquillian Usage</description>
 
    <!-- Properties -->
    <properties>
@@ -139,6 +140,12 @@
       </dependency>
 
       <dependency>
+         <groupId>org.jboss.arquillian.example</groupId>
+         <artifactId>arquillian-example-domain</artifactId>
+         <version>${project.version}</version>
+      </dependency>
+
+      <dependency>
          <groupId>org.testng</groupId>
          <artifactId>testng</artifactId>
          <classifier>jdk15</classifier>



More information about the jboss-svn-commits mailing list