You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by jg...@apache.org on 2011/09/28 01:32:40 UTC

svn commit: r1176658 - in /openejb/trunk/sandbox/arquillian-tomee: arquillian-tomee-embedded-using-war/velocity.log common/ common/pom.xml pom.xml tests/ tests/pom.xml

Author: jgallimore
Date: Tue Sep 27 23:32:39 2011
New Revision: 1176658

URL: http://svn.apache.org/viewvc?rev=1176658&view=rev
Log:
OPENEJB-1687 copying some POMs to create a module for common code, and another for the tests

Added:
    openejb/trunk/sandbox/arquillian-tomee/common/
    openejb/trunk/sandbox/arquillian-tomee/common/pom.xml
    openejb/trunk/sandbox/arquillian-tomee/tests/
    openejb/trunk/sandbox/arquillian-tomee/tests/pom.xml
Removed:
    openejb/trunk/sandbox/arquillian-tomee/arquillian-tomee-embedded-using-war/velocity.log
Modified:
    openejb/trunk/sandbox/arquillian-tomee/pom.xml

Added: openejb/trunk/sandbox/arquillian-tomee/common/pom.xml
URL: http://svn.apache.org/viewvc/openejb/trunk/sandbox/arquillian-tomee/common/pom.xml?rev=1176658&view=auto
==============================================================================
--- openejb/trunk/sandbox/arquillian-tomee/common/pom.xml (added)
+++ openejb/trunk/sandbox/arquillian-tomee/common/pom.xml Tue Sep 27 23:32:39 2011
@@ -0,0 +1,186 @@
+<?xml version="1.0"?>
+<!--
+
+    Licensed to the Apache Software Foundation (ASF) under one or more
+    contributor license agreements.  See the NOTICE file distributed with
+    this work for additional information regarding copyright ownership.
+    The ASF licenses this file to You under the Apache License, Version 2.0
+    (the "License"); you may not use this file except in compliance with
+    the License.  You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License.
+-->
+<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/xsd/maven-4.0.0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <artifactId>arquillian-tomee</artifactId>
+    <groupId>org.apache.openejb</groupId>
+    <version>1.0-SNAPSHOT</version>
+  </parent>
+  <groupId>org.apache.openejb</groupId>
+  <artifactId>arquillian-tomee-common</artifactId>
+  <version>1.0-SNAPSHOT</version>
+  <packaging>jar</packaging>
+
+  <name>TomEE Arquillian Adaptor :: Common</name>
+  <url>http://maven.apache.org</url>
+
+  <properties>
+      <version.org.apache.tomcat>7.0.21</version.org.apache.tomcat>
+      <version.cdi-api>1.0</version.cdi-api>
+      <version.arquillian>1.0.0.Alpha5</version.arquillian>
+   </properties>
+   
+   <repositories>
+     <repository>
+       <id>apache-m2-snapshot</id>
+       <name>Apache Snapshot Repository</name>
+       <url>http://repository.apache.org/snapshots</url>
+     </repository>
+     <repository>
+      <id>jboss-public</id>
+      <name>JBoss public repo</name>
+      <url>https://repository.jboss.org/nexus/content/groups/public</url>
+     </repository>
+   </repositories>
+  
+   <dependencies>
+
+      <dependency>
+         <groupId>org.apache.openejb</groupId>
+         <artifactId>tomee-embedded</artifactId>
+         <version>4.0.0-SNAPSHOT</version>
+      </dependency>
+
+      <dependency>
+         <groupId>org.jboss.arquillian</groupId>
+         <artifactId>arquillian-spi</artifactId>
+         <version>${version.arquillian}</version>
+      </dependency>
+
+      <dependency>
+        <groupId>org.jboss.arquillian.protocol</groupId>
+        <artifactId>arquillian-protocol-servlet</artifactId>
+        <version>${version.arquillian}</version>
+      </dependency>
+
+      <dependency>
+         <groupId>org.jboss.arquillian.testenricher</groupId>
+         <artifactId>arquillian-testenricher-cdi</artifactId>
+         <version>${version.arquillian}</version>
+      </dependency>
+
+      <dependency>
+         <groupId>org.jboss.arquillian.testenricher</groupId>
+         <artifactId>arquillian-testenricher-resource</artifactId>
+         <version>${version.arquillian}</version>
+      </dependency>
+
+      <dependency>
+         <groupId>org.jboss.arquillian.testenricher</groupId>
+         <artifactId>arquillian-testenricher-ejb</artifactId>
+         <version>${version.arquillian}</version>
+      </dependency>
+    
+      <dependency>
+         <groupId>org.apache.tomcat</groupId>
+         <artifactId>tomcat-catalina</artifactId>
+         <version>${version.org.apache.tomcat}</version>
+      </dependency>
+
+      <dependency>
+         <groupId>org.apache.tomcat</groupId>
+         <artifactId>tomcat-coyote</artifactId>
+         <version>${version.org.apache.tomcat}</version>
+      </dependency>
+
+      <dependency>
+         <groupId>org.apache.tomcat</groupId>
+         <artifactId>tomcat-jasper</artifactId>
+         <version>${version.org.apache.tomcat}</version>
+         <exclusions>
+         	<exclusion>
+         		<groupId>org.eclipse.jdt.core.compiler</groupId>
+         		<artifactId>ecj</artifactId>
+         	</exclusion>
+         </exclusions>
+      </dependency>
+
+      <dependency>
+        <groupId>org.jboss.arquillian</groupId>
+        <artifactId>arquillian-junit</artifactId>
+        <version>${version.arquillian}</version>
+        <scope>test</scope>
+      </dependency>
+
+      <dependency>
+      	<groupId>javax.enterprise</groupId>
+      	<artifactId>cdi-api</artifactId>
+      	<version>${version.cdi-api}</version>
+      	<scope>test</scope>
+      </dependency>
+      
+      <dependency>
+         <groupId>junit</groupId>
+         <artifactId>junit</artifactId>
+         <version>4.8.1</version>
+         <scope>test</scope>
+      </dependency>
+      
+      <dependency>
+      	<groupId>org.eclipse.jdt.core.compiler</groupId>
+      	<artifactId>ecj</artifactId>
+      	<version>3.5.1</version>
+      	<type>jar</type>
+      	<scope>compile</scope>
+      </dependency>
+      <dependency>
+      	<groupId>org.apache.openejb</groupId>
+      	<artifactId>javaee-api</artifactId>
+      	<version>6.0-1</version>
+      	<type>jar</type>
+      </dependency>
+      <dependency>
+      	<groupId>org.apache.velocity</groupId>
+      	<artifactId>velocity</artifactId>
+      	<version>1.6.4</version>
+      	<type>jar</type>
+      	<scope>compile</scope>
+      </dependency>
+      <dependency>
+      	<groupId>org.apache.geronimo.specs</groupId>
+      	<artifactId>geronimo-j2ee-deployment_1.1_spec</artifactId>
+      	<version>1.1</version>
+      	<type>jar</type>
+      	<scope>compile</scope>
+      </dependency>
+      <dependency>
+      	<groupId>org.apache.openejb</groupId>
+      	<artifactId>openejb-client</artifactId>
+      	<version>4.0.0-SNAPSHOT</version>
+      	<type>jar</type>
+      </dependency>
+      <dependency>
+      	<groupId>org.apache.openejb</groupId>
+      	<artifactId>openejb-tomcat-catalina</artifactId>
+      	<version>4.0.0-SNAPSHOT</version>
+      	<type>jar</type>
+      	<scope>compile</scope>
+      </dependency>
+      <dependency>
+      	<groupId>org.apache.openejb</groupId>
+      	<artifactId>openejb-core</artifactId>
+      	<version>4.0.0-SNAPSHOT</version>
+      	<type>jar</type>
+      	<scope>compile</scope>
+      </dependency>
+   </dependencies>
+   
+</project>

