[webbeans-commits] Webbeans SVN: r2593 - in examples/tags: 1.0.0.PREVIEW1 and 13 other directories.

webbeans-commits at lists.jboss.org webbeans-commits at lists.jboss.org
Mon Apr 20 08:37:45 EDT 2009


Author: pete.muir at jboss.org
Date: 2009-04-20 08:37:45 -0400 (Mon, 20 Apr 2009)
New Revision: 2593

Added:
   examples/tags/1.0.0.PREVIEW1/
   examples/tags/1.0.0.PREVIEW1/conversations/pom.xml
   examples/tags/1.0.0.PREVIEW1/jsf2/pom.xml
   examples/tags/1.0.0.PREVIEW1/login/pom.xml
   examples/tags/1.0.0.PREVIEW1/numberguess/pom.xml
   examples/tags/1.0.0.PREVIEW1/pom.xml
   examples/tags/1.0.0.PREVIEW1/se/hello-world/pom.xml
   examples/tags/1.0.0.PREVIEW1/se/numberguess/pom.xml
   examples/tags/1.0.0.PREVIEW1/tomcat/pom.xml
   examples/tags/1.0.0.PREVIEW1/translator/pom.xml
   examples/tags/1.0.0.PREVIEW1/translator/webbeans-translator-ear/pom.xml
   examples/tags/1.0.0.PREVIEW1/translator/webbeans-translator-ejb/pom.xml
   examples/tags/1.0.0.PREVIEW1/translator/webbeans-translator-war/pom.xml
   examples/tags/1.0.0.PREVIEW1/wicket/conversations/pom.xml
   examples/tags/1.0.0.PREVIEW1/wicket/numberguess/pom.xml
Removed:
   examples/tags/1.0.0.PREVIEW1/conversations/pom.xml
   examples/tags/1.0.0.PREVIEW1/jsf2/pom.xml
   examples/tags/1.0.0.PREVIEW1/login/pom.xml
   examples/tags/1.0.0.PREVIEW1/numberguess/pom.xml
   examples/tags/1.0.0.PREVIEW1/pom.xml
   examples/tags/1.0.0.PREVIEW1/se/hello-world/pom.xml
   examples/tags/1.0.0.PREVIEW1/se/numberguess/pom.xml
   examples/tags/1.0.0.PREVIEW1/tomcat/pom.xml
   examples/tags/1.0.0.PREVIEW1/translator/pom.xml
   examples/tags/1.0.0.PREVIEW1/translator/webbeans-translator-ear/pom.xml
   examples/tags/1.0.0.PREVIEW1/translator/webbeans-translator-ejb/pom.xml
   examples/tags/1.0.0.PREVIEW1/translator/webbeans-translator-war/pom.xml
   examples/tags/1.0.0.PREVIEW1/wicket/conversations/pom.xml
   examples/tags/1.0.0.PREVIEW1/wicket/numberguess/pom.xml
Log:
[maven-release-plugin]  copy for tag 1.0.0.PREVIEW1

Copied: examples/tags/1.0.0.PREVIEW1 (from rev 2589, examples/trunk)

Deleted: examples/tags/1.0.0.PREVIEW1/conversations/pom.xml
===================================================================
--- examples/trunk/conversations/pom.xml	2009-04-20 12:24:10 UTC (rev 2589)
+++ examples/tags/1.0.0.PREVIEW1/conversations/pom.xml	2009-04-20 12:37:45 UTC (rev 2593)
@@ -1,97 +0,0 @@
-<?xml version="1.0"?>
-<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.examples</groupId>
-      <artifactId>parent</artifactId>
-      <version>1.0.0-SNAPSHOT</version>
-   </parent>
-   
-   <groupId>org.jboss.webbeans.examples</groupId>
-   <artifactId>webbeans-conversations</artifactId>
-   <packaging>war</packaging>
-   <name>Web Beans Examples: Conversations</name>
-   
-   <pluginRepositories>
-        <pluginRepository>
-            <id>codehaus snapshot repository</id>
-            <url>http://snapshots.repository.codehaus.org/</url>
-            <releases>
-                <enabled>true</enabled>
-            </releases>
-        </pluginRepository>
-    </pluginRepositories>
-   
-   <dependencies>
-      <dependency>
-         <groupId>org.testng</groupId>
-         <artifactId>testng</artifactId>
-         <scope>test</scope>
-         <classifier>jdk15</classifier>
-      </dependency>
-      
-      <dependency>
-         <groupId>org.jboss.webbeans</groupId>
-         <artifactId>jsr299-api</artifactId>
-         <scope>provided</scope>
-      </dependency>
-
-      <dependency>
-         <groupId>org.jboss.webbeans</groupId>
-         <artifactId>webbeans-api</artifactId>
-         <scope>provided</scope>
-      </dependency>
-      
-      <dependency>
-         <groupId>org.jboss.webbeans</groupId>
-         <artifactId>webbeans-logging</artifactId>
-         <scope>provided</scope>
-      </dependency>
-      
-      <dependency>
-         <groupId>javax.faces</groupId>
-         <artifactId>jsf-api</artifactId>
-         <scope>provided</scope>
-      </dependency>
-      
-      <dependency>
-        <groupId>com.sun.facelets</groupId>
-        <artifactId>jsf-facelets</artifactId>
-      </dependency>
-      
-      <!-- <dependency>
-         <groupId>org.jboss.el</groupId>
-         <artifactId>jboss-el</artifactId>
-         <exclusions>
-            <exclusion>
-               <groupId>javax.el</groupId>
-               <artifactId>el-api</artifactId>
-            </exclusion>
-         </exclusions>
-      </dependency>-->
-      
-      <dependency>
-         <groupId>javax.el</groupId>
-         <artifactId>el-ri</artifactId>
-         <exclusions>
-            <exclusion>
-               <groupId>javax.el</groupId>
-               <artifactId>el-api</artifactId>
-            </exclusion>
-         </exclusions>
-      </dependency>
-      
-      <dependency>
-      	<groupId>javax.annotation</groupId>
-      	<artifactId>jsr250-api</artifactId>
-      </dependency>
-      
-   </dependencies>
-   
-   <build>
-      <finalName>webbeans-conversations</finalName>
-   </build>
-   
-</project>
-

Copied: examples/tags/1.0.0.PREVIEW1/conversations/pom.xml (from rev 2592, examples/trunk/conversations/pom.xml)
===================================================================
--- examples/tags/1.0.0.PREVIEW1/conversations/pom.xml	                        (rev 0)
+++ examples/tags/1.0.0.PREVIEW1/conversations/pom.xml	2009-04-20 12:37:45 UTC (rev 2593)
@@ -0,0 +1,97 @@
+<?xml version="1.0"?>
+<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.examples</groupId>
+      <artifactId>parent</artifactId>
+      <version>1.0.0.PREVIEW1</version>
+   </parent>
+   
+   <groupId>org.jboss.webbeans.examples</groupId>
+   <artifactId>webbeans-conversations</artifactId>
+   <packaging>war</packaging>
+   <name>Web Beans Examples: Conversations</name>
+   
+   <pluginRepositories>
+        <pluginRepository>
+            <id>codehaus snapshot repository</id>
+            <url>http://snapshots.repository.codehaus.org/</url>
+            <releases>
+                <enabled>true</enabled>
+            </releases>
+        </pluginRepository>
+    </pluginRepositories>
+   
+   <dependencies>
+      <dependency>
+         <groupId>org.testng</groupId>
+         <artifactId>testng</artifactId>
+         <scope>test</scope>
+         <classifier>jdk15</classifier>
+      </dependency>
+      
+      <dependency>
+         <groupId>org.jboss.webbeans</groupId>
+         <artifactId>jsr299-api</artifactId>
+         <scope>provided</scope>
+      </dependency>
+
+      <dependency>
+         <groupId>org.jboss.webbeans</groupId>
+         <artifactId>webbeans-api</artifactId>
+         <scope>provided</scope>
+      </dependency>
+      
+      <dependency>
+         <groupId>org.jboss.webbeans</groupId>
+         <artifactId>webbeans-logging</artifactId>
+         <scope>provided</scope>
+      </dependency>
+      
+      <dependency>
+         <groupId>javax.faces</groupId>
+         <artifactId>jsf-api</artifactId>
+         <scope>provided</scope>
+      </dependency>
+      
+      <dependency>
+        <groupId>com.sun.facelets</groupId>
+        <artifactId>jsf-facelets</artifactId>
+      </dependency>
+      
+      <!-- <dependency>
+         <groupId>org.jboss.el</groupId>
+         <artifactId>jboss-el</artifactId>
+         <exclusions>
+            <exclusion>
+               <groupId>javax.el</groupId>
+               <artifactId>el-api</artifactId>
+            </exclusion>
+         </exclusions>
+      </dependency>-->
+      
+      <dependency>
+         <groupId>javax.el</groupId>
+         <artifactId>el-ri</artifactId>
+         <exclusions>
+            <exclusion>
+               <groupId>javax.el</groupId>
+               <artifactId>el-api</artifactId>
+            </exclusion>
+         </exclusions>
+      </dependency>
+      
+      <dependency>
+      	<groupId>javax.annotation</groupId>
+      	<artifactId>jsr250-api</artifactId>
+      </dependency>
+      
+   </dependencies>
+   
+   <build>
+      <finalName>webbeans-conversations</finalName>
+   </build>
+   
+</project>
+

Deleted: examples/tags/1.0.0.PREVIEW1/jsf2/pom.xml
===================================================================
--- examples/trunk/jsf2/pom.xml	2009-04-20 12:24:10 UTC (rev 2589)
+++ examples/tags/1.0.0.PREVIEW1/jsf2/pom.xml	2009-04-20 12:37:45 UTC (rev 2593)
@@ -1,71 +0,0 @@
-<?xml version="1.0"?>
-<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.examples</groupId>
-      <artifactId>parent</artifactId>
-      <version>1.0.0-SNAPSHOT</version>
-   </parent>
-   
-   <groupId>org.jboss.webbeans.examples</groupId>
-   <artifactId>webbeans-numberguess-jsf2</artifactId>
-   <packaging>war</packaging>
-   <name>Web Beans Examples: Numberguess for JSF2</name>
-   
-   <pluginRepositories>
-        <pluginRepository>
-            <id>codehaus snapshot repository</id>
-            <url>http://snapshots.repository.codehaus.org/</url>
-            <releases>
-                <enabled>true</enabled>
-            </releases>
-        </pluginRepository>
-    </pluginRepositories>
-   
-   <dependencies>
-      <dependency>
-         <groupId>org.testng</groupId>
-         <artifactId>testng</artifactId>
-         <scope>test</scope>
-         <classifier>jdk15</classifier>
-      </dependency>
-      
-      <dependency>
-         <groupId>org.jboss.webbeans</groupId>
-         <artifactId>jsr299-api</artifactId>
-         <scope>provided</scope>
-      </dependency>
-      
-      <dependency>
-         <groupId>javax.faces</groupId>
-         <artifactId>jsf-api</artifactId>
-         <scope>provided</scope>
-      </dependency>
-      
-<!--      <dependency>-->
-<!--         <groupId>javax.el</groupId>-->
-<!--         <artifactId>el-ri</artifactId>-->
-<!--         <exclusions>-->
-<!--            <exclusion>-->
-<!--               <groupId>javax.el</groupId>-->
-<!--               <artifactId>el-api</artifactId>-->
-<!--            </exclusion>-->
-<!--         </exclusions>-->
-<!--         <scope>runtime</scope>-->
-<!--      </dependency>-->
-      
-      <dependency>
-      	<groupId>javax.annotation</groupId>
-      	<artifactId>jsr250-api</artifactId>
-         <scope>provided</scope>
-      </dependency>
-      
-   </dependencies>
-   
-   <build>
-      <finalName>webbeans-numberguess-jsf2</finalName>
-   </build>
-   
-</project>
-

