[webbeans-commits] Webbeans SVN: r3749 - examples/trunk/jsf/numberguess.

webbeans-commits at lists.jboss.org webbeans-commits at lists.jboss.org
Tue Sep 22 16:38:21 EDT 2009


Author: pete.muir at jboss.org
Date: 2009-09-22 16:38:20 -0400 (Tue, 22 Sep 2009)
New Revision: 3749

Removed:
   examples/trunk/jsf/numberguess/pom-jboss5.xml
Modified:
   examples/trunk/jsf/numberguess/build.xml
   examples/trunk/jsf/numberguess/pom.xml
Log:
remove facelets, fix build script

Modified: examples/trunk/jsf/numberguess/build.xml
===================================================================
--- examples/trunk/jsf/numberguess/build.xml	2009-09-22 20:32:40 UTC (rev 3748)
+++ examples/trunk/jsf/numberguess/build.xml	2009-09-22 20:38:20 UTC (rev 3749)
@@ -1,7 +1,6 @@
 <project basedir="." name="Numberguess Example Build" default="restart">
 	
 	<property name="example.name" value="webbeans-numberguess" />
-	<property name="pom.file" value="pom-jboss5.xml" />
 
 	<import file="../../build.xml" />
 	

Deleted: examples/trunk/jsf/numberguess/pom-jboss5.xml
===================================================================
--- examples/trunk/jsf/numberguess/pom-jboss5.xml	2009-09-22 20:32:40 UTC (rev 3748)
+++ examples/trunk/jsf/numberguess/pom-jboss5.xml	2009-09-22 20:38:20 UTC (rev 3749)
@@ -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>webbeans-examples-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 for JBoss AS 5.x</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>org.glassfish.web</groupId>
-         <artifactId>el-impl</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>
-

Modified: examples/trunk/jsf/numberguess/pom.xml
===================================================================
--- examples/trunk/jsf/numberguess/pom.xml	2009-09-22 20:32:40 UTC (rev 3748)
+++ examples/trunk/jsf/numberguess/pom.xml	2009-09-22 20:38:20 UTC (rev 3749)
@@ -44,23 +44,6 @@
       </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>org.glassfish.web</groupId>
          <artifactId>el-impl</artifactId>
          <exclusions>
@@ -70,6 +53,7 @@
             </exclusion>
          </exclusions>
       </dependency>
+      
       <dependency>
       	<groupId>javax.annotation</groupId>
       	<artifactId>jsr250-api</artifactId>




More information about the weld-commits mailing list