[weld-commits] Weld SVN: r5325 - in examples/trunk/jsf/login: src and 2 other directories.

weld-commits at lists.jboss.org weld-commits at lists.jboss.org
Thu Dec 17 10:06:27 EST 2009


Author: kpiwko at redhat.com
Date: 2009-12-17 10:06:27 -0500 (Thu, 17 Dec 2009)
New Revision: 5325

Added:
   examples/trunk/jsf/login/src/test/
   examples/trunk/jsf/login/src/test/selenium/
   examples/trunk/jsf/login/src/test/selenium/jboss5x.xml
Modified:
   examples/trunk/jsf/login/pom.xml
Log:
WELD-343

Modified: examples/trunk/jsf/login/pom.xml
===================================================================
--- examples/trunk/jsf/login/pom.xml	2009-12-17 15:05:48 UTC (rev 5324)
+++ examples/trunk/jsf/login/pom.xml	2009-12-17 15:06:27 UTC (rev 5325)
@@ -1,29 +1,30 @@
 <?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">
+<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.weld.examples</groupId>
       <artifactId>weld-examples-parent</artifactId>
       <version>1.0.0-SNAPSHOT</version>
       <relativePath>../../pom.xml</relativePath>
    </parent>
-   
+
    <groupId>org.jboss.weld.examples.jsf</groupId>
    <artifactId>weld-jsf-login</artifactId>
    <packaging>war</packaging>
    <name>Weld Examples: Login</name>
-   
+
    <pluginRepositories>
-        <pluginRepository>
-            <id>codehaus snapshot repository</id>
-            <url>http://snapshots.repository.codehaus.org/</url>
-            <releases>
-                <enabled>true</enabled>
-            </releases>
-        </pluginRepository>
-    </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>
@@ -31,30 +32,26 @@
          <scope>test</scope>
          <classifier>jdk15</classifier>
       </dependency>
-      
+
       <dependency>
          <groupId>javax.enterprise</groupId>
          <artifactId>cdi-api</artifactId>
          <scope>provided</scope>
       </dependency>
-      
+
       <dependency>
          <groupId>javax.faces</groupId>
          <artifactId>jsf-api</artifactId>
          <scope>provided</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.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>
@@ -65,12 +62,88 @@
             </exclusion>
          </exclusions>
       </dependency>
-      
+
    </dependencies>
-   
+
    <build>
       <finalName>weld-login</finalName>
    </build>
-   
+
+   <profiles>
+      <profile>
+         <id>ftest-jboss-remote-51</id>
+         <activation>
+            <activeByDefault>false</activeByDefault>
+         </activation>
+
+         <properties>
+            <ftest.version>0.1${ftest.version.discriminator}</ftest.version>
+         </properties>
+
+         <dependencies>
+            <dependency>
+               <groupId>org.jboss.weld.examples.ftest</groupId>
+               <artifactId>ftest-login</artifactId>
+               <version>${ftest.version}</version>
+               <scope>test</scope>
+            </dependency>
+         </dependencies>
+
+         <build>
+            <plugins>
+               <plugin>
+                  <groupId>org.codehaus.cargo</groupId>
+                  <artifactId>cargo-maven2-plugin</artifactId>
+               </plugin>
+               <plugin>
+                  <groupId>org.codehaus.mojo</groupId>
+                  <artifactId>selenium-maven-plugin</artifactId>
+               </plugin>
+               <plugin>
+                  <groupId>org.apache.maven.plugins</groupId>
+                  <artifactId>maven-antrun-plugin</artifactId>
+               </plugin>
+            </plugins>
+         </build>
+      </profile>
+      <profile>
+         <id>ftest-jboss-remote-60</id>
+         <activation>
+            <activeByDefault>false</activeByDefault>
+         </activation>
+
+         <properties>
+            <ftest.version>0.1${ftest.version.discriminator}</ftest.version>
+         </properties>
+
+         <dependencies>
+            <dependency>
+               <groupId>org.jboss.weld.examples.ftest</groupId>
+               <artifactId>ftest-login</artifactId>
+               <version>${ftest.version}</version>
+               <scope>test</scope>
+            </dependency>
+         </dependencies>
+
+         <build>
+            <plugins>
+               <plugin>
+                  <groupId>org.codehaus.cargo</groupId>
+                  <artifactId>cargo-maven2-plugin</artifactId>
+               </plugin>
+               <plugin>
+                  <groupId>org.codehaus.mojo</groupId>
+                  <artifactId>selenium-maven-plugin</artifactId>
+               </plugin>
+               <plugin>
+                  <groupId>org.apache.maven.plugins</groupId>
+                  <artifactId>maven-antrun-plugin</artifactId>
+               </plugin>
+            </plugins>
+         </build>
+      </profile>
+
+   </profiles>
+
 </project>
 

Added: examples/trunk/jsf/login/src/test/selenium/jboss5x.xml
===================================================================
--- examples/trunk/jsf/login/src/test/selenium/jboss5x.xml	                        (rev 0)
+++ examples/trunk/jsf/login/src/test/selenium/jboss5x.xml	2009-12-17 15:06:27 UTC (rev 5325)
@@ -0,0 +1,29 @@
+
+	<!--
+		JBoss, Home of Professional Open Source Copyright 2008, Red Hat
+		Middleware LLC, and individual contributors by the @authors tag. See
+		the copyright.txt in the distribution for a full listing of individual
+		contributors. This is free software; you can redistribute it and/or
+		modify it under the terms of the GNU Lesser General Public License as
+		published by the Free Software Foundation; either version 2.1 of the
+		License, or (at your option) any later version. This software is
+		distributed in the hope that it will be useful, but WITHOUT ANY
+		WARRANTY; without even the implied warranty of MERCHANTABILITY or
+		FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+		License for more details. You should have received a copy of the GNU
+		Lesser General Public License along with this software; if not, write
+		to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
+		Boston, MA 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+	--> 
+<!DOCTYPE suite SYSTEM "http://beust.com/testng/testng-1.0.dtd" >
+<suite name="Weld JSF Login example" verbose="2" parallel="false">
+    <listeners>
+		<listener class-name="org.jboss.weld.example.common.test.selenium.WeldFunctionalTestListener" />
+	</listeners>
+	<test name="login_jboss5x">
+		<parameter name="example.context.path" value="/weld-login" />
+		<packages>
+			<package name="org.jboss.weld.example.login.test.selenium" />
+		</packages>
+	</test>
+</suite>



More information about the weld-commits mailing list