Copied: examples/tags/1.0.0.PREVIEW1/jsf2/pom.xml (from rev 2592, examples/trunk/jsf2/pom.xml)
===================================================================
--- examples/tags/1.0.0.PREVIEW1/jsf2/pom.xml	                        (rev 0)
+++ examples/tags/1.0.0.PREVIEW1/jsf2/pom.xml	2009-04-20 12:37:45 UTC (rev 2593)
@@ -0,0 +1,71 @@
+<?xml version="1.0"?>
+<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.examples</groupId>
+      <artifactId>parent</artifactId>
+      <version>1.0.0.PREVIEW1</version>
+   </parent>
+   
+   <groupId>org.jboss.webbeans.examples</groupId>
+   <artifactId>webbeans-numberguess-jsf2</artifactId>
+   <packaging>war</packaging>
+   <name>Web Beans Examples: Numberguess for JSF2</name>
+   
+   <pluginRepositories>
+        <pluginRepository>
+            <id>codehaus snapshot repository</id>
+            <url>http://snapshots.repository.codehaus.org/</url>
+            <releases>
+                <enabled>true</enabled>
+            </releases>
+        </pluginRepository>
+    </pluginRepositories>
+   
+   <dependencies>
+      <dependency>
+         <groupId>org.testng</groupId>
+         <artifactId>testng</artifactId>
+         <scope>test</scope>
+         <classifier>jdk15</classifier>
+      </dependency>
+      
+      <dependency>
+         <groupId>org.jboss.webbeans</groupId>
+         <artifactId>jsr299-api</artifactId>
+         <scope>provided</scope>
+      </dependency>
+      
+      <dependency>
+         <groupId>javax.faces</groupId>
+         <artifactId>jsf-api</artifactId>
+         <scope>provided</scope>
+      </dependency>
+      
+<!--      <dependency>-->
+<!--         <groupId>javax.el</groupId>-->
+<!--         <artifactId>el-ri</artifactId>-->
+<!--         <exclusions>-->
+<!--            <exclusion>-->
+<!--               <groupId>javax.el</groupId>-->
+<!--               <artifactId>el-api</artifactId>-->
+<!--            </exclusion>-->
+<!--         </exclusions>-->
+<!--         <scope>runtime</scope>-->
+<!--      </dependency>-->
+      
+      <dependency>
+      	<groupId>javax.annotation</groupId>
+      	<artifactId>jsr250-api</artifactId>
+         <scope>provided</scope>
+      </dependency>
+      
+   </dependencies>
+   
+   <build>
+      <finalName>webbeans-numberguess-jsf2</finalName>
+   </build>
+   
+</project>
+

Deleted: examples/tags/1.0.0.PREVIEW1/login/pom.xml
===================================================================
--- examples/trunk/login/pom.xml	2009-04-20 12:24:10 UTC (rev 2589)
+++ examples/tags/1.0.0.PREVIEW1/login/pom.xml	2009-04-20 12:37:45 UTC (rev 2593)
@@ -1,80 +0,0 @@
-<?xml version="1.0"?>
-<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.examples</groupId>
-      <artifactId>parent</artifactId>
-      <version>1.0.0-SNAPSHOT</version>
-   </parent>
-   
-   <groupId>org.jboss.webbeans.examples</groupId>
-   <artifactId>webbeans-login</artifactId>
-   <packaging>war</packaging>
-   <name>Web Beans Examples: Login</name>
-   
-   <pluginRepositories>
-        <pluginRepository>
-            <id>codehaus snapshot repository</id>
-            <url>http://snapshots.repository.codehaus.org/</url>
-            <releases>
-                <enabled>true</enabled>
-            </releases>
-        </pluginRepository>
-    </pluginRepositories>
-   
-   <dependencies>
-      <dependency>
-         <groupId>org.testng</groupId>
-         <artifactId>testng</artifactId>
-         <scope>test</scope>
-         <classifier>jdk15</classifier>
-      </dependency>
-      
-      <dependency>
-         <groupId>org.jboss.webbeans</groupId>
-         <artifactId>jsr299-api</artifactId>
-         <scope>provided</scope>
-      </dependency>
-      
-      <dependency>
-         <groupId>javax.faces</groupId>
-         <artifactId>jsf-api</artifactId>
-         <scope>provided</scope>
-      </dependency>
-      
-      <dependency>
-        <groupId>com.sun.facelets</groupId>
-        <artifactId>jsf-facelets</artifactId>
-      </dependency>
-      
-      <!-- <dependency>
-         <groupId>org.jboss.el</groupId>
-         <artifactId>jboss-el</artifactId>
-         <exclusions>
-            <exclusion>
-               <groupId>javax.el</groupId>
-               <artifactId>el-api</artifactId>
-            </exclusion>
-         </exclusions>
-      </dependency>-->
-      
-      <dependency>
-         <groupId>javax.el</groupId>
-         <artifactId>el-ri</artifactId>
-         <exclusions>
-            <exclusion>
-               <groupId>javax.el</groupId>
-               <artifactId>el-api</artifactId>
-            </exclusion>
-         </exclusions>
-      </dependency>
-      
-   </dependencies>
-   
-   <build>
-      <finalName>webbeans-login</finalName>
-   </build>
-   
-</project>
-

Copied: examples/tags/1.0.0.PREVIEW1/login/pom.xml (from rev 2592, examples/trunk/login/pom.xml)
===================================================================
--- examples/tags/1.0.0.PREVIEW1/login/pom.xml	                        (rev 0)
+++ examples/tags/1.0.0.PREVIEW1/login/pom.xml	2009-04-20 12:37:45 UTC (rev 2593)
@@ -0,0 +1,80 @@
+<?xml version="1.0"?>
+<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.examples</groupId>
+      <artifactId>parent</artifactId>
+      <version>1.0.0.PREVIEW1</version>
+   </parent>
+   
+   <groupId>org.jboss.webbeans.examples</groupId>
+   <artifactId>webbeans-login</artifactId>
+   <packaging>war</packaging>
+   <name>Web Beans Examples: Login</name>
+   
+   <pluginRepositories>
+        <pluginRepository>
+            <id>codehaus snapshot repository</id>
+            <url>http://snapshots.repository.codehaus.org/</url>
+            <releases>
+                <enabled>true</enabled>
+            </releases>
+        </pluginRepository>
+    </pluginRepositories>
+   
+   <dependencies>
+      <dependency>
+         <groupId>org.testng</groupId>
+         <artifactId>testng</artifactId>
+         <scope>test</scope>
+         <classifier>jdk15</classifier>
+      </dependency>
+      
+      <dependency>
+         <groupId>org.jboss.webbeans</groupId>
+         <artifactId>jsr299-api</artifactId>
+         <scope>provided</scope>
+      </dependency>
+      
+      <dependency>
+         <groupId>javax.faces</groupId>
+         <artifactId>jsf-api</artifactId>
+         <scope>provided</scope>
+      </dependency>
+      
+      <dependency>
+        <groupId>com.sun.facelets</groupId>
+        <artifactId>jsf-facelets</artifactId>
+      </dependency>
+      
+      <!-- <dependency>
+         <groupId>org.jboss.el</groupId>
+         <artifactId>jboss-el</artifactId>
+         <exclusions>
+            <exclusion>
+               <groupId>javax.el</groupId>
+               <artifactId>el-api</artifactId>
+            </exclusion>
+         </exclusions>
+      </dependency>-->
+      
+      <dependency>
+         <groupId>javax.el</groupId>
+         <artifactId>el-ri</artifactId>
+         <exclusions>
+            <exclusion>
+               <groupId>javax.el</groupId>
+               <artifactId>el-api</artifactId>
+            </exclusion>
+         </exclusions>
+      </dependency>
+      
+   </dependencies>
+   
+   <build>
+      <finalName>webbeans-login</finalName>
+   </build>
+   
+</project>
+

Deleted: examples/tags/1.0.0.PREVIEW1/numberguess/pom.xml
===================================================================
--- examples/trunk/numberguess/pom.xml	2009-04-20 12:24:10 UTC (rev 2589)
+++ examples/tags/1.0.0.PREVIEW1/numberguess/pom.xml	2009-04-20 12:37:45 UTC (rev 2593)
@@ -1,86 +0,0 @@
-<?xml version="1.0"?>
-<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.examples</groupId>
-      <artifactId>parent</artifactId>
-      <version>1.0.0-SNAPSHOT</version>
-   </parent>
-   
-   <groupId>org.jboss.webbeans.examples</groupId>
-   <artifactId>webbeans-numberguess</artifactId>
-   <packaging>war</packaging>
-   <name>Web Beans Examples: Numberguess</name>
-   
-   <pluginRepositories>
-        <pluginRepository>
-            <id>codehaus snapshot repository</id>
-            <url>http://snapshots.repository.codehaus.org/</url>
-            <releases>
-                <enabled>true</enabled>
-            </releases>
-        </pluginRepository>
-    </pluginRepositories>
-   
-   <dependencies>
-      <dependency>
-         <groupId>org.testng</groupId>
-         <artifactId>testng</artifactId>
-         <scope>test</scope>
-         <classifier>jdk15</classifier>
-      </dependency>
-      
-      <dependency>
-         <groupId>org.jboss.webbeans</groupId>
-         <artifactId>jsr299-api</artifactId>
-         <scope>provided</scope>
-      </dependency>
-      
-      <dependency>
-         <groupId>javax.faces</groupId>
-         <artifactId>jsf-api</artifactId>
-         <scope>provided</scope>
-      </dependency>
-      
-      <dependency>
-        <groupId>com.sun.facelets</groupId>
-        <artifactId>jsf-facelets</artifactId>
-        <scope>runtime</scope>
-      </dependency>
-      
-      <!-- <dependency>
-         <groupId>org.jboss.el</groupId>
-         <artifactId>jboss-el</artifactId>
-         <exclusions>
-            <exclusion>
-               <groupId>javax.el</groupId>
-               <artifactId>el-api</artifactId>
-            </exclusion>
-         </exclusions>
-      </dependency>-->
-      
-      <dependency>
-         <groupId>javax.el</groupId>
-         <artifactId>el-ri</artifactId>
-         <exclusions>
-            <exclusion>
-               <groupId>javax.el</groupId>
-               <artifactId>el-api</artifactId>
-            </exclusion>
-         </exclusions>
-      </dependency>
-      <dependency>
-      	<groupId>javax.annotation</groupId>
-      	<artifactId>jsr250-api</artifactId>
-         <scope>provided</scope>
-      </dependency>
-      
-   </dependencies>
-   
-   <build>
-      <finalName>webbeans-numberguess</finalName>
-   </build>
-   
-</project>
-

