[webbeans-commits] Webbeans SVN: r70 - in ri/trunk/examples: pizzashack and 1 other directory.

webbeans-commits at lists.jboss.org webbeans-commits at lists.jboss.org
Fri Aug 8 07:13:24 EDT 2008


Author: pete.muir at jboss.org
Date: 2008-08-08 07:13:23 -0400 (Fri, 08 Aug 2008)
New Revision: 70

Added:
   ri/trunk/examples/pizzashack/pom.xml
   ri/trunk/examples/pom.xml
Log:
add poms

Added: ri/trunk/examples/pizzashack/pom.xml
===================================================================
--- ri/trunk/examples/pizzashack/pom.xml	                        (rev 0)
+++ ri/trunk/examples/pizzashack/pom.xml	2008-08-08 11:13:23 UTC (rev 70)
@@ -0,0 +1,22 @@
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.jboss.webbeans.examples</groupId>
+    <artifactId>parent</artifactId>
+    <version>1.0.0-SNAPSHOT</version>
+  </parent>
+  <groupId>org.jboss.webbeans.examples.pizzashack</groupId>
+  <artifactId>webbeans-pizzashack</artifactId>
+  <packaging>war</packaging>
+  <dependencies>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+  <build>
+    <finalName>webbeans-pizzashack</finalName>
+  </build>
+</project>
+

Added: ri/trunk/examples/pom.xml
===================================================================
--- ri/trunk/examples/pom.xml	                        (rev 0)
+++ ri/trunk/examples/pom.xml	2008-08-08 11:13:23 UTC (rev 70)
@@ -0,0 +1,25 @@
+<?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">
+   <modelVersion>4.0.0</modelVersion>
+   <parent>
+      <groupId>org.jboss.webbeans</groupId>
+      <artifactId>parent</artifactId>
+      <version>1.0.0-SNAPSHOT</version>
+   </parent>
+   <groupId>org.jboss.webbeans.examples</groupId>
+   <artifactId>parent</artifactId>
+   <packaging>pom</packaging>
+   <name>Web Beans Examples</name>
+
+   <description>
+      Examples for the reference implementation of JSR 299: Web Beans
+   </description>
+
+   <modules>
+      <module>webbeans-pizzashack</module>
+   </modules>
+
+</project>
+




More information about the weld-commits mailing list