You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwebbeans.apache.org by ge...@apache.org on 2010/03/08 20:13:50 UTC

svn commit: r920461 - in /openwebbeans/trunk/webbeans-ee: ./ pom.xml

Author: gerdogdu
Date: Mon Mar  8 19:13:50 2010
New Revision: 920461

URL: http://svn.apache.org/viewvc?rev=920461&view=rev
Log:
add missing pom

Added:
    openwebbeans/trunk/webbeans-ee/pom.xml   (with props)
Modified:
    openwebbeans/trunk/webbeans-ee/   (props changed)

Propchange: openwebbeans/trunk/webbeans-ee/
------------------------------------------------------------------------------
--- svn:ignore (original)
+++ svn:ignore Mon Mar  8 19:13:50 2010
@@ -2,4 +2,3 @@
 target
 .classpath
 .project
-pom.xml

Added: openwebbeans/trunk/webbeans-ee/pom.xml
URL: http://svn.apache.org/viewvc/openwebbeans/trunk/webbeans-ee/pom.xml?rev=920461&view=auto
==============================================================================
--- openwebbeans/trunk/webbeans-ee/pom.xml (added)
+++ openwebbeans/trunk/webbeans-ee/pom.xml Mon Mar  8 19:13:50 2010
@@ -0,0 +1,81 @@
+<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">
+<!--
+
+    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.
+-->
+
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <groupId>org.apache.openwebbeans</groupId>
+        <artifactId>openwebbeans</artifactId>
+        <version>1.0.0-SNAPSHOT</version>
+    </parent>
+
+    <artifactId>openwebbeans-ee</artifactId>
+    <name>Apache OpenWebBeans :: Java EE Full Integration</name>
+    <packaging>jar</packaging>
+    <description>OpenWebBeans Java EE Full Integration</description>
+
+    <dependencies>
+
+        <dependency>
+            <groupId>org.apache.myfaces.core</groupId>
+            <artifactId>myfaces-api</artifactId>
+            <optional>true</optional>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.geronimo.specs</groupId>
+            <artifactId>geronimo-el_2.2_spec</artifactId>
+            <optional>true</optional>
+        </dependency>
+
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.geronimo.specs</groupId>
+            <artifactId>geronimo-servlet_2.5_spec</artifactId>
+            <optional>true</optional>
+        </dependency>
+        <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-jta_1.1_spec</artifactId>
+        	<optional>true</optional>
+        </dependency>
+        <dependency>
+        	<groupId>org.apache.geronimo.specs</groupId>
+        	<artifactId>geronimo-validation_1.0_spec</artifactId>
+        	<optional>true</optional>
+        </dependency>
+        <dependency>
+        	<groupId>org.apache.openwebbeans</groupId>
+        	<artifactId>openwebbeans-impl</artifactId>
+        </dependency>
+        <dependency>
+        	<groupId>org.apache.openwebbeans</groupId>
+        	<artifactId>openwebbeans-ee-common</artifactId>
+        	<version>${project.version}</version>
+        </dependency>
+      
+    </dependencies>
+</project>

Propchange: openwebbeans/trunk/webbeans-ee/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native