Copied: examples/tags/1.0.0.PREVIEW1/numberguess/pom.xml (from rev 2592, examples/trunk/numberguess/pom.xml)
===================================================================
--- examples/tags/1.0.0.PREVIEW1/numberguess/pom.xml	                        (rev 0)
+++ examples/tags/1.0.0.PREVIEW1/numberguess/pom.xml	2009-04-20 12:37:45 UTC (rev 2593)
@@ -0,0 +1,86 @@
+<?xml version="1.0"?>
+<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.examples</groupId>
+      <artifactId>parent</artifactId>
+      <version>1.0.0.PREVIEW1</version>
+   </parent>
+   
+   <groupId>org.jboss.webbeans.examples</groupId>
+   <artifactId>webbeans-numberguess</artifactId>
+   <packaging>war</packaging>
+   <name>Web Beans Examples: Numberguess</name>
+   
+   <pluginRepositories>
+        <pluginRepository>
+            <id>codehaus snapshot repository</id>
+            <url>http://snapshots.repository.codehaus.org/</url>
+            <releases>
+                <enabled>true</enabled>
+            </releases>
+        </pluginRepository>
+    </pluginRepositories>
+   
+   <dependencies>
+      <dependency>
+         <groupId>org.testng</groupId>
+         <artifactId>testng</artifactId>
+         <scope>test</scope>
+         <classifier>jdk15</classifier>
+      </dependency>
+      
+      <dependency>
+         <groupId>org.jboss.webbeans</groupId>
+         <artifactId>jsr299-api</artifactId>
+         <scope>provided</scope>
+      </dependency>
+      
+      <dependency>
+         <groupId>javax.faces</groupId>
+         <artifactId>jsf-api</artifactId>
+         <scope>provided</scope>
+      </dependency>
+      
+      <dependency>
+        <groupId>com.sun.facelets</groupId>
+        <artifactId>jsf-facelets</artifactId>
+        <scope>runtime</scope>
+      </dependency>
+      
+      <!-- <dependency>
+         <groupId>org.jboss.el</groupId>
+         <artifactId>jboss-el</artifactId>
+         <exclusions>
+            <exclusion>
+               <groupId>javax.el</groupId>
+               <artifactId>el-api</artifactId>
+            </exclusion>
+         </exclusions>
+      </dependency>-->
+      
+      <dependency>
+         <groupId>javax.el</groupId>
+         <artifactId>el-ri</artifactId>
+         <exclusions>
+            <exclusion>
+               <groupId>javax.el</groupId>
+               <artifactId>el-api</artifactId>
+            </exclusion>
+         </exclusions>
+      </dependency>
+      <dependency>
+      	<groupId>javax.annotation</groupId>
+      	<artifactId>jsr250-api</artifactId>
+         <scope>provided</scope>
+      </dependency>
+      
+   </dependencies>
+   
+   <build>
+      <finalName>webbeans-numberguess</finalName>
+   </build>
+   
+</project>
+

Deleted: examples/tags/1.0.0.PREVIEW1/pom.xml
===================================================================
--- examples/trunk/pom.xml	2009-04-20 12:24:10 UTC (rev 2589)
+++ examples/tags/1.0.0.PREVIEW1/pom.xml	2009-04-20 12:37:45 UTC (rev 2593)
@@ -1,208 +0,0 @@
-<?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>webbeans-version-matrix</artifactId>
-      <version>1.0.0.PREVIEW1</version>
-   </parent>
-   <groupId>org.jboss.webbeans.examples</groupId>
-   <artifactId>parent</artifactId>
-   <packaging>pom</packaging>
-   <version>1.0.0-SNAPSHOT</version>
-   <name>Web Beans Examples</name>
-
-   <description>
-      Examples for the reference implementation of JSR 299: Web Beans
-   </description>
-   
-   <url>http://www.seamframework.org/WebBeans</url>
-
-   <developers>
-      <developer>
-         <name>Pete Muir</name>
-         <roles>
-            <role>Project Lead</role>
-         </roles>
-         <email>pete.muir at jboss.org</email>
-         <organization>JBoss, a division of Red Hat</organization>
-         <url>http://in.relation.to/Bloggers/Pete</url>
-      </developer>
-
-      <developer>
-         <name>Shane Bryzak</name>
-         <organization>JBoss, a division of Red Hat</organization>
-      </developer>
-
-      <developer>
-         <name>David Allen</name>
-      </developer>
-      
-      <developer>
-         <name>Nicklas Karlsson</name>
-      </developer>
-   </developers>
-   
-   
-   <modules>
-      <module>numberguess</module>
-      <module>jsf2</module>
-      <module>tomcat</module>
-      <module>translator</module>
-      <module>login</module>
-      <module>conversations</module>
-      <module>se/numberguess</module>
-      <module>wicket/numberguess</module>
-      <module>wicket/conversations</module>
-   </modules>
-
-   <build>
-      <plugins>
-         <plugin>
-            <groupId>org.apache.maven.plugins</groupId>
-            <artifactId>maven-source-plugin</artifactId>
-            <executions>
-               <execution>
-                  <id>attach-sources</id>
-                  <phase>verify</phase>
-                  <goals>
-                     <goal>jar</goal>
-                  </goals>
-               </execution>
-            </executions>
-         </plugin>
-         <plugin>
-            <groupId>org.apache.maven.plugins</groupId>
-            <artifactId>maven-enforcer-plugin</artifactId>
-         </plugin>
-         <plugin>
-           <groupId>org.apache.maven.plugins</groupId>
-           <artifactId>maven-release-plugin</artifactId>
-           <version>2.0-beta-8</version>
-           <configuration>
-             <tagBase>https://svn.jboss.org/repos/webbeans/examples/tags</tagBase>
-             <autoVersionSubmodules>true</autoVersionSubmodules>
-           </configuration>
-         </plugin>
-      </plugins>
-      <defaultGoal>package</defaultGoal>
-
-      <pluginManagement>
-         <plugins>
-            <plugin>
-               <groupId>org.apache.maven.plugins</groupId>
-               <artifactId>maven-compiler-plugin</artifactId>
-               <configuration>
-                  <source>1.5</source>
-                  <target>1.5</target>
-               </configuration>
-            </plugin>
-            <plugin>
-               <groupId>org.apache.maven.plugins</groupId>
-               <artifactId>maven-jar-plugin</artifactId>
-               <configuration>
-                  <archive>
-                     <manifest>
-                        <addDefaultImplementationEntries>
-                           true
-                        </addDefaultImplementationEntries>
-                        <addDefaultSpecificationEntries>
-                           true
-                        </addDefaultSpecificationEntries>
-                     </manifest>
-                  </archive>
-               </configuration>
-            </plugin>
-            <plugin>
-               <groupId>org.codehaus.mojo</groupId>
-               <artifactId>emma-maven-plugin</artifactId>
-               <configuration>
-                  <forkMode>once</forkMode>
-                  <metadataFile>../target/coverage.em</metadataFile>
-                  <outputDirectory>${project.build.directory}/generated-classes</outputDirectory>
-               </configuration>
-            </plugin>
-            <plugin>
-               <groupId>org.apache.maven.plugins</groupId>
-               <artifactId>maven-war-plugin</artifactId>
-               <configuration>
-                  <warSourceDirectory>${basedir}/WebContent</warSourceDirectory>
-               </configuration>
-            </plugin>
-            <plugin>
-               <groupId>org.apache.maven.plugins</groupId>
-               <artifactId>maven-ejb-plugin</artifactId>
-               <configuration>
-                  <ejbVersion>3.0</ejbVersion>
-               </configuration>
-            </plugin>
-         </plugins>
-      </pluginManagement>
-   </build>
-   
-   <ciManagement>
-      <system>Hudson</system>
-      <url />
-   </ciManagement>
-
-   <issueManagement>
-      <system>JIRA</system>
-      <url>http://jira.jboss.org/browse/WBRI</url>
-   </issueManagement>
-
-   <inceptionYear>2008</inceptionYear>
-
-   <licenses>
-      <license>
-         <name>Apache License, Version 2.0</name>
-         <url>http://www.apache.org/licenses/LICENSE-2.0</url>
-      </license>
-      <license>
-         <name>Lesser Gnu Public License, Version 2.1</name>
-         <url>http://www.gnu.org/licenses/lgpl-2.1.html</url>
-      </license>
-   </licenses>
-
-   <scm>
-      <connection>scm:svn:http://anonsvn.jboss.org/repos/webbeans/examples</connection>
-      <developerConnection>scm:svn:https://svn.jboss.org/repos/webbeans/examples</developerConnection>
-      <url>http://fisheye.jboss.org/browse/WebBeans/ri/examples</url>
-   </scm>
-
-   <distributionManagement>
-      <repository>
-         <!-- Copy the dist to the local checkout of the JBoss maven2 repo ${maven.repository.root} -->
-         <!-- It is anticipated that ${maven.repository.root} be set in user's settings.xml -->
-         <!-- todo : replace this with direct svn access once the svnkit providers are available -->
-         <id>repository.jboss.org</id>
-         <url>file://${maven.repository.root}</url>
-      </repository>
-      <snapshotRepository>
-         <id>snapshots.jboss.org</id>
-         <name>JBoss Snapshot Repository</name>
-         <url>dav:https://snapshots.jboss.org/maven2</url>
-      </snapshotRepository>
-   </distributionManagement>
-
-   <reporting>
-      <plugins>
-         <plugin>
-            <groupId>org.codehaus.mojo</groupId>
-            <artifactId>cobertura-maven-plugin</artifactId>
-            <configuration>
-               <formats>
-                  <format>html</format>
-                  <format>xml</format>
-               </formats>
-               <instrumentation>
-                  <ignores>
-                     <ignore>javax.webbeans.*</ignore>
-                  </ignores>
-               </instrumentation>
-            </configuration>
-         </plugin>
-      </plugins>
-   </reporting>
-
-</project>
-

