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

webbeans-commits at lists.jboss.org webbeans-commits at lists.jboss.org
Fri Aug 8 07:22:43 EDT 2008


Author: pete.muir at jboss.org
Date: 2008-08-08 07:22:43 -0400 (Fri, 08 Aug 2008)
New Revision: 73

Added:
   ri/trunk/examples/webbeans-pizzashack/.classpath
   ri/trunk/examples/webbeans-pizzashack/.project
   ri/trunk/examples/webbeans-pizzashack/src/main/resources/
   ri/trunk/examples/webbeans-pizzashack/src/main/webapp/
   ri/trunk/examples/webbeans-pizzashack/target/
Removed:
   ri/trunk/examples/webbeans-pizzashack/resources/
   ri/trunk/examples/webbeans-pizzashack/view/
Modified:
   ri/trunk/examples/webbeans-pizzashack/pom.xml
Log:
Make stuff follow maven conventions

Added: ri/trunk/examples/webbeans-pizzashack/.classpath
===================================================================
--- ri/trunk/examples/webbeans-pizzashack/.classpath	                        (rev 0)
+++ ri/trunk/examples/webbeans-pizzashack/.classpath	2008-08-08 11:22:43 UTC (rev 73)
@@ -0,0 +1,6 @@
+<classpath>
+  <classpathentry kind="src" path="src/main/java"/>
+  <classpathentry kind="output" path="target/classes"/>
+  <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
+  <classpathentry kind="var" path="M2_REPO/junit/junit/4.4/junit-4.4.jar"/>
+</classpath>
\ No newline at end of file


Property changes on: ri/trunk/examples/webbeans-pizzashack/.classpath
___________________________________________________________________
Name: svn:mime-type
   + text/plain

Added: ri/trunk/examples/webbeans-pizzashack/.project
===================================================================
--- ri/trunk/examples/webbeans-pizzashack/.project	                        (rev 0)
+++ ri/trunk/examples/webbeans-pizzashack/.project	2008-08-08 11:22:43 UTC (rev 73)
@@ -0,0 +1,13 @@
+<projectDescription>
+  <name>webbeans-pizzashack</name>
+  <comment>Examples for the reference implementation of JSR 299: Web Beans</comment>
+  <projects/>
+  <buildSpec>
+    <buildCommand>
+      <name>org.eclipse.jdt.core.javabuilder</name>
+    </buildCommand>
+  </buildSpec>
+  <natures>
+    <nature>org.eclipse.jdt.core.javanature</nature>
+  </natures>
+</projectDescription>
\ No newline at end of file


Property changes on: ri/trunk/examples/webbeans-pizzashack/.project
___________________________________________________________________
Name: svn:mime-type
   + text/plain

Modified: ri/trunk/examples/webbeans-pizzashack/pom.xml
===================================================================
--- ri/trunk/examples/webbeans-pizzashack/pom.xml	2008-08-08 11:19:01 UTC (rev 72)
+++ ri/trunk/examples/webbeans-pizzashack/pom.xml	2008-08-08 11:22:43 UTC (rev 73)
@@ -3,14 +3,18 @@
    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.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>
+   <description>Web Beans Examples: Pizzashack</description>
+   
    <dependencies>
       <dependency>
          <groupId>junit</groupId>
@@ -18,8 +22,10 @@
          <scope>test</scope>
       </dependency>
    </dependencies>
+   
    <build>
       <finalName>webbeans-pizzashack</finalName>
    </build>
+   
 </project>
 

Copied: ri/trunk/examples/webbeans-pizzashack/src/main/resources (from rev 71, ri/trunk/examples/webbeans-pizzashack/resources)

Copied: ri/trunk/examples/webbeans-pizzashack/src/main/webapp (from rev 71, ri/trunk/examples/webbeans-pizzashack/view)




More information about the weld-commits mailing list