Author: struberg
Date: Sun Sep 30 11:04:36 2012
New Revision: 1391991
URL: http://svn.apache.org/viewvc?rev=1391991&view=rev
Log:
OWB-710 initial module structure for owb-arquillian
Added:
openwebbeans/trunk/webbeans-arquillian/ (with props)
openwebbeans/trunk/webbeans-arquillian/owb-arquillian-standalone/ (with
props)
openwebbeans/trunk/webbeans-arquillian/owb-arquillian-standalone/pom.xml
(with props)
openwebbeans/trunk/webbeans-arquillian/pom.xml (with props)
Modified:
openwebbeans/trunk/pom.xml
Modified: openwebbeans/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/openwebbeans/trunk/pom.xml?rev=1391991&r1=1391990&r2=1391991&view=diff
==============================================================================
--- openwebbeans/trunk/pom.xml (original)
+++ openwebbeans/trunk/pom.xml Sun Sep 30 11:04:36 2012
@@ -465,6 +465,7 @@
<module>webbeans-osgi</module>
<module>webbeans-porting</module>
<module>webbeans-test</module>
+ <module>webbeans-arquillian</module>
<module>samples</module>
<module>webbeans-tck</module>
<module>distribution</module>
Propchange: openwebbeans/trunk/webbeans-arquillian/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Sun Sep 30 11:04:36 2012
@@ -0,0 +1,10 @@
+target
+.metadata
+.classpath
+.project
+.settings
+*.iml
+*.ipr
+*.iws
+.git
+.gitignore
Propchange: openwebbeans/trunk/webbeans-arquillian/owb-arquillian-standalone/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Sun Sep 30 11:04:36 2012
@@ -0,0 +1,10 @@
+target
+.metadata
+.classpath
+.project
+.settings
+*.iml
+*.ipr
+*.iws
+.git
+.gitignore
Added: openwebbeans/trunk/webbeans-arquillian/owb-arquillian-standalone/pom.xml
URL:
http://svn.apache.org/viewvc/openwebbeans/trunk/webbeans-arquillian/owb-arquillian-standalone/pom.xml?rev=1391991&view=auto
==============================================================================
--- openwebbeans/trunk/webbeans-arquillian/owb-arquillian-standalone/pom.xml
(added)
+++ openwebbeans/trunk/webbeans-arquillian/owb-arquillian-standalone/pom.xml
Sun Sep 30 11:04:36 2012
@@ -0,0 +1,57 @@
+<?xml version="1.0" encoding="UTF-8"?>
+ <!--
+ 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/maven-v4_0_0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.apache.openwebbeans.arquillian</groupId>
+ <artifactId>parent</artifactId>
+ <version>1.1.7-SNAPSHOT</version>
+ </parent>
+ <artifactId>owb-arquillian-standalone</artifactId>
+ <packaging>jar</packaging>
+
+ <name>OpenWebBeans-Standalone Arquillian connector</name>
+ <description>
+ Arquillian container for Apache OpenWebBeans standalone.
+ This is intended for running in unit tests.
+ </description>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.geronimo.specs</groupId>
+ <artifactId>geronimo-jcdi_1.0_spec</artifactId>
+ <optional>true</optional>
+ </dependency>
+
+ <dependency>
+ <groupId>org.apache.geronimo.specs</groupId>
+ <artifactId>geronimo-atinject_1.0_spec</artifactId>
+ <optional>true</optional>
+ </dependency>
+
+ <dependency>
+ <groupId>org.apache.geronimo.specs</groupId>
+ <artifactId>geronimo-interceptor_1.1_spec</artifactId>
+ <optional>true</optional>
+ </dependency>
+ </dependencies>
+
+</project>
Propchange:
openwebbeans/trunk/webbeans-arquillian/owb-arquillian-standalone/pom.xml
------------------------------------------------------------------------------
svn:eol-style = native
Added: openwebbeans/trunk/webbeans-arquillian/pom.xml
URL:
http://svn.apache.org/viewvc/openwebbeans/trunk/webbeans-arquillian/pom.xml?rev=1391991&view=auto
==============================================================================
--- openwebbeans/trunk/webbeans-arquillian/pom.xml (added)
+++ openwebbeans/trunk/webbeans-arquillian/pom.xml Sun Sep 30 11:04:36 2012
@@ -0,0 +1,34 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ 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/maven-v4_0_0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.apache.openwebbeans</groupId>
+ <artifactId>openwebbeans</artifactId>
+ <version>1.1.7-SNAPSHOT</version>
+ </parent>
+ <groupId>org.apache.openwebbeans.arquillian</groupId>
+ <artifactId>parent</artifactId>
+ <packaging>pom</packaging>
+ <name>OWB Arquillian Parent</name>
+ <modules>
+ <module>owb-arquillian-standalone</module>
+ </modules>
+</project>
Propchange: openwebbeans/trunk/webbeans-arquillian/pom.xml
------------------------------------------------------------------------------
svn:eol-style = native