Copied: examples/tags/1.0.0.PREVIEW1/pom.xml (from rev 2592, examples/trunk/pom.xml)
===================================================================
--- examples/tags/1.0.0.PREVIEW1/pom.xml	                        (rev 0)
+++ examples/tags/1.0.0.PREVIEW1/pom.xml	2009-04-20 12:37:45 UTC (rev 2593)
@@ -0,0 +1,208 @@
+<?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>webbeans-version-matrix</artifactId>
+      <version>1.0.0.PREVIEW1</version>
+   </parent>
+   <groupId>org.jboss.webbeans.examples</groupId>
+   <artifactId>parent</artifactId>
+   <packaging>pom</packaging>
+   <version>1.0.0.PREVIEW1</version>
+   <name>Web Beans Examples</name>
+
+   <description>
+      Examples for the reference implementation of JSR 299: Web Beans
+   </description>
+   
+   <url>http://www.seamframework.org/WebBeans</url>
+
+   <developers>
+      <developer>
+         <name>Pete Muir</name>
+         <roles>
+            <role>Project Lead</role>
+         </roles>
+         <email>pete.muir at jboss.org</email>
+         <organization>JBoss, a division of Red Hat</organization>
+         <url>http://in.relation.to/Bloggers/Pete</url>
+      </developer>
+
+      <developer>
+         <name>Shane Bryzak</name>
+         <organization>JBoss, a division of Red Hat</organization>
+      </developer>
+
+      <developer>
+         <name>David Allen</name>
+      </developer>
+      
+      <developer>
+         <name>Nicklas Karlsson</name>
+      </developer>
+   </developers>
+   
+   
+   <modules>
+      <module>numberguess</module>
+      <module>jsf2</module>
+      <module>tomcat</module>
+      <module>translator</module>
+      <module>login</module>
+      <module>conversations</module>
+      <module>se/numberguess</module>
+      <module>wicket/numberguess</module>
+      <module>wicket/conversations</module>
+   </modules>
+
+   <build>
+      <plugins>
+         <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-source-plugin</artifactId>
+            <executions>
+               <execution>
+                  <id>attach-sources</id>
+                  <phase>verify</phase>
+                  <goals>
+                     <goal>jar</goal>
+                  </goals>
+               </execution>
+            </executions>
+         </plugin>
+         <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-enforcer-plugin</artifactId>
+         </plugin>
+         <plugin>
+           <groupId>org.apache.maven.plugins</groupId>
+           <artifactId>maven-release-plugin</artifactId>
+           <version>2.0-beta-8</version>
+           <configuration>
+             <tagBase>https://svn.jboss.org/repos/webbeans/examples/tags</tagBase>
+             <autoVersionSubmodules>true</autoVersionSubmodules>
+           </configuration>
+         </plugin>
+      </plugins>
+      <defaultGoal>package</defaultGoal>
+
+      <pluginManagement>
+         <plugins>
+            <plugin>
+               <groupId>org.apache.maven.plugins</groupId>
+               <artifactId>maven-compiler-plugin</artifactId>
+               <configuration>
+                  <source>1.5</source>
+                  <target>1.5</target>
+               </configuration>
+            </plugin>
+            <plugin>
+               <groupId>org.apache.maven.plugins</groupId>
+               <artifactId>maven-jar-plugin</artifactId>
+               <configuration>
+                  <archive>
+                     <manifest>
+                        <addDefaultImplementationEntries>
+                           true
+                        </addDefaultImplementationEntries>
+                        <addDefaultSpecificationEntries>
+                           true
+                        </addDefaultSpecificationEntries>
+                     </manifest>
+                  </archive>
+               </configuration>
+            </plugin>
+            <plugin>
+               <groupId>org.codehaus.mojo</groupId>
+               <artifactId>emma-maven-plugin</artifactId>
+               <configuration>
+                  <forkMode>once</forkMode>
+                  <metadataFile>../target/coverage.em</metadataFile>
+                  <outputDirectory>${project.build.directory}/generated-classes</outputDirectory>
+               </configuration>
+            </plugin>
+            <plugin>
+               <groupId>org.apache.maven.plugins</groupId>
+               <artifactId>maven-war-plugin</artifactId>
+               <configuration>
+                  <warSourceDirectory>${basedir}/WebContent</warSourceDirectory>
+               </configuration>
+            </plugin>
+            <plugin>
+               <groupId>org.apache.maven.plugins</groupId>
+               <artifactId>maven-ejb-plugin</artifactId>
+               <configuration>
+                  <ejbVersion>3.0</ejbVersion>
+               </configuration>
+            </plugin>
+         </plugins>
+      </pluginManagement>
+   </build>
+   
+   <ciManagement>
+      <system>Hudson</system>
+      <url />
+   </ciManagement>
+
+   <issueManagement>
+      <system>JIRA</system>
+      <url>http://jira.jboss.org/browse/WBRI</url>
+   </issueManagement>
+
+   <inceptionYear>2008</inceptionYear>
+
+   <licenses>
+      <license>
+         <name>Apache License, Version 2.0</name>
+         <url>http://www.apache.org/licenses/LICENSE-2.0</url>
+      </license>
+      <license>
+         <name>Lesser Gnu Public License, Version 2.1</name>
+         <url>http://www.gnu.org/licenses/lgpl-2.1.html</url>
+      </license>
+   </licenses>
+
+   <scm>
+      <connection>scm:svn:http://anonsvn.jboss.org/repos/webbeans/examples/1.0.0.PREVIEW1</connection>
+      <developerConnection>scm:svn:https://svn.jboss.org/repos/webbeans/examples/tags/1.0.0.PREVIEW1</developerConnection>
+      <url>http://fisheye.jboss.org/browse/WebBeans/ri/examples/1.0.0.PREVIEW1</url>
+   </scm>
+
+   <distributionManagement>
+      <repository>
+         <!-- Copy the dist to the local checkout of the JBoss maven2 repo ${maven.repository.root} -->
+         <!-- It is anticipated that ${maven.repository.root} be set in user's settings.xml -->
+         <!-- todo : replace this with direct svn access once the svnkit providers are available -->
+         <id>repository.jboss.org</id>
+         <url>file://${maven.repository.root}</url>
+      </repository>
+      <snapshotRepository>
+         <id>snapshots.jboss.org</id>
+         <name>JBoss Snapshot Repository</name>
+         <url>dav:https://snapshots.jboss.org/maven2</url>
+      </snapshotRepository>
+   </distributionManagement>
+
+   <reporting>
+      <plugins>
+         <plugin>
+            <groupId>org.codehaus.mojo</groupId>
+            <artifactId>cobertura-maven-plugin</artifactId>
+            <configuration>
+               <formats>
+                  <format>html</format>
+                  <format>xml</format>
+               </formats>
+               <instrumentation>
+                  <ignores>
+                     <ignore>javax.webbeans.*</ignore>
+                  </ignores>
+               </instrumentation>
+            </configuration>
+         </plugin>
+      </plugins>
+   </reporting>
+
+</project>
+

Deleted: examples/tags/1.0.0.PREVIEW1/se/hello-world/pom.xml
===================================================================
--- examples/trunk/se/hello-world/pom.xml	2009-04-20 12:24:10 UTC (rev 2589)
+++ examples/tags/1.0.0.PREVIEW1/se/hello-world/pom.xml	2009-04-20 12:37:45 UTC (rev 2593)
@@ -1,84 +0,0 @@
-<?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">
-    <parent>
-        <artifactId>parent</artifactId>
-        <groupId>org.jboss.webbeans.examples</groupId>
-        <version>1.0.0-SNAPSHOT</version>
-    </parent>
-    <modelVersion>4.0.0</modelVersion>
-    <groupId>org.jboss.webbeans.examples</groupId>
-    <artifactId>hello-world-se</artifactId>
-    <packaging>jar</packaging>
-    <name>Hello World SE</name>
-    
-    <profiles>
-        <profile>
-            <id>run</id>
-            <activation>
-                <property>
-                    <name>run</name>
-                </property>
-            </activation>
-            <build>
-                <plugins>
-                    <plugin>
-                        <executions>
-                            <execution>
-                                <id>run</id>
-                                <phase>package</phase>
-                                <goals>
-                                    <goal>java</goal>
-                                </goals>
-                            </execution>
-                        </executions>
-                        <groupId>org.codehaus.mojo</groupId>
-                        <artifactId>exec-maven-plugin</artifactId>
-                        <configuration>
-                            <mainClass>org.jboss.webbeans.environment.se.StartMain</mainClass>
-                        </configuration>
-                    </plugin>
-                    <plugin>
-                        <groupId>com.google.code.maven-license-plugin</groupId>
-                        <artifactId>maven-license-plugin</artifactId>
-                        <version>1.4.0</version>
-                        <configuration>
-                            <basedir>${basedir}</basedir>
-                            <header>${basedir}/src/etc/header.txt</header>
-                            <quiet>false</quiet>
-                            <failIfMissing>true</failIfMissing>
-                            <aggregate>false</aggregate>
-                            <encoding>UTF-8</encoding>
-                        </configuration>
-                        <executions>
-                            <execution>
-                                <phase>compile</phase>
-                                <goals>
-                                    <goal>format</goal>
-                                </goals>
-                            </execution>
-                        </executions>
-                    </plugin>
-                        <plugin>
-                            <groupId>org.apache.maven.plugins</groupId>
-                            <artifactId>maven-jar-plugin</artifactId>
-                            <configuration>
-                                <archive>
-                                    <manifest>
-                                        <mainClass>org.jboss.webbeans.environment.se.StartMain</mainClass>
-                                    </manifest>
-                                </archive>
-                            </configuration>
-                        </plugin>
-                </plugins>
-            </build>
-        </profile>
-    </profiles>
-
-    <dependencies>
-        <dependency>
-            <groupId>org.jboss.webbeans</groupId>
-            <artifactId>webbeans-se</artifactId>
-        </dependency>
-    </dependencies>
-
-</project>

Copied: examples/tags/1.0.0.PREVIEW1/se/hello-world/pom.xml (from rev 2591, examples/trunk/se/hello-world/pom.xml)
===================================================================
--- examples/tags/1.0.0.PREVIEW1/se/hello-world/pom.xml	                        (rev 0)
+++ examples/tags/1.0.0.PREVIEW1/se/hello-world/pom.xml	2009-04-20 12:37:45 UTC (rev 2593)
@@ -0,0 +1,85 @@
+<?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">
+    <parent>
+        <artifactId>parent</artifactId>
+        <groupId>org.jboss.webbeans.examples</groupId>
+        <version>1.0.0-SNAPSHOT</version>
+        <relativePath>../../pom.xml</relativePath>
+    </parent>
+    <modelVersion>4.0.0</modelVersion>
+    <groupId>org.jboss.webbeans.examples</groupId>
+    <artifactId>hello-world-se</artifactId>
+    <packaging>jar</packaging>
+    <name>Hello World SE</name>
+    
+    <profiles>
+        <profile>
+            <id>run</id>
+            <activation>
+                <property>
+                    <name>run</name>
+                </property>
+            </activation>
+            <build>
+                <plugins>
+                    <plugin>
+                        <executions>
+                            <execution>
+                                <id>run</id>
+                                <phase>package</phase>
+                                <goals>
+                                    <goal>java</goal>
+                                </goals>
+                            </execution>
+                        </executions>
+                        <groupId>org.codehaus.mojo</groupId>
+                        <artifactId>exec-maven-plugin</artifactId>
+                        <configuration>
+                            <mainClass>org.jboss.webbeans.environment.se.StartMain</mainClass>
+                        </configuration>
+                    </plugin>
+                    <plugin>
+                        <groupId>com.google.code.maven-license-plugin</groupId>
+                        <artifactId>maven-license-plugin</artifactId>
+                        <version>1.4.0</version>
+                        <configuration>
+                            <basedir>${basedir}</basedir>
+                            <header>${basedir}/src/etc/header.txt</header>
+                            <quiet>false</quiet>
+                            <failIfMissing>true</failIfMissing>
+                            <aggregate>false</aggregate>
+                            <encoding>UTF-8</encoding>
+                        </configuration>
+                        <executions>
+                            <execution>
+                                <phase>compile</phase>
+                                <goals>
+                                    <goal>format</goal>
+                                </goals>
+                            </execution>
+                        </executions>
+                    </plugin>
+                        <plugin>
+                            <groupId>org.apache.maven.plugins</groupId>
+                            <artifactId>maven-jar-plugin</artifactId>
+                            <configuration>
+                                <archive>
+                                    <manifest>
+                                        <mainClass>org.jboss.webbeans.environment.se.StartMain</mainClass>
+                                    </manifest>
+                                </archive>
+                            </configuration>
+                        </plugin>
+                </plugins>
+            </build>
+        </profile>
+    </profiles>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.jboss.webbeans</groupId>
+            <artifactId>webbeans-se</artifactId>
+        </dependency>
+    </dependencies>
+
+</project>

Deleted: examples/tags/1.0.0.PREVIEW1/se/numberguess/pom.xml
===================================================================
--- examples/trunk/se/numberguess/pom.xml	2009-04-20 12:24:10 UTC (rev 2589)
+++ examples/tags/1.0.0.PREVIEW1/se/numberguess/pom.xml	2009-04-20 12:37:45 UTC (rev 2593)
@@ -1,68 +0,0 @@
-<?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">
-    <parent>
-        <artifactId>parent</artifactId>
-        <groupId>org.jboss.webbeans.examples</groupId>
-        <version>1.0.0-SNAPSHOT</version>
-    </parent>
-    <modelVersion>4.0.0</modelVersion>
-    <groupId>org.jboss.webbeans.examples</groupId>
-    <artifactId>webbeans-numberguess-se</artifactId>
-    <packaging>jar</packaging>
-    <name>Number Guess SE</name>
-
-    <dependencies>
-        <dependency>
-            <groupId>org.jboss.webbeans</groupId>
-            <artifactId>webbeans-se</artifactId>
-        </dependency>
-    </dependencies>
-    
-	<build>
-		<plugins>
-			<plugin>
-				<groupId>org.apache.maven.plugins</groupId>
-				<artifactId>maven-jar-plugin</artifactId>
-				<configuration>
-					<archive>
-						<manifest>
-							<mainClass>org.jboss.webbeans.environment.se.StartMain</mainClass>
-						</manifest>
-					</archive>
-				</configuration>
-			</plugin>
-		</plugins>
-	</build>
-	
-	<profiles>
-		<profile>
-         <id>run</id>
-         <activation>
-         	<property>
-         		<name>run</name>
-         	</property>
-         </activation>
-         <build>
-         	<plugins>
-         		<plugin>
-         			<executions>
-                     <execution>
-                        <id>run</id>
-                        <phase>package</phase> 
-                        <goals>
-                        <goal>java</goal>
-                        </goals>
-                     </execution>
-                  </executions>
-		        		<groupId>org.codehaus.mojo</groupId>
-			         <artifactId>exec-maven-plugin</artifactId>
-		  				<configuration>
-		  					<mainClass>org.jboss.webbeans.environment.se.StartMain</mainClass>
-		  				</configuration>
-		  			</plugin>
-         	</plugins>
-         </build>
-    	</profile>
-	</profiles>
-    
-</project>

