You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by mf...@apache.org on 2010/04/28 23:25:36 UTC

svn commit: r939099 - in /myfaces/portlet-bridge/testsuite/trunk: client/ client/pom.xml tck-generate-test-wars.cmd tck-generate-wars.cmd tck-run-tests.cmd tck.cmd

Author: mfreedman
Date: Wed Apr 28 21:25:35 2010
New Revision: 939099

URL: http://svn.apache.org/viewvc?rev=939099&view=rev
Log:
Added missing client directory/pom.  Also modified names of scripts.

Added:
    myfaces/portlet-bridge/testsuite/trunk/client/
    myfaces/portlet-bridge/testsuite/trunk/client/pom.xml
    myfaces/portlet-bridge/testsuite/trunk/tck-generate-test-wars.cmd
      - copied unchanged from r938703, myfaces/portlet-bridge/testsuite/trunk/tck-generate-wars.cmd
    myfaces/portlet-bridge/testsuite/trunk/tck-run-tests.cmd
      - copied unchanged from r938703, myfaces/portlet-bridge/testsuite/trunk/tck.cmd
Removed:
    myfaces/portlet-bridge/testsuite/trunk/tck-generate-wars.cmd
    myfaces/portlet-bridge/testsuite/trunk/tck.cmd

Added: myfaces/portlet-bridge/testsuite/trunk/client/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/portlet-bridge/testsuite/trunk/client/pom.xml?rev=939099&view=auto
==============================================================================
--- myfaces/portlet-bridge/testsuite/trunk/client/pom.xml (added)
+++ myfaces/portlet-bridge/testsuite/trunk/client/pom.xml Wed Apr 28 21:25:35 2010
@@ -0,0 +1,172 @@
+<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>
+  
+  <groupId>org.apache.myfaces.portlet-bridge</groupId>
+  <artifactId>portlet-bridge-testsuite-client</artifactId>
+  <packaging>jar</packaging>
+  <name>MyFaces Portlet Bridge Test Suite Client</name>
+  <version>1.0.0-SNAPSHOT</version>	 
+  <inceptionYear>2007</inceptionYear>  
+  <description>
+  
+  </description>
+  
+  <parent>
+    <artifactId>portlet-bridge-testsuite-master</artifactId>
+    <groupId>org.apache.myfaces.portlet-bridge</groupId>
+    <version>1.0.0-SNAPSHOT</version>
+  </parent>
+  
+  <build>
+    <plugins>      
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>build-helper-maven-plugin</artifactId>
+        <version>1.3</version>
+        <executions>
+          <execution>
+            <id>add-tck-source</id>
+            <phase>generate-sources</phase>
+            <goals>
+              <goal>add-test-source</goal>
+            </goals>
+            <configuration>
+              <sources>
+                <source>${basedir}/../src/test/java</source>
+              </sources>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+      <plugin>
+        <artifactId>maven-antrun-plugin</artifactId>
+        <executions>
+          <execution>
+            <phase>test</phase>
+            <configuration>
+              <tasks>
+                <delete dir="../target/site"/>
+              </tasks>
+            </configuration>
+            <goals>
+              <goal>run</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+    
+    <pluginManagement>
+      <plugins>
+        <plugin>
+          <groupId>org.codehaus.mojo</groupId>
+          <artifactId>selenium-maven-plugin</artifactId>
+        </plugin>
+
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-surefire-report-plugin</artifactId>
+          <configuration>
+            <outputName>${artifactId}-report</outputName>
+            <outputDirectory>../target</outputDirectory>
+          </configuration>
+        </plugin>
+
+        <plugin>
+          <groupId>org.codehaus.mojo</groupId>
+          <artifactId>selenium-maven-plugin</artifactId>
+          <executions>
+            <execution>
+              <id>start</id>
+              <phase>process-test-classes</phase>
+              <goals>
+                <goal>start-server</goal>
+              </goals>
+              <configuration>
+                <background>true</background>
+                <logOutput>true</logOutput>
+                <multiWindow>true</multiWindow>
+              </configuration>
+            </execution>
+          </executions>
+        </plugin>
+      </plugins>
+    </pluginManagement>
+  </build>
+</project>
+<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>
+  
+  <groupId>org.apache.myfaces.portlet-bridge</groupId>
+  <artifactId>portlet-bridge-testsuite-client</artifactId>
+  <packaging>jar</packaging>
+  <name>MyFaces Portlet Bridge Test Suite Client</name>
+  <version>1.0.0-SNAPSHOT</version>	 
+  <inceptionYear>2007</inceptionYear>  
+  <description>
+  
+  </description>
+  
+  <parent>
+    <artifactId>portlet-bridge-testsuite-master</artifactId>
+    <groupId>org.apache.myfaces.portlet-bridge</groupId>
+    <version>1.0.0-SNAPSHOT</version>
+  </parent>
+  
+  <build>
+    <plugins>      
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>build-helper-maven-plugin</artifactId>
+        <version>1.3</version>
+        <executions>
+          <execution>
+            <id>add-tck-source</id>
+            <phase>generate-sources</phase>
+            <goals>
+              <goal>add-test-source</goal>
+            </goals>
+            <configuration>
+              <sources>
+                <source>${basedir}/../src/test/java</source>
+              </sources>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+    
+    <pluginManagement>
+      <plugins>
+        <plugin>
+          <groupId>org.codehaus.mojo</groupId>
+          <artifactId>selenium-maven-plugin</artifactId>
+        </plugin>
+
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-surefire-report-plugin</artifactId>
+        </plugin>
+
+        <plugin>
+          <groupId>org.codehaus.mojo</groupId>
+          <artifactId>selenium-maven-plugin</artifactId>
+          <executions>
+            <execution>
+              <id>start</id>
+              <phase>process-test-classes</phase>
+              <goals>
+                <goal>start-server</goal>
+              </goals>
+              <configuration>
+                <background>true</background>
+                <logOutput>true</logOutput>
+                <multiWindow>true</multiWindow>
+              </configuration>
+            </execution>
+          </executions>
+        </plugin>
+      </plugins>
+    </pluginManagement>
+  </build>
+</project>