Modified: openejb/trunk/sandbox/arquillian-tomee/pom.xml
URL: http://svn.apache.org/viewvc/openejb/trunk/sandbox/arquillian-tomee/pom.xml?rev=1176658&r1=1176657&r2=1176658&view=diff
==============================================================================
--- openejb/trunk/sandbox/arquillian-tomee/pom.xml (original)
+++ openejb/trunk/sandbox/arquillian-tomee/pom.xml Tue Sep 27 23:32:39 2011
@@ -51,11 +51,13 @@
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
   </properties>
   <modules>
+    <module>common</module>
     <module>arquillian-tomee-embedded</module>
     <module>arquillian-tomee-embedded-using-war</module>
     <module>arquillian-tomee-remote</module>
     <module>arquillian-tomee-remote-with-zip</module>
     <module>moviefun-example</module>
+    <module>tests</module>
   </modules>
 
   <build>

Added: openejb/trunk/sandbox/arquillian-tomee/tests/pom.xml
URL: http://svn.apache.org/viewvc/openejb/trunk/sandbox/arquillian-tomee/tests/pom.xml?rev=1176658&view=auto
==============================================================================
--- openejb/trunk/sandbox/arquillian-tomee/tests/pom.xml (added)
+++ openejb/trunk/sandbox/arquillian-tomee/tests/pom.xml Tue Sep 27 23:32:39 2011
@@ -0,0 +1,186 @@
+<?xml version="1.0"?>
+<!--
+
+    Licensed to the Apache Software Foundation (ASF) under one or more
+    contributor license agreements.  See the NOTICE file distributed with
+    this work for additional information regarding copyright ownership.
+    The ASF licenses this file to You under the Apache License, Version 2.0
+    (the "License"); you may not use this file except in compliance with
+    the License.  You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License.
+-->
+<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/xsd/maven-4.0.0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <artifactId>arquillian-tomee</artifactId>
+    <groupId>org.apache.openejb</groupId>
+    <version>1.0-SNAPSHOT</version>
+  </parent>
+  <groupId>org.apache.openejb</groupId>
+  <artifactId>arquillian-tomee-tests</artifactId>
+  <version>1.0-SNAPSHOT</version>
+  <packaging>jar</packaging>
+
+  <name>TomEE Arquillian Adaptor :: Tests</name>
+  <url>http://maven.apache.org</url>
+
+  <properties>
+      <version.org.apache.tomcat>7.0.21</version.org.apache.tomcat>
+      <version.cdi-api>1.0</version.cdi-api>
+      <version.arquillian>1.0.0.Alpha5</version.arquillian>
+   </properties>
+   
+   <repositories>
+     <repository>
+       <id>apache-m2-snapshot</id>
+       <name>Apache Snapshot Repository</name>
+       <url>http://repository.apache.org/snapshots</url>
+     </repository>
+     <repository>
+      <id>jboss-public</id>
+      <name>JBoss public repo</name>
+      <url>https://repository.jboss.org/nexus/content/groups/public</url>
+     </repository>
+   </repositories>
+  
+   <dependencies>
+
+      <dependency>
+         <groupId>org.apache.openejb</groupId>
+         <artifactId>tomee-embedded</artifactId>
+         <version>4.0.0-SNAPSHOT</version>
+      </dependency>
+
+      <dependency>
+         <groupId>org.jboss.arquillian</groupId>
+         <artifactId>arquillian-spi</artifactId>
+         <version>${version.arquillian}</version>
+      </dependency>
+
+      <dependency>
+        <groupId>org.jboss.arquillian.protocol</groupId>
+        <artifactId>arquillian-protocol-servlet</artifactId>
+        <version>${version.arquillian}</version>
+      </dependency>
+
+      <dependency>
+         <groupId>org.jboss.arquillian.testenricher</groupId>
+         <artifactId>arquillian-testenricher-cdi</artifactId>
+         <version>${version.arquillian}</version>
+      </dependency>
+
+      <dependency>
+         <groupId>org.jboss.arquillian.testenricher</groupId>
+         <artifactId>arquillian-testenricher-resource</artifactId>
+         <version>${version.arquillian}</version>
+      </dependency>
+
+      <dependency>
+         <groupId>org.jboss.arquillian.testenricher</groupId>
+         <artifactId>arquillian-testenricher-ejb</artifactId>
+         <version>${version.arquillian}</version>
+      </dependency>
+    
+      <dependency>
+         <groupId>org.apache.tomcat</groupId>
+         <artifactId>tomcat-catalina</artifactId>
+         <version>${version.org.apache.tomcat}</version>
+      </dependency>
+
+      <dependency>
+         <groupId>org.apache.tomcat</groupId>
+         <artifactId>tomcat-coyote</artifactId>
+         <version>${version.org.apache.tomcat}</version>
+      </dependency>
+
+      <dependency>
+         <groupId>org.apache.tomcat</groupId>
+         <artifactId>tomcat-jasper</artifactId>
+         <version>${version.org.apache.tomcat}</version>
+         <exclusions>
+         	<exclusion>
+         		<groupId>org.eclipse.jdt.core.compiler</groupId>
+         		<artifactId>ecj</artifactId>
+         	</exclusion>
+         </exclusions>
+      </dependency>
+
+      <dependency>
+        <groupId>org.jboss.arquillian</groupId>
+        <artifactId>arquillian-junit</artifactId>
+        <version>${version.arquillian}</version>
+        <scope>test</scope>
+      </dependency>
+
+      <dependency>
+      	<groupId>javax.enterprise</groupId>
+      	<artifactId>cdi-api</artifactId>
+      	<version>${version.cdi-api}</version>
+      	<scope>test</scope>
+      </dependency>
+      
+      <dependency>
+         <groupId>junit</groupId>
+         <artifactId>junit</artifactId>
+         <version>4.8.1</version>
+         <scope>test</scope>
+      </dependency>
+      
+      <dependency>
+      	<groupId>org.eclipse.jdt.core.compiler</groupId>
+      	<artifactId>ecj</artifactId>
+      	<version>3.5.1</version>
+      	<type>jar</type>
+      	<scope>compile</scope>
+      </dependency>
+      <dependency>
+      	<groupId>org.apache.openejb</groupId>
+      	<artifactId>javaee-api</artifactId>
+      	<version>6.0-1</version>
+      	<type>jar</type>
+      </dependency>
+      <dependency>
+      	<groupId>org.apache.velocity</groupId>
+      	<artifactId>velocity</artifactId>
+      	<version>1.6.4</version>
+      	<type>jar</type>
+      	<scope>compile</scope>
+      </dependency>
+      <dependency>
+      	<groupId>org.apache.geronimo.specs</groupId>
+      	<artifactId>geronimo-j2ee-deployment_1.1_spec</artifactId>
+      	<version>1.1</version>
+      	<type>jar</type>
+      	<scope>compile</scope>
+      </dependency>
+      <dependency>
+      	<groupId>org.apache.openejb</groupId>
+      	<artifactId>openejb-client</artifactId>
+      	<version>4.0.0-SNAPSHOT</version>
+      	<type>jar</type>
+      </dependency>
+      <dependency>
+      	<groupId>org.apache.openejb</groupId>
+      	<artifactId>openejb-tomcat-catalina</artifactId>
+      	<version>4.0.0-SNAPSHOT</version>
+      	<type>jar</type>
+      	<scope>compile</scope>
+      </dependency>
+      <dependency>
+      	<groupId>org.apache.openejb</groupId>
+      	<artifactId>openejb-core</artifactId>
+      	<version>4.0.0-SNAPSHOT</version>
+      	<type>jar</type>
+      	<scope>compile</scope>
+      </dependency>
+   </dependencies>
+   
+</project>