Copied: examples/tags/1.0.0.PREVIEW1/se/numberguess/pom.xml (from rev 2592, examples/trunk/se/numberguess/pom.xml)
===================================================================
--- examples/tags/1.0.0.PREVIEW1/se/numberguess/pom.xml	                        (rev 0)
+++ examples/tags/1.0.0.PREVIEW1/se/numberguess/pom.xml	2009-04-20 12:37:45 UTC (rev 2593)
@@ -0,0 +1,69 @@
+<?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">
+    <parent>
+        <artifactId>parent</artifactId>
+        <groupId>org.jboss.webbeans.examples</groupId>
+        <version>1.0.0.PREVIEW1</version>
+        <relativePath>../../pom.xml</relativePath>
+    </parent>
+    <modelVersion>4.0.0</modelVersion>
+    <groupId>org.jboss.webbeans.examples</groupId>
+    <artifactId>webbeans-numberguess-se</artifactId>
+    <packaging>jar</packaging>
+    <name>Number Guess SE</name>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.jboss.webbeans</groupId>
+            <artifactId>webbeans-se</artifactId>
+        </dependency>
+    </dependencies>
+    
+	<build>
+		<plugins>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-jar-plugin</artifactId>
+				<configuration>
+					<archive>
+						<manifest>
+							<mainClass>org.jboss.webbeans.environment.se.StartMain</mainClass>
+						</manifest>
+					</archive>
+				</configuration>
+			</plugin>
+		</plugins>
+	</build>
+	
+	<profiles>
+		<profile>
+         <id>run</id>
+         <activation>
+         	<property>
+         		<name>run</name>
+         	</property>
+         </activation>
+         <build>
+         	<plugins>
+         		<plugin>
+         			<executions>
+                     <execution>
+                        <id>run</id>
+                        <phase>package</phase> 
+                        <goals>
+                        <goal>java</goal>
+                        </goals>
+                     </execution>
+                  </executions>
+		        		<groupId>org.codehaus.mojo</groupId>
+			         <artifactId>exec-maven-plugin</artifactId>
+		  				<configuration>
+		  					<mainClass>org.jboss.webbeans.environment.se.StartMain</mainClass>
+		  				</configuration>
+		  			</plugin>
+         	</plugins>
+         </build>
+    	</profile>
+	</profiles>
+    
+</project>

Deleted: examples/tags/1.0.0.PREVIEW1/tomcat/pom.xml
===================================================================
--- examples/trunk/tomcat/pom.xml	2009-04-20 12:24:10 UTC (rev 2589)
+++ examples/tags/1.0.0.PREVIEW1/tomcat/pom.xml	2009-04-20 12:37:45 UTC (rev 2593)
@@ -1,98 +0,0 @@
-<?xml version="1.0"?>
-<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.examples</groupId>
-      <artifactId>parent</artifactId>
-      <version>1.0.0-SNAPSHOT</version>
-   </parent>
-   
-   <groupId>org.jboss.webbeans.examples</groupId>
-   <artifactId>webbeans-numberguess-tomcat</artifactId>
-   <packaging>war</packaging>
-   <name>Web Beans Examples: Numberguess</name>
-   
-   <pluginRepositories>
-        <pluginRepository>
-            <id>codehaus snapshot repository</id>
-            <url>http://snapshots.repository.codehaus.org/</url>
-            <releases>
-                <enabled>true</enabled>
-            </releases>
-        </pluginRepository>
-    </pluginRepositories>
-   
-   <dependencies>
-      <dependency>
-         <groupId>org.testng</groupId>
-         <artifactId>testng</artifactId>
-         <scope>test</scope>
-         <classifier>jdk15</classifier>
-      </dependency>
-      
-      <dependency>
-         <groupId>org.jboss.webbeans</groupId>
-         <artifactId>jsr299-api</artifactId>
-         <scope>provided</scope>
-      </dependency>
-      
-      <dependency>
-         <groupId>javax.faces</groupId>
-         <artifactId>jsf-api</artifactId>
-      </dependency>
-      
-      <dependency>
-         <groupId>javax.faces</groupId>
-         <artifactId>jsf-impl</artifactId>
-         <scope>runtime</scope>
-      </dependency>
-      
-      <dependency>
-        <groupId>com.sun.facelets</groupId>
-        <artifactId>jsf-facelets</artifactId>
-        <scope>runtime</scope>
-      </dependency>
-      
-      <dependency>
-         <groupId>org.jboss.webbeans.servlet</groupId>
-         <artifactId>webbeans-servlet</artifactId>
-         <scope>runtime</scope>
-      </dependency>
-      
-      <!-- <dependency>
-         <groupId>org.jboss.el</groupId>
-         <artifactId>jboss-el</artifactId>
-         <exclusions>
-            <exclusion>
-               <groupId>javax.el</groupId>
-               <artifactId>el-api</artifactId>
-            </exclusion>
-         </exclusions>
-      </dependency>-->
-      
-      <dependency>
-         <groupId>javax.el</groupId>
-         <artifactId>el-ri</artifactId>
-         <exclusions>
-            <exclusion>
-               <groupId>javax.el</groupId>
-               <artifactId>el-api</artifactId>
-            </exclusion>
-         </exclusions>
-         <scope>runtime</scope>
-      </dependency>
-      
-      <dependency>
-      	<groupId>javax.annotation</groupId>
-      	<artifactId>jsr250-api</artifactId>
-      </dependency>
-      
-   </dependencies>
-   
-   <build>
-      <finalName>webbeans-numberguess</finalName>
-   </build>
-   
-</project>
-

Copied: examples/tags/1.0.0.PREVIEW1/tomcat/pom.xml (from rev 2592, examples/trunk/tomcat/pom.xml)
===================================================================
--- examples/tags/1.0.0.PREVIEW1/tomcat/pom.xml	                        (rev 0)
+++ examples/tags/1.0.0.PREVIEW1/tomcat/pom.xml	2009-04-20 12:37:45 UTC (rev 2593)
@@ -0,0 +1,98 @@
+<?xml version="1.0"?>
+<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.examples</groupId>
+      <artifactId>parent</artifactId>
+      <version>1.0.0.PREVIEW1</version>
+   </parent>
+   
+   <groupId>org.jboss.webbeans.examples</groupId>
+   <artifactId>webbeans-numberguess-tomcat</artifactId>
+   <packaging>war</packaging>
+   <name>Web Beans Examples: Numberguess</name>
+   
+   <pluginRepositories>
+        <pluginRepository>
+            <id>codehaus snapshot repository</id>
+            <url>http://snapshots.repository.codehaus.org/</url>
+            <releases>
+                <enabled>true</enabled>
+            </releases>
+        </pluginRepository>
+    </pluginRepositories>
+   
+   <dependencies>
+      <dependency>
+         <groupId>org.testng</groupId>
+         <artifactId>testng</artifactId>
+         <scope>test</scope>
+         <classifier>jdk15</classifier>
+      </dependency>
+      
+      <dependency>
+         <groupId>org.jboss.webbeans</groupId>
+         <artifactId>jsr299-api</artifactId>
+         <scope>provided</scope>
+      </dependency>
+      
+      <dependency>
+         <groupId>javax.faces</groupId>
+         <artifactId>jsf-api</artifactId>
+      </dependency>
+      
+      <dependency>
+         <groupId>javax.faces</groupId>
+         <artifactId>jsf-impl</artifactId>
+         <scope>runtime</scope>
+      </dependency>
+      
+      <dependency>
+        <groupId>com.sun.facelets</groupId>
+        <artifactId>jsf-facelets</artifactId>
+        <scope>runtime</scope>
+      </dependency>
+      
+      <dependency>
+         <groupId>org.jboss.webbeans.servlet</groupId>
+         <artifactId>webbeans-servlet</artifactId>
+         <scope>runtime</scope>
+      </dependency>
+      
+      <!-- <dependency>
+         <groupId>org.jboss.el</groupId>
+         <artifactId>jboss-el</artifactId>
+         <exclusions>
+            <exclusion>
+               <groupId>javax.el</groupId>
+               <artifactId>el-api</artifactId>
+            </exclusion>
+         </exclusions>
+      </dependency>-->
+      
+      <dependency>
+         <groupId>javax.el</groupId>
+         <artifactId>el-ri</artifactId>
+         <exclusions>
+            <exclusion>
+               <groupId>javax.el</groupId>
+               <artifactId>el-api</artifactId>
+            </exclusion>
+         </exclusions>
+         <scope>runtime</scope>
+      </dependency>
+      
+      <dependency>
+      	<groupId>javax.annotation</groupId>
+      	<artifactId>jsr250-api</artifactId>
+      </dependency>
+      
+   </dependencies>
+   
+   <build>
+      <finalName>webbeans-numberguess</finalName>
+   </build>
+   
+</project>
+

Deleted: examples/tags/1.0.0.PREVIEW1/translator/pom.xml
===================================================================
--- examples/trunk/translator/pom.xml	2009-04-20 12:24:10 UTC (rev 2589)
+++ examples/tags/1.0.0.PREVIEW1/translator/pom.xml	2009-04-20 12:37:45 UTC (rev 2593)
@@ -1,55 +0,0 @@
-<?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.examples</groupId>
-      <artifactId>parent</artifactId>
-      <version>1.0.0-SNAPSHOT</version>
-   </parent>
-   <groupId>org.jboss.webbeans.examples.translator</groupId>
-   <artifactId>parent</artifactId>
-   <packaging>pom</packaging>
-   <name>Web Beans Examples: Translator (parent)</name>
-
-   <description>
-      Ear Example for the reference implementation of JSR 299: Web Beans
-   </description>
-
-   <modules>
-      <module>webbeans-translator-war</module>
-      <module>webbeans-translator-ejb</module>
-      <module>webbeans-translator-ear</module>
-   </modules>
-
-   <dependencyManagement>
-      <dependencies>
-         <dependency>
-            <groupId>org.jboss.webbeans.examples.translator</groupId>
-            <artifactId>webbeans-translator-war</artifactId>
-            <version>${project.version}</version>
-            <type>war</type>
-         </dependency>
-         <dependency>
-            <groupId>org.jboss.webbeans.examples.translator</groupId>
-            <artifactId>webbeans-translator-ear</artifactId>
-            <version>${project.version}</version>
-         </dependency>
-         <dependency>
-            <groupId>org.jboss.webbeans.examples.translator</groupId>
-            <artifactId>webbeans-translator-ejb</artifactId>
-            <version>${project.version}</version>
-            <type>ejb</type>
-         </dependency>
-      </dependencies>
-   </dependencyManagement>
-
-   <build>
-      <pluginManagement>
-         <plugins>
-            
-         </plugins>
-      </pluginManagement>
-   </build>
-
-</project>
-

Copied: examples/tags/1.0.0.PREVIEW1/translator/pom.xml (from rev 2592, examples/trunk/translator/pom.xml)
===================================================================
--- examples/tags/1.0.0.PREVIEW1/translator/pom.xml	                        (rev 0)
+++ examples/tags/1.0.0.PREVIEW1/translator/pom.xml	2009-04-20 12:37:45 UTC (rev 2593)
@@ -0,0 +1,55 @@
+<?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.examples</groupId>
+      <artifactId>parent</artifactId>
+      <version>1.0.0.PREVIEW1</version>
+   </parent>
+   <groupId>org.jboss.webbeans.examples.translator</groupId>
+   <artifactId>parent</artifactId>
+   <packaging>pom</packaging>
+   <name>Web Beans Examples: Translator (parent)</name>
+
+   <description>
+      Ear Example for the reference implementation of JSR 299: Web Beans
+   </description>
+
+   <modules>
+      <module>webbeans-translator-war</module>
+      <module>webbeans-translator-ejb</module>
+      <module>webbeans-translator-ear</module>
+   </modules>
+
+   <dependencyManagement>
+      <dependencies>
+         <dependency>
+            <groupId>org.jboss.webbeans.examples.translator</groupId>
+            <artifactId>webbeans-translator-war</artifactId>
+            <version>${project.version}</version>
+            <type>war</type>
+         </dependency>
+         <dependency>
+            <groupId>org.jboss.webbeans.examples.translator</groupId>
+            <artifactId>webbeans-translator-ear</artifactId>
+            <version>${project.version}</version>
+         </dependency>
+         <dependency>
+            <groupId>org.jboss.webbeans.examples.translator</groupId>
+            <artifactId>webbeans-translator-ejb</artifactId>
+            <version>${project.version}</version>
+            <type>ejb</type>
+         </dependency>
+      </dependencies>
+   </dependencyManagement>
+
+   <build>
+      <pluginManagement>
+         <plugins>
+            
+         </plugins>
+      </pluginManagement>
+   </build>
+
+</project>
+

Deleted: examples/tags/1.0.0.PREVIEW1/translator/webbeans-translator-ear/pom.xml
===================================================================
--- examples/trunk/translator/webbeans-translator-ear/pom.xml	2009-04-20 12:24:10 UTC (rev 2589)
+++ examples/tags/1.0.0.PREVIEW1/translator/webbeans-translator-ear/pom.xml	2009-04-20 12:37:45 UTC (rev 2593)
@@ -1,80 +0,0 @@
-<?xml version="1.0"?>
-<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.examples.translator</groupId>
-      <artifactId>parent</artifactId>
-      <version>1.0.0-SNAPSHOT</version>
-   </parent>
-   
-   <groupId>org.jboss.webbeans.examples</groupId>
-   <artifactId>webbeans-translator-ear</artifactId>
-   <packaging>ear</packaging>
-   <name>Web Beans Examples: Translator (ear)</name>
-   
-   <pluginRepositories>
-        <pluginRepository>
-            <id>codehaus snapshot repository</id>
-            <url>http://snapshots.repository.codehaus.org/</url>
-            <releases>
-                <enabled>true</enabled>
-            </releases>
-        </pluginRepository>
-    </pluginRepositories>
-   
-   <dependencies>
-   
-      <dependency>
-         <groupId>org.jboss.webbeans.examples.translator</groupId>
-         <artifactId>webbeans-translator-ejb</artifactId>
-         <type>ejb</type>
-      </dependency>
-      
-      <dependency>
-         <groupId>org.jboss.webbeans.examples.translator</groupId>
-         <artifactId>webbeans-translator-war</artifactId>
-         <type>war</type>
-      </dependency>
-   
-      <dependency>
-         <groupId>org.testng</groupId>
-         <artifactId>testng</artifactId>
-         <scope>test</scope>
-         <classifier>jdk15</classifier>
-      </dependency>
-      
-      <!-- <dependency>
-         <groupId>org.jboss.el</groupId>
-         <artifactId>jboss-el</artifactId>
-         <exclusions>
-            <exclusion>
-               <groupId>javax.el</groupId>
-               <artifactId>el-api</artifactId>
-            </exclusion>
-         </exclusions>
-      </dependency>-->
-      
-   </dependencies>
-   
-   <build>
-      <finalName>webbeans-translator</finalName>
-      <plugins>
-         <plugin>
-            <groupId>org.apache.maven.plugins</groupId>
-            <artifactId>maven-ear-plugin</artifactId>
-            <configuration>
-               <modules>
-                  <webModule>
-                     <groupId>org.jboss.webbeans.examples.translator</groupId>
-                     <artifactId>webbeans-translator-war</artifactId>
-                     <contextRoot>/webbeans-translator</contextRoot>
-                  </webModule>
-               </modules>
-            </configuration>
-         </plugin>
-      </plugins>
-   </build>
-   
-</project>
-

Copied: examples/tags/1.0.0.PREVIEW1/translator/webbeans-translator-ear/pom.xml (from rev 2592, examples/trunk/translator/webbeans-translator-ear/pom.xml)
===================================================================
--- examples/tags/1.0.0.PREVIEW1/translator/webbeans-translator-ear/pom.xml	                        (rev 0)
+++ examples/tags/1.0.0.PREVIEW1/translator/webbeans-translator-ear/pom.xml	2009-04-20 12:37:45 UTC (rev 2593)
@@ -0,0 +1,80 @@
+<?xml version="1.0"?>
+<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.examples.translator</groupId>
+      <artifactId>parent</artifactId>
+      <version>1.0.0.PREVIEW1</version>
+   </parent>
+   
+   <groupId>org.jboss.webbeans.examples</groupId>
+   <artifactId>webbeans-translator-ear</artifactId>
+   <packaging>ear</packaging>
+   <name>Web Beans Examples: Translator (ear)</name>
+   
+   <pluginRepositories>
+        <pluginRepository>
+            <id>codehaus snapshot repository</id>
+            <url>http://snapshots.repository.codehaus.org/</url>
+            <releases>
+                <enabled>true</enabled>
+            </releases>
+        </pluginRepository>
+    </pluginRepositories>
+   
+   <dependencies>
+   
+      <dependency>
+         <groupId>org.jboss.webbeans.examples.translator</groupId>
+         <artifactId>webbeans-translator-ejb</artifactId>
+         <type>ejb</type>
+      </dependency>
+      
+      <dependency>
+         <groupId>org.jboss.webbeans.examples.translator</groupId>
+         <artifactId>webbeans-translator-war</artifactId>
+         <type>war</type>
+      </dependency>
+   
+      <dependency>
+         <groupId>org.testng</groupId>
+         <artifactId>testng</artifactId>
+         <scope>test</scope>
+         <classifier>jdk15</classifier>
+      </dependency>
+      
+      <!-- <dependency>
+         <groupId>org.jboss.el</groupId>
+         <artifactId>jboss-el</artifactId>
+         <exclusions>
+            <exclusion>
+               <groupId>javax.el</groupId>
+               <artifactId>el-api</artifactId>
+            </exclusion>
+         </exclusions>
+      </dependency>-->
+      
+   </dependencies>
+   
+   <build>
+      <finalName>webbeans-translator</finalName>
+      <plugins>
+         <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-ear-plugin</artifactId>
+            <configuration>
+               <modules>
+                  <webModule>
+                     <groupId>org.jboss.webbeans.examples.translator</groupId>
+                     <artifactId>webbeans-translator-war</artifactId>
+                     <contextRoot>/webbeans-translator</contextRoot>
+                  </webModule>
+               </modules>
+            </configuration>
+         </plugin>
+      </plugins>
+   </build>
+   
+</project>
+

Deleted: examples/tags/1.0.0.PREVIEW1/translator/webbeans-translator-ejb/pom.xml
===================================================================
--- examples/trunk/translator/webbeans-translator-ejb/pom.xml	2009-04-20 12:24:10 UTC (rev 2589)
+++ examples/tags/1.0.0.PREVIEW1/translator/webbeans-translator-ejb/pom.xml	2009-04-20 12:37:45 UTC (rev 2593)
@@ -1,53 +0,0 @@
-<?xml version="1.0"?>
-<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.examples.translator</groupId>
-      <artifactId>parent</artifactId>
-      <version>1.0.0-SNAPSHOT</version>
-   </parent>
-   
-   <groupId>org.jboss.webbeans.examples.translator</groupId>
-   <artifactId>webbeans-translator-ejb</artifactId>
-   <packaging>ejb</packaging>
-   <name>Web Beans Examples: Translator (ejb)</name>
-   
-   <pluginRepositories>
-        <pluginRepository>
-            <id>codehaus snapshot repository</id>
-            <url>http://snapshots.repository.codehaus.org/</url>
-            <releases>
-                <enabled>true</enabled>
-            </releases>
-        </pluginRepository>
-    </pluginRepositories>
-   
-   <dependencies>
-      <dependency>
-         <groupId>org.testng</groupId>
-         <artifactId>testng</artifactId>
-         <scope>test</scope>
-         <classifier>jdk15</classifier>
-      </dependency>
-      
-      <dependency>
-         <groupId>org.jboss.webbeans</groupId>
-         <artifactId>jsr299-api</artifactId>
-         <scope>provided</scope>
-      </dependency>
-      
-      <dependency>
-         <groupId>javax.ejb</groupId>
-         <artifactId>ejb-api</artifactId>
-         <scope>provided</scope>
-      </dependency>
-      
-   </dependencies>
-   
-   <build>
-      <finalName>webbeans-translator</finalName>
-   </build>
-   
-</project>
-

Copied: examples/tags/1.0.0.PREVIEW1/translator/webbeans-translator-ejb/pom.xml (from rev 2592, examples/trunk/translator/webbeans-translator-ejb/pom.xml)
===================================================================
--- examples/tags/1.0.0.PREVIEW1/translator/webbeans-translator-ejb/pom.xml	                        (rev 0)
+++ examples/tags/1.0.0.PREVIEW1/translator/webbeans-translator-ejb/pom.xml	2009-04-20 12:37:45 UTC (rev 2593)
@@ -0,0 +1,53 @@
+<?xml version="1.0"?>
+<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.examples.translator</groupId>
+      <artifactId>parent</artifactId>
+      <version>1.0.0.PREVIEW1</version>
+   </parent>
+   
+   <groupId>org.jboss.webbeans.examples.translator</groupId>
+   <artifactId>webbeans-translator-ejb</artifactId>
+   <packaging>ejb</packaging>
+   <name>Web Beans Examples: Translator (ejb)</name>
+   
+   <pluginRepositories>
+        <pluginRepository>
+            <id>codehaus snapshot repository</id>
+            <url>http://snapshots.repository.codehaus.org/</url>
+            <releases>
+                <enabled>true</enabled>
+            </releases>
+        </pluginRepository>
+    </pluginRepositories>
+   
+   <dependencies>
+      <dependency>
+         <groupId>org.testng</groupId>
+         <artifactId>testng</artifactId>
+         <scope>test</scope>
+         <classifier>jdk15</classifier>
+      </dependency>
+      
+      <dependency>
+         <groupId>org.jboss.webbeans</groupId>
+         <artifactId>jsr299-api</artifactId>
+         <scope>provided</scope>
+      </dependency>
+      
+      <dependency>
+         <groupId>javax.ejb</groupId>
+         <artifactId>ejb-api</artifactId>
+         <scope>provided</scope>
+      </dependency>
+      
+   </dependencies>
+   
+   <build>
+      <finalName>webbeans-translator</finalName>
+   </build>
+   
+</project>
+

Deleted: examples/tags/1.0.0.PREVIEW1/translator/webbeans-translator-war/pom.xml
===================================================================
--- examples/trunk/translator/webbeans-translator-war/pom.xml	2009-04-20 12:24:10 UTC (rev 2589)
+++ examples/tags/1.0.0.PREVIEW1/translator/webbeans-translator-war/pom.xml	2009-04-20 12:37:45 UTC (rev 2593)
@@ -1,74 +0,0 @@
-<?xml version="1.0"?>
-<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.examples.translator</groupId>
-      <artifactId>parent</artifactId>
-      <version>1.0.0-SNAPSHOT</version>
-   </parent>
-   
-   <groupId>org.jboss.webbeans.examples.translator</groupId>
-   <artifactId>webbeans-translator-war</artifactId>
-   <packaging>war</packaging>
-   <name>Web Beans Examples: Translator (war)</name>
-   
-   <pluginRepositories>
-        <pluginRepository>
-            <id>codehaus snapshot repository</id>
-            <url>http://snapshots.repository.codehaus.org/</url>
-            <releases>
-                <enabled>true</enabled>
-            </releases>
-        </pluginRepository>
-    </pluginRepositories>
-   
-   <dependencies>
-      <dependency>
-         <groupId>org.testng</groupId>
-         <artifactId>testng</artifactId>
-         <scope>test</scope>
-         <classifier>jdk15</classifier>
-      </dependency>
-      
-      <dependency>
-         <groupId>javax.faces</groupId>
-         <artifactId>jsf-api</artifactId>
-         <scope>provided</scope>
-      </dependency>
-      
-      <dependency>
-        <groupId>com.sun.facelets</groupId>
-        <artifactId>jsf-facelets</artifactId>
-      </dependency>
-      
-      <!-- <dependency>
-         <groupId>org.jboss.el</groupId>
-         <artifactId>jboss-el</artifactId>
-         <exclusions>
-            <exclusion>
-               <groupId>javax.el</groupId>
-               <artifactId>el-api</artifactId>
-            </exclusion>
-         </exclusions>
-      </dependency>-->
-      
-      <dependency>
-         <groupId>javax.el</groupId>
-         <artifactId>el-ri</artifactId>
-         <exclusions>
-            <exclusion>
-               <groupId>javax.el</groupId>
-               <artifactId>el-api</artifactId>
-            </exclusion>
-         </exclusions>
-      </dependency>
-      
-   </dependencies>
-   
-   <build>
-      <finalName>webbeans-translator</finalName>
-   </build>
-   
-</project>
-

Copied: examples/tags/1.0.0.PREVIEW1/translator/webbeans-translator-war/pom.xml (from rev 2592, examples/trunk/translator/webbeans-translator-war/pom.xml)
===================================================================
--- examples/tags/1.0.0.PREVIEW1/translator/webbeans-translator-war/pom.xml	                        (rev 0)
+++ examples/tags/1.0.0.PREVIEW1/translator/webbeans-translator-war/pom.xml	2009-04-20 12:37:45 UTC (rev 2593)
@@ -0,0 +1,74 @@
+<?xml version="1.0"?>
+<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.examples.translator</groupId>
+      <artifactId>parent</artifactId>
+      <version>1.0.0.PREVIEW1</version>
+   </parent>
+   
+   <groupId>org.jboss.webbeans.examples.translator</groupId>
+   <artifactId>webbeans-translator-war</artifactId>
+   <packaging>war</packaging>
+   <name>Web Beans Examples: Translator (war)</name>
+   
+   <pluginRepositories>
+        <pluginRepository>
+            <id>codehaus snapshot repository</id>
+            <url>http://snapshots.repository.codehaus.org/</url>
+            <releases>
+                <enabled>true</enabled>
+            </releases>
+        </pluginRepository>
+    </pluginRepositories>
+   
+   <dependencies>
+      <dependency>
+         <groupId>org.testng</groupId>
+         <artifactId>testng</artifactId>
+         <scope>test</scope>
+         <classifier>jdk15</classifier>
+      </dependency>
+      
+      <dependency>
+         <groupId>javax.faces</groupId>
+         <artifactId>jsf-api</artifactId>
+         <scope>provided</scope>
+      </dependency>
+      
+      <dependency>
+        <groupId>com.sun.facelets</groupId>
+        <artifactId>jsf-facelets</artifactId>
+      </dependency>
+      
+      <!-- <dependency>
+         <groupId>org.jboss.el</groupId>
+         <artifactId>jboss-el</artifactId>
+         <exclusions>
+            <exclusion>
+               <groupId>javax.el</groupId>
+               <artifactId>el-api</artifactId>
+            </exclusion>
+         </exclusions>
+      </dependency>-->
+      
+      <dependency>
+         <groupId>javax.el</groupId>
+         <artifactId>el-ri</artifactId>
+         <exclusions>
+            <exclusion>
+               <groupId>javax.el</groupId>
+               <artifactId>el-api</artifactId>
+            </exclusion>
+         </exclusions>
+      </dependency>
+      
+   </dependencies>
+   
+   <build>
+      <finalName>webbeans-translator</finalName>
+   </build>
+   
+</project>
+

Deleted: examples/tags/1.0.0.PREVIEW1/wicket/conversations/pom.xml
===================================================================
--- examples/trunk/wicket/conversations/pom.xml	2009-04-20 12:24:10 UTC (rev 2589)
+++ examples/tags/1.0.0.PREVIEW1/wicket/conversations/pom.xml	2009-04-20 12:37:45 UTC (rev 2593)
@@ -1,155 +0,0 @@
-<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.examples</groupId>
-      <artifactId>parent</artifactId>
-      <version>1.0.0-SNAPSHOT</version>
-   </parent>
-   
-   <groupId>org.jboss.webbeans.examples</groupId>
-   <artifactId>webbeans-wicket-conversations</artifactId>
-   <packaging>war</packaging>
-   <name>Web Beans Examples: Conversations with Wicket</name>
-   
-   <pluginRepositories>
-        <pluginRepository>
-            <id>codehaus snapshot repository</id>
-            <url>http://snapshots.repository.codehaus.org/</url>
-            <releases>
-                <enabled>true</enabled>
-            </releases>
-        </pluginRepository>
-    </pluginRepositories>
-   
-   <dependencies>
-      
-      <dependency>
-         <groupId>org.jboss.webbeans</groupId>
-         <artifactId>jsr299-api</artifactId>
-         <scope>provided</scope>
-      </dependency>
-      
-      <dependency>
-         <groupId>org.jboss.webbeans</groupId>
-         <artifactId>webbeans-api</artifactId>
-         <scope>provided</scope>
-      </dependency>
-
-	  <dependency>
-	  	<groupId>org.jboss.webbeans</groupId>
-	  	<artifactId>webbeans-wicket</artifactId>
-	    <version>1.0.0-SNAPSHOT</version>
-	  </dependency>
-	  	
-		<dependency>
-			<groupId>org.apache.wicket</groupId>
-			<artifactId>wicket</artifactId>
-			<version>${wicket.version}</version>
-		</dependency>
-
-		<dependency>
-			<groupId>org.slf4j</groupId>
-			<artifactId>slf4j-log4j12</artifactId>
-			<version>1.4.2</version>
-		</dependency>
-		<dependency>
-			<groupId>log4j</groupId>
-			<artifactId>log4j</artifactId>
-			<version>1.2.14</version>
-		</dependency>
-
-
-		<!--  JETTY DEPENDENCIES FOR TESTING  -->
-
-		<dependency>
-			<groupId>org.mortbay.jetty</groupId>
-			<artifactId>jetty</artifactId>
-			<version>${jetty.version}</version>
-			<scope>provided</scope>
-		</dependency>
-
-	</dependencies>
-
-	<build>
-		<finalName>webbeans-conversations-wicket</finalName>
-		<resources>
-			<resource>
-				<filtering>false</filtering>
-				<directory>src/main/resources</directory>
-			</resource>
-			<resource>
-				<filtering>false</filtering>
-				<directory>src/main/java</directory>
-				<includes>
-					<include>**</include>
-				</includes>
-				<excludes>
-					<exclude>**/*.java</exclude>
-				</excludes>
-			</resource>
-		</resources>
-		<testResources>
-			<testResource>
-				<filtering>false</filtering>
-				<directory>src/test/java</directory>
-				<includes>
-					<include>**</include>
-				</includes>
-				<excludes>
-					<exclude>**/*.java</exclude>
-				</excludes>
-			</testResource>
-		</testResources>
-		<plugins>
-			<plugin>
-				<groupId>org.mortbay.jetty</groupId>
-				<artifactId>maven-jetty-plugin</artifactId>
-				<version>${jetty.version}</version>
-			</plugin>
-      <plugin> 
-        <artifactId>maven-eclipse-plugin</artifactId> 
-        <version>2.5.1</version> 
-      </plugin> 
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-war-plugin</artifactId>
-        <configuration>
-          <webResources>
-            <resource>
-              <directory>src/main/webapp/WEB-INF</directory>
-              <targetPath>WEB-INF</targetPath>
-              <includes>
-                <include>**/beans.xml</include>
-                <include>**/web.xml</include>
-              </includes>
-            </resource>
-          </webResources>
-        </configuration>
-      </plugin>
-		</plugins>
-	</build>
-
-	<properties>
-		<wicket.version>1.3.5.jboss1</wicket.version>
-		<jetty.version>6.1.16</jetty.version>
-	</properties>
-
-  <profiles>
-    <profile>
-      <id>jetty</id>
-      <dependencies>
-        <dependency>
-          <groupId>org.jboss.webbeans.servlet</groupId>
-          <artifactId>webbeans-servlet</artifactId>
-          <scope>runtime</scope>
-        </dependency>
-      </dependencies>
-    </profile>
-  </profiles>
- 
-
-</project>

Copied: examples/tags/1.0.0.PREVIEW1/wicket/conversations/pom.xml (from rev 2592, examples/trunk/wicket/conversations/pom.xml)
===================================================================
--- examples/tags/1.0.0.PREVIEW1/wicket/conversations/pom.xml	                        (rev 0)
+++ examples/tags/1.0.0.PREVIEW1/wicket/conversations/pom.xml	2009-04-20 12:37:45 UTC (rev 2593)
@@ -0,0 +1,154 @@
+<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.examples</groupId>
+      <artifactId>parent</artifactId>
+      <version>1.0.0.PREVIEW1</version>
+      <relativePath>../../pom.xml</relativePath>
+   </parent>
+   
+   <groupId>org.jboss.webbeans.examples</groupId>
+   <artifactId>webbeans-wicket-conversations</artifactId>
+   <packaging>war</packaging>
+   <name>Web Beans Examples: Conversations with Wicket</name>
+   
+   <pluginRepositories>
+        <pluginRepository>
+            <id>codehaus snapshot repository</id>
+            <url>http://snapshots.repository.codehaus.org/</url>
+            <releases>
+                <enabled>true</enabled>
+            </releases>
+        </pluginRepository>
+    </pluginRepositories>
+   
+   <dependencies>
+      
+      <dependency>
+         <groupId>org.jboss.webbeans</groupId>
+         <artifactId>jsr299-api</artifactId>
+         <scope>provided</scope>
+      </dependency>
+      
+      <dependency>
+         <groupId>org.jboss.webbeans</groupId>
+         <artifactId>webbeans-api</artifactId>
+         <scope>provided</scope>
+      </dependency>
+
+	  <dependency>
+	  	<groupId>org.jboss.webbeans</groupId>
+	  	<artifactId>webbeans-wicket</artifactId>
+	    <version>1.0.0.BETA1</version>
+	  </dependency>
+	  	
+		<dependency>
+			<groupId>org.apache.wicket</groupId>
+			<artifactId>wicket</artifactId>
+			<version>${wicket.version}</version>
+		</dependency>
+
+		<dependency>
+			<groupId>org.slf4j</groupId>
+			<artifactId>slf4j-log4j12</artifactId>
+			<version>1.4.2</version>
+		</dependency>
+		<dependency>
+			<groupId>log4j</groupId>
+			<artifactId>log4j</artifactId>
+			<version>1.2.14</version>
+		</dependency>
+
+
+		<!--  JETTY DEPENDENCIES FOR TESTING  -->
+
+		<dependency>
+			<groupId>org.mortbay.jetty</groupId>
+			<artifactId>jetty</artifactId>
+			<version>${jetty.version}</version>
+			<scope>provided</scope>
+		</dependency>
+
+	</dependencies>
+
+	<build>
+		<finalName>webbeans-conversations-wicket</finalName>
+		<resources>
+			<resource>
+				<filtering>false</filtering>
+				<directory>src/main/resources</directory>
+			</resource>
+			<resource>
+				<filtering>false</filtering>
+				<directory>src/main/java</directory>
+				<includes>
+					<include>**</include>
+				</includes>
+				<excludes>
+					<exclude>**/*.java</exclude>
+				</excludes>
+			</resource>
+		</resources>
+		<testResources>
+			<testResource>
+				<filtering>false</filtering>
+				<directory>src/test/java</directory>
+				<includes>
+					<include>**</include>
+				</includes>
+				<excludes>
+					<exclude>**/*.java</exclude>
+				</excludes>
+			</testResource>
+		</testResources>
+		<plugins>
+			<plugin>
+				<groupId>org.mortbay.jetty</groupId>
+				<artifactId>maven-jetty-plugin</artifactId>
+				<version>${jetty.version}</version>
+			</plugin>
+      <plugin> 
+        <artifactId>maven-eclipse-plugin</artifactId> 
+        <version>2.5.1</version> 
+      </plugin> 
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-war-plugin</artifactId>
+        <configuration>
+          <webResources>
+            <resource>
+              <directory>src/main/webapp/WEB-INF</directory>
+              <targetPath>WEB-INF</targetPath>
+              <includes>
+                <include>**/beans.xml</include>
+                <include>**/web.xml</include>
+              </includes>
+            </resource>
+          </webResources>
+        </configuration>
+      </plugin>
+		</plugins>
+	</build>
+
+	<properties>
+		<wicket.version>1.3.5.jboss1</wicket.version>
+		<jetty.version>6.1.16</jetty.version>
+	</properties>
+
+  <profiles>
+    <profile>
+      <id>jetty</id>
+      <dependencies>
+        <dependency>
+          <groupId>org.jboss.webbeans.servlet</groupId>
+          <artifactId>webbeans-servlet</artifactId>
+          <scope>runtime</scope>
+        </dependency>
+      </dependencies>
+    </profile>
+  </profiles>
+ 
+
+</project>

Deleted: examples/tags/1.0.0.PREVIEW1/wicket/numberguess/pom.xml
===================================================================
--- examples/trunk/wicket/numberguess/pom.xml	2009-04-20 12:24:10 UTC (rev 2589)
+++ examples/tags/1.0.0.PREVIEW1/wicket/numberguess/pom.xml	2009-04-20 12:37:45 UTC (rev 2593)
@@ -1,142 +0,0 @@
-<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.examples</groupId>
-      <artifactId>parent</artifactId>
-      <version>1.0.0-SNAPSHOT</version>
-   </parent>
-   
-   <groupId>org.jboss.webbeans.examples</groupId>
-   <artifactId>webbeans-wicket-numberguess</artifactId>
-   <packaging>war</packaging>
-   <name>Web Beans Examples: Numberguess with wicket</name>
-   
-   <dependencies>
-      
-      <dependency>
-         <groupId>org.jboss.webbeans</groupId>
-         <artifactId>jsr299-api</artifactId>
-         <scope>provided</scope>
-      </dependency>
-      
-	  <dependency>
-	  	  <groupId>org.jboss.webbeans</groupId>
-	  	  <artifactId>webbeans-wicket</artifactId>
-	  	  <!-- TODO Move to version matrix -->
-	     <version>1.0.0-SNAPSHOT</version>
-	  </dependency>
-	  	
-		<dependency>
-			<groupId>org.apache.wicket</groupId>
-			<artifactId>wicket</artifactId>
-			<!-- TODO Move to version matrix -->
-			<version>${wicket.version}</version>
-		</dependency>
-
-		<dependency>
-			<groupId>org.slf4j</groupId>
-			<artifactId>slf4j-log4j12</artifactId>
-			<!-- TODO Move to version matrix -->
-			<version>1.4.2</version>
-		</dependency>
-		
-		<dependency>
-			<groupId>log4j</groupId>
-			<artifactId>log4j</artifactId>
-			<!-- TODO Move to version matrix -->
-			<version>1.2.14</version>
-		</dependency>
-
-
-		<!--  JETTY DEPENDENCIES FOR TESTING  -->
-
-		<dependency>
-			<groupId>org.mortbay.jetty</groupId>
-			<artifactId>jetty</artifactId>
-			<!-- TODO Move to version matrix -->
-			<version>${jetty.version}</version>
-			<scope>provided</scope>
-		</dependency>
-
-	</dependencies>
-
-	<build>
-		<finalName>webbeans-numberguess-wicket</finalName>
-		<resources>
-			<resource>
-				<filtering>false</filtering>
-				<directory>src/main/resources</directory>
-			</resource>
-			<resource>
-				<filtering>false</filtering>
-				<directory>src/main/java</directory>
-				<includes>
-					<include>**</include>
-				</includes>
-				<excludes>
-					<exclude>**/*.java</exclude>
-				</excludes>
-			</resource>
-		</resources>
-		<testResources>
-			<testResource>
-				<filtering>false</filtering>
-				<directory>src/test/java</directory>
-				<includes>
-					<include>**</include>
-				</includes>
-				<excludes>
-					<exclude>**/*.java</exclude>
-				</excludes>
-			</testResource>
-		</testResources>
-		<plugins>
-			<plugin>
-				<groupId>org.mortbay.jetty</groupId>
-				<artifactId>maven-jetty-plugin</artifactId>
-				<!-- TODO Move to version matrix -->
-				<version>${jetty.version}</version>
-			</plugin>
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-war-plugin</artifactId>
-        <configuration>
-          <webResources>
-            <resource>
-              <directory>src/main/webapp/WEB-INF</directory>
-              <targetPath>WEB-INF</targetPath>
-              <includes>
-                <include>**/beans.xml</include>
-                <include>**/web.xml</include>
-              </includes>
-            </resource>
-          </webResources>
-        </configuration>
-      </plugin>
-		</plugins>
-	</build>
-
-	<properties>
-		<wicket.version>1.3.5.jboss1</wicket.version>
-		<jetty.version>6.1.16</jetty.version>
-	</properties>
-
-  <profiles>
-    <profile>
-      <id>jetty</id>
-      <dependencies>
-        <dependency>
-          <groupId>org.jboss.webbeans.servlet</groupId>
-          <artifactId>webbeans-servlet</artifactId>
-          <scope>runtime</scope>
-        </dependency>
-      </dependencies>
-    </profile>
-  </profiles>
-  
-
-</project>

Copied: examples/tags/1.0.0.PREVIEW1/wicket/numberguess/pom.xml (from rev 2592, examples/trunk/wicket/numberguess/pom.xml)
===================================================================
--- examples/tags/1.0.0.PREVIEW1/wicket/numberguess/pom.xml	                        (rev 0)
+++ examples/tags/1.0.0.PREVIEW1/wicket/numberguess/pom.xml	2009-04-20 12:37:45 UTC (rev 2593)
@@ -0,0 +1,141 @@
+<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.examples</groupId>
+      <artifactId>parent</artifactId>
+      <version>1.0.0.PREVIEW1</version>
+      <relativePath>../../pom.xml</relativePath>
+   </parent>
+   
+   <groupId>org.jboss.webbeans.examples</groupId>
+   <artifactId>webbeans-wicket-numberguess</artifactId>
+   <packaging>war</packaging>
+   <name>Web Beans Examples: Numberguess with wicket</name>
+   
+   <dependencies>
+      
+      <dependency>
+         <groupId>org.jboss.webbeans</groupId>
+         <artifactId>jsr299-api</artifactId>
+         <scope>provided</scope>
+      </dependency>
+      
+	  <dependency>
+	  	  <groupId>org.jboss.webbeans</groupId>
+	  	  <artifactId>webbeans-wicket</artifactId>
+	  	  <!-- TODO Move to version matrix -->
+	     <version>1.0.0.BETA1</version>
+	  </dependency>
+	  	
+		<dependency>
+			<groupId>org.apache.wicket</groupId>
+			<artifactId>wicket</artifactId>
+			<!-- TODO Move to version matrix -->
+			<version>${wicket.version}</version>
+		</dependency>
+
+		<dependency>
+			<groupId>org.slf4j</groupId>
+			<artifactId>slf4j-log4j12</artifactId>
+			<!-- TODO Move to version matrix -->
+			<version>1.4.2</version>
+		</dependency>
+		
+		<dependency>
+			<groupId>log4j</groupId>
+			<artifactId>log4j</artifactId>
+			<!-- TODO Move to version matrix -->
+			<version>1.2.14</version>
+		</dependency>
+
+
+		<!--  JETTY DEPENDENCIES FOR TESTING  -->
+
+		<dependency>
+			<groupId>org.mortbay.jetty</groupId>
+			<artifactId>jetty</artifactId>
+			<!-- TODO Move to version matrix -->
+			<version>${jetty.version}</version>
+			<scope>provided</scope>
+		</dependency>
+
+	</dependencies>
+
+	<build>
+		<finalName>webbeans-numberguess-wicket</finalName>
+		<resources>
+			<resource>
+				<filtering>false</filtering>
+				<directory>src/main/resources</directory>
+			</resource>
+			<resource>
+				<filtering>false</filtering>
+				<directory>src/main/java</directory>
+				<includes>
+					<include>**</include>
+				</includes>
+				<excludes>
+					<exclude>**/*.java</exclude>
+				</excludes>
+			</resource>
+		</resources>
+		<testResources>
+			<testResource>
+				<filtering>false</filtering>
+				<directory>src/test/java</directory>
+				<includes>
+					<include>**</include>
+				</includes>
+				<excludes>
+					<exclude>**/*.java</exclude>
+				</excludes>
+			</testResource>
+		</testResources>
+		<plugins>
+			<plugin>
+				<groupId>org.mortbay.jetty</groupId>
+				<artifactId>maven-jetty-plugin</artifactId>
+				<!-- TODO Move to version matrix -->
+				<version>${jetty.version}</version>
+			</plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-war-plugin</artifactId>
+        <configuration>
+          <webResources>
+            <resource>
+              <directory>src/main/webapp/WEB-INF</directory>
+              <targetPath>WEB-INF</targetPath>
+              <includes>
+                <include>**/beans.xml</include>
+                <include>**/web.xml</include>
+              </includes>
+            </resource>
+          </webResources>
+        </configuration>
+      </plugin>
+		</plugins>
+	</build>
+
+	<properties>
+		<wicket.version>1.3.5.jboss1</wicket.version>
+		<jetty.version>6.1.16</jetty.version>
+	</properties>
+
+  <profiles>
+    <profile>
+      <id>jetty</id>
+      <dependencies>
+        <dependency>
+          <groupId>org.jboss.webbeans.servlet</groupId>
+          <artifactId>webbeans-servlet</artifactId>
+          <scope>runtime</scope>
+        </dependency>
+      </dependencies>
+    </profile>
+  </profiles>
+  
+
+</project>




More information about the weld-commits mailing list