[jboss-cvs] Repository SVN: r29240 - in maven2/org/seleniumhq/selenium: client-drivers/selenium-client-drivers/1.0.1 and 6 other directories.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Oct 1 08:29:43 EDT 2009


Author: manaRH
Date: 2009-10-01 08:29:43 -0400 (Thu, 01 Oct 2009)
New Revision: 29240

Added:
   maven2/org/seleniumhq/selenium/client-drivers/selenium-client-drivers/1.0.1/
   maven2/org/seleniumhq/selenium/client-drivers/selenium-client-drivers/1.0.1/selenium-client-drivers-1.0.1.pom
   maven2/org/seleniumhq/selenium/client-drivers/selenium-client-drivers/1.0.1/selenium-client-drivers-1.0.1.pom.sha1
   maven2/org/seleniumhq/selenium/client-drivers/selenium-java-client-driver/1.0.1/
   maven2/org/seleniumhq/selenium/client-drivers/selenium-java-client-driver/1.0.1/selenium-java-client-driver-1.0.1.jar
   maven2/org/seleniumhq/selenium/client-drivers/selenium-java-client-driver/1.0.1/selenium-java-client-driver-1.0.1.jar.sha1
   maven2/org/seleniumhq/selenium/client-drivers/selenium-java-client-driver/1.0.1/selenium-java-client-driver-1.0.1.pom
   maven2/org/seleniumhq/selenium/client-drivers/selenium-java-client-driver/1.0.1/selenium-java-client-driver-1.0.1.pom.sha1
   maven2/org/seleniumhq/selenium/selenium-rc/1.0.1/
   maven2/org/seleniumhq/selenium/selenium-rc/1.0.1/selenium-rc-1.0.1.pom
   maven2/org/seleniumhq/selenium/selenium-rc/1.0.1/selenium-rc-1.0.1.pom.sha1
   maven2/org/seleniumhq/selenium/server/selenium-server/1.0.1/
   maven2/org/seleniumhq/selenium/server/selenium-server/1.0.1/selenium-server-1.0.1.jar
   maven2/org/seleniumhq/selenium/server/selenium-server/1.0.1/selenium-server-1.0.1.jar.sha1
   maven2/org/seleniumhq/selenium/server/selenium-server/1.0.1/selenium-server-1.0.1.pom
   maven2/org/seleniumhq/selenium/server/selenium-server/1.0.1/selenium-server-1.0.1.pom.sha1
Log:
added selenium libs 1.0.1 for Seam ftests

Added: maven2/org/seleniumhq/selenium/client-drivers/selenium-client-drivers/1.0.1/selenium-client-drivers-1.0.1.pom
===================================================================
--- maven2/org/seleniumhq/selenium/client-drivers/selenium-client-drivers/1.0.1/selenium-client-drivers-1.0.1.pom	                        (rev 0)
+++ maven2/org/seleniumhq/selenium/client-drivers/selenium-client-drivers/1.0.1/selenium-client-drivers-1.0.1.pom	2009-10-01 12:29:43 UTC (rev 29240)
@@ -0,0 +1,141 @@
+<?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.seleniumhq.selenium</groupId>
+        <version>1.0.1</version>
+        <artifactId>selenium-rc</artifactId>
+    </parent>
+    <groupId>org.seleniumhq.selenium.client-drivers</groupId>
+    <artifactId>selenium-client-drivers</artifactId>
+    <packaging>pom</packaging>
+    <name>Selenium RC Client Drivers</name>
+    <repositories>
+        <repository>
+            <id>openqa-releases</id>
+            <name>OpenQA Releases</name>
+            <url>http://nexus.openqa.org/content/repositories/releases</url>
+            <releases>
+                <enabled>true</enabled>
+            </releases>
+            <snapshots>
+                <enabled>false</enabled>
+            </snapshots>
+        </repository>
+        <repository>
+            <id>openqa-snapshots</id>
+            <name>OpenQA Snapshots</name>
+            <url>http://nexus.openqa.org/content/repositories/snapshots</url>
+            <releases>
+                <enabled>false</enabled>
+            </releases>
+            <snapshots>
+                <enabled>true</enabled>
+            </snapshots>
+        </repository>
+        <repository>
+            <id>openqa-thirdparty</id>
+            <name>OpenQA Third Party</name>
+            <url>http://nexus.openqa.org/content/repositories/thirdparty</url>
+            <releases>
+                <enabled>true</enabled>
+            </releases>
+            <snapshots>
+                <enabled>false</enabled>
+            </snapshots>
+        </repository>
+    </repositories>
+    <modules>
+        <module>java</module>
+        <module>testng</module>
+  </modules>
+    <build>
+        <plugins>
+            <plugin>
+                <artifactId>maven-antrun-plugin</artifactId>
+                <version>1.3</version>
+                <executions>
+                    <execution>
+                        <id>copy-sources</id>
+                        <phase>generate-sources</phase>
+                        <configuration>
+                            <tasks>
+                                <!-- spit out iedoc.xml such that the clients can access it at ../target/iedoc.xml -->
+                                <mkdir dir="${basedir}/target"/>
+                                <property name="output.path" location="${basedir}/target"/>
+
+                                <whichresource resource="/core/iedoc.xml" property="iedoc.url" classpath="${maven.dependency.org.seleniumhq.selenium.server.selenium-server.standalone.jar.path}"/>
+                                <fail unless="iedoc.url" message="Couldn't find iedoc.xml in the classpath: ${maven.dependency.org.seleniumhq.selenium.server.selenium-server.standalone.jar.path}"/>
+
+                                <get src="${iedoc.url}" dest="${output.path}/iedoc.xml"/>
+                                <property name="iedoc.xml" location="${output.path}/iedoc.xml"/>
+                            </tasks>
+                        </configuration>
+                        <goals>
+                            <goal>run</goal>
+                        </goals>
+                    </execution>
+                </executions>
+                <dependencies>
+                    <dependency>
+                        <groupId>org.apache.ant</groupId>
+                        <artifactId>ant-nodeps</artifactId>
+                        <version>1.7.1</version>
+                    </dependency>
+                    <dependency>
+                        <groupId>org.apache.ant</groupId>
+                        <artifactId>ant-trax</artifactId>
+                        <version>1.7.1</version>
+                    </dependency>
+                </dependencies>
+            </plugin>
+        </plugins>
+    </build>
+    <profiles>
+        <profile>
+            <id>dotnet</id>
+            <modules>
+                <module>dotnet</module>
+            </modules>
+        </profile>
+        <profile>
+            <id>perl</id>
+            <modules>
+                <module>perl</module>
+            </modules>
+        </profile>
+        <profile>
+            <id>php</id>
+            <modules>
+                <module>php</module>
+            </modules>
+        </profile>
+        <profile>
+            <id>python</id>
+            <modules>
+                <module>python</module>
+            </modules>
+        </profile>
+        <profile>
+            <id>ruby</id>
+            <modules>
+                <module>ruby</module>
+            </modules>
+        </profile>
+    </profiles>
+    <dependencies>
+        <dependency>
+		    <groupId>org.seleniumhq.selenium.core</groupId>
+		    <artifactId>selenium-core</artifactId>
+		    <scope>provided</scope>        
+        </dependency>
+        <dependency>
+	        <!-- this is used by the maven-antrun-plugin above -->
+		    <groupId>org.seleniumhq.selenium.server</groupId>
+		    <artifactId>selenium-server</artifactId>
+		    <classifier>standalone</classifier>
+		    <version>${project.version}</version>
+		    <scope>provided</scope>        
+        </dependency>
+    </dependencies>
+</project>
\ No newline at end of file

Added: maven2/org/seleniumhq/selenium/client-drivers/selenium-client-drivers/1.0.1/selenium-client-drivers-1.0.1.pom.sha1
===================================================================
--- maven2/org/seleniumhq/selenium/client-drivers/selenium-client-drivers/1.0.1/selenium-client-drivers-1.0.1.pom.sha1	                        (rev 0)
+++ maven2/org/seleniumhq/selenium/client-drivers/selenium-client-drivers/1.0.1/selenium-client-drivers-1.0.1.pom.sha1	2009-10-01 12:29:43 UTC (rev 29240)
@@ -0,0 +1 @@
+5075aa33c51eb5d8cfcfcc7c7efc9651043a2b23
\ No newline at end of file

Added: maven2/org/seleniumhq/selenium/client-drivers/selenium-java-client-driver/1.0.1/selenium-java-client-driver-1.0.1.jar
===================================================================
(Binary files differ)


Property changes on: maven2/org/seleniumhq/selenium/client-drivers/selenium-java-client-driver/1.0.1/selenium-java-client-driver-1.0.1.jar
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: maven2/org/seleniumhq/selenium/client-drivers/selenium-java-client-driver/1.0.1/selenium-java-client-driver-1.0.1.jar.sha1
===================================================================
--- maven2/org/seleniumhq/selenium/client-drivers/selenium-java-client-driver/1.0.1/selenium-java-client-driver-1.0.1.jar.sha1	                        (rev 0)
+++ maven2/org/seleniumhq/selenium/client-drivers/selenium-java-client-driver/1.0.1/selenium-java-client-driver-1.0.1.jar.sha1	2009-10-01 12:29:43 UTC (rev 29240)
@@ -0,0 +1 @@
+63c095ee459275443288561750af13ad5e2190dd
\ No newline at end of file

Added: maven2/org/seleniumhq/selenium/client-drivers/selenium-java-client-driver/1.0.1/selenium-java-client-driver-1.0.1.pom
===================================================================
--- maven2/org/seleniumhq/selenium/client-drivers/selenium-java-client-driver/1.0.1/selenium-java-client-driver-1.0.1.pom	                        (rev 0)
+++ maven2/org/seleniumhq/selenium/client-drivers/selenium-java-client-driver/1.0.1/selenium-java-client-driver-1.0.1.pom	2009-10-01 12:29:43 UTC (rev 29240)
@@ -0,0 +1,110 @@
+<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.seleniumhq.selenium.client-drivers</groupId>
+        <version>1.0.1</version>
+        <artifactId>selenium-client-drivers</artifactId>
+    </parent>
+    <groupId>org.seleniumhq.selenium.client-drivers</groupId>
+    <artifactId>selenium-java-client-driver</artifactId>
+    <packaging>jar</packaging>
+    <name>Selenium RC Java Client Driver</name>
+    <repositories>
+        <repository>
+            <id>openqa-releases</id>
+            <name>OpenQA Releases</name>
+            <url>http://nexus.openqa.org/content/repositories/releases</url>
+            <releases>
+                <enabled>true</enabled>
+            </releases>
+            <snapshots>
+                <enabled>false</enabled>
+            </snapshots>
+        </repository>
+        <repository>
+            <id>openqa-snapshots</id>
+            <name>OpenQA Snapshots</name>
+            <url>http://nexus.openqa.org/content/repositories/snapshots</url>
+            <releases>
+                <enabled>false</enabled>
+            </releases>
+            <snapshots>
+                <enabled>true</enabled>
+            </snapshots>
+        </repository>
+        <repository>
+            <id>openqa-thirdparty</id>
+            <name>OpenQA Third Party</name>
+            <url>http://nexus.openqa.org/content/repositories/thirdparty</url>
+            <releases>
+                <enabled>true</enabled>
+            </releases>
+            <snapshots>
+                <enabled>false</enabled>
+            </snapshots>
+        </repository>
+    </repositories>
+    <build>
+        <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-surefire-plugin</artifactId>
+                <configuration>
+                    <includes>
+                        <include>**/*Test.java</include>
+                    </includes>
+                    <!-- DGF what was this doing here? it screws up Maven deploy
+                    <forkMode>never</forkMode>-->
+                    <useFile>false</useFile>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.codehaus.groovy.maven</groupId>
+                <artifactId>gmaven-plugin</artifactId>
+                <version>1.0-rc-3</version>
+                <executions>
+                    <execution>
+                        <goals>
+                            <goal>compile</goal>
+                            <goal>testCompile</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
+    <dependencies>
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.codehaus.groovy.maven.runtime</groupId>
+            <artifactId>gmaven-runtime-default</artifactId>
+            <version>1.0-rc-3</version>
+            <scope>provided</scope>
+        </dependency>
+      <dependency>
+          <groupId>org.easymock</groupId>
+          <artifactId>easymock</artifactId>
+          <version>2.4</version>
+          <scope>test</scope>
+      </dependency>
+      <dependency>
+          <groupId>org.easymock</groupId>
+          <artifactId>easymockclassextension</artifactId>
+          <version>2.4</version>
+          <scope>test</scope>
+      </dependency>      
+    </dependencies>
+</project>

Added: maven2/org/seleniumhq/selenium/client-drivers/selenium-java-client-driver/1.0.1/selenium-java-client-driver-1.0.1.pom.sha1
===================================================================
--- maven2/org/seleniumhq/selenium/client-drivers/selenium-java-client-driver/1.0.1/selenium-java-client-driver-1.0.1.pom.sha1	                        (rev 0)
+++ maven2/org/seleniumhq/selenium/client-drivers/selenium-java-client-driver/1.0.1/selenium-java-client-driver-1.0.1.pom.sha1	2009-10-01 12:29:43 UTC (rev 29240)
@@ -0,0 +1 @@
+db39e95489823672c7253514d3e1c85c1b8fe194
\ No newline at end of file

Added: maven2/org/seleniumhq/selenium/selenium-rc/1.0.1/selenium-rc-1.0.1.pom
===================================================================
--- maven2/org/seleniumhq/selenium/selenium-rc/1.0.1/selenium-rc-1.0.1.pom	                        (rev 0)
+++ maven2/org/seleniumhq/selenium/selenium-rc/1.0.1/selenium-rc-1.0.1.pom	2009-10-01 12:29:43 UTC (rev 29240)
@@ -0,0 +1,312 @@
+<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.seleniumhq.selenium</groupId>
+	<version>1.0.1</version>
+	<artifactId>selenium-rc</artifactId>
+	<name>Selenium RC</name>
+	<packaging>pom</packaging>
+	<url>http://selenium.seleniumhq.org/projects/remote-control</url>
+	<modules>
+		<module>server-coreless</module>
+		<module>selenium-server</module>
+		<module>clients</module>
+		<module>xlator</module>
+	</modules>
+	<repositories>
+		<repository>
+			<id>openqa-releases</id>
+			<name>OpenQA Releases</name>
+			<url>http://nexus.openqa.org/content/repositories/releases</url>
+			<releases>
+				<enabled>true</enabled>
+			</releases>
+			<snapshots>
+				<enabled>false</enabled>
+			</snapshots>
+		</repository>
+		<repository>
+			<id>openqa-snapshots</id>
+			<name>OpenQA Snapshots</name>
+			<url>http://nexus.openqa.org/content/repositories/snapshots</url>
+			<releases>
+				<enabled>false</enabled>
+			</releases>
+			<snapshots>
+				<enabled>true</enabled>
+			</snapshots>
+		</repository>
+		<repository>
+			<id>openqa-thirdparty</id>
+			<name>OpenQA Third Party</name>
+			<url>http://nexus.openqa.org/content/repositories/thirdparty</url>
+			<releases>
+				<enabled>true</enabled>
+			</releases>
+			<snapshots>
+				<enabled>false</enabled>
+			</snapshots>
+		</repository>
+		<repository>
+			<id>apache.snapshots</id>
+			<name>Maven Snapshot Repository</name>
+			<url>http://people.apache.org/maven-snapshot-repository</url>
+			<snapshots>
+				<enabled>true</enabled>
+				<updatePolicy>daily</updatePolicy>
+			</snapshots>
+			<releases>
+				<enabled>false</enabled>
+				<updatePolicy>never</updatePolicy>
+			</releases>
+		</repository>
+		<repository>
+			<id>laughing-panda</id>
+			<name>Laughing Panda</name>
+			<url>http://www.laughingpanda.org/maven2/</url>
+		</repository>
+	</repositories>
+	<pluginRepositories>
+		<pluginRepository>
+			<id>snapshots</id>
+			<name>Maven Plugin Snapshot Repository</name>
+			<url>http://people.apache.org/maven-snapshot-repository</url>
+			<layout>default</layout>
+			<snapshots>
+				<enabled>true</enabled>
+				<updatePolicy>daily</updatePolicy>
+			</snapshots>
+			<releases>
+				<enabled>false</enabled>
+				<updatePolicy>never</updatePolicy>
+			</releases>
+		</pluginRepository>
+	</pluginRepositories>
+	<distributionManagement>
+		<repository>
+			<id>openqa-releases</id>
+			<url>http://nexus.openqa.org/content/repositories/releases</url>
+		</repository>
+		<snapshotRepository>
+			<id>openqa-snapshots</id>
+			<url>http://nexus.openqa.org/content/repositories/snapshots</url>
+		</snapshotRepository>
+	</distributionManagement>
+	<scm>
+		<connection>scm:svn:http://svn.openqa.org/svn/selenium-rc/trunk</connection>
+		<developerConnection>scm:svn:https://svn.openqa.org/svn/selenium-rc/trunk</developerConnection>
+		<url>http://svn.openqa.org/svn/selenium-rc/trunk</url>
+	</scm>
+	<build>
+		<plugins>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-idea-plugin</artifactId>
+				<configuration>
+					<jdkName>1.5</jdkName>
+					<downloadSources>true</downloadSources>
+					<linkModules>true</linkModules>
+				</configuration>
+			</plugin>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-compiler-plugin</artifactId>
+				<configuration>
+					<source>1.5</source>
+					<target>1.5</target>
+				</configuration>
+			</plugin>
+			<plugin>
+				<artifactId>maven-surefire-plugin</artifactId>
+				<version>2.4.3</version>
+			</plugin>
+		</plugins>
+		<pluginManagement>
+			<plugins>
+				<plugin>
+					<artifactId>maven-release-plugin</artifactId>
+					<version>2.0-beta-9</version>
+					<configuration>
+						<preparationGoals>clean install</preparationGoals>
+					</configuration>
+				</plugin>
+				<plugin>
+					<groupId>org.codehaus.mojo</groupId>
+					<artifactId>exec-maven-plugin</artifactId>
+					<version>1.1.1</version>
+					<configuration>
+						<executable>java</executable>
+						<classpathScope>test</classpathScope>
+						<commandlineArgs>-cp $classpath org.infinitest.Infinitest</commandlineArgs>
+					</configuration>
+				</plugin>
+			</plugins>
+		</pluginManagement>
+	</build>
+	<profiles>
+		<profile>
+			<id>core</id>
+			<properties>
+				<corePath>../selenium-core</corePath>
+			</properties>
+			<modules>
+				<module>${corePath}</module>
+			</modules>
+		</profile>
+		<profile>
+			<id>dist</id>
+			<modules>
+				<module>documentation</module>
+				<module>distrib</module>
+			</modules>
+			<build>
+				<plugins>
+					<plugin>
+						<inherited>true</inherited>
+						<groupId>org.apache.maven.plugins</groupId>
+						<artifactId>maven-javadoc-plugin</artifactId>
+						<executions>
+							<execution>
+								<id>attach-javadocs</id>
+								<goals>
+									<goal>jar</goal>
+								</goals>
+							</execution>
+						</executions>
+					</plugin>
+					<plugin>
+						<inherited>true</inherited>
+						<groupId>org.apache.maven.plugins</groupId>
+						<artifactId>maven-jar-plugin</artifactId>
+						<executions>
+							<execution>
+								<id>test-jar</id>
+								<goals>
+									<goal>test-jar</goal>
+								</goals>
+							</execution>
+						</executions>
+					</plugin>
+					<plugin>
+						<inherited>true</inherited>
+						<groupId>org.apache.maven.plugins</groupId>
+						<artifactId>maven-source-plugin</artifactId>
+						<executions>
+							<execution>
+								<id>attach-source</id>
+								<goals>
+									<goal>jar</goal>
+									<goal>test-jar</goal>
+								</goals>
+							</execution>
+						</executions>
+					</plugin>
+				</plugins>
+			</build>
+		</profile>
+	</profiles>
+	<dependencyManagement>
+		<dependencies>
+			<dependency>
+				<groupId>org.seleniumhq.selenium.server</groupId>
+				<artifactId>selenium-server-coreless</artifactId>
+				<version>${project.version}</version>
+			</dependency>
+			<dependency>
+				<groupId>org.seleniumhq.selenium.server</groupId>
+				<artifactId>selenium-server</artifactId>
+				<version>${project.version}</version>
+			</dependency>
+			<dependency>
+				<groupId>org.seleniumhq.selenium.client-drivers</groupId>
+				<artifactId>selenium-java-client-driver</artifactId>
+				<version>${project.version}</version>
+			</dependency>
+			<dependency>
+				<groupId>org.seleniumhq.selenium.core</groupId>
+				<artifactId>selenium-core</artifactId>
+				<version>1.0.1</version>
+			</dependency>
+			<dependency>
+				<groupId>org.seleniumhq.selenium.ide</groupId>
+				<artifactId>selenium-ide</artifactId>
+				<version>1.0.1</version>
+			</dependency>
+			<dependency>
+				<groupId>org.testng</groupId>
+				<artifactId>testng</artifactId>
+				<classifier>jdk15</classifier>
+				<version>5.8</version>
+			</dependency>
+			<dependency>
+				<groupId>org.apache.ant</groupId>
+				<artifactId>ant</artifactId>
+				<version>1.7.1</version>
+			</dependency>
+			<dependency>
+				<groupId>jetty</groupId>
+				<artifactId>org.mortbay.jetty</artifactId>
+				<version>5.1.12</version>
+			</dependency>
+			<dependency>
+				<groupId>commons-logging</groupId>
+				<artifactId>commons-logging</artifactId>
+				<version>1.0.4</version>
+			</dependency>
+			<dependency>
+				<groupId>javax.servlet</groupId>
+				<artifactId>servlet-api</artifactId>
+				<version>2.4</version>
+			</dependency>
+			<dependency>
+				<groupId>rhino</groupId>
+				<artifactId>js</artifactId>
+				<version>1.7R1</version>
+			</dependency>
+			<dependency>
+				<groupId>junit</groupId>
+				<artifactId>junit</artifactId>
+				<version>4.4</version>
+			</dependency>
+			<dependency>
+				<groupId>bouncycastle</groupId>
+				<artifactId>bcprov-jdk15</artifactId>
+				<version>135</version>
+			</dependency>
+			<dependency>
+				<groupId>org.easymock</groupId>
+				<artifactId>easymock</artifactId>
+				<version>2.4</version>
+				<scope>test</scope>
+			</dependency>
+			<dependency>
+				<groupId>org.easymock</groupId>
+				<artifactId>easymockclassextension</artifactId>
+				<version>2.4</version>
+				<scope>test</scope>
+			</dependency>
+		</dependencies>
+	</dependencyManagement>
+	<reporting>
+		<plugins>
+			<plugin>
+				<groupId>org.codehaus.mojo</groupId>
+				<artifactId>findbugs-maven-plugin</artifactId>
+			</plugin>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-jxr-plugin</artifactId>
+			</plugin>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-pmd-plugin</artifactId>
+				<configuration>
+					<rulesets>
+					</rulesets>
+					<sourceEncoding>utf-8</sourceEncoding>
+					<targetJdk>1.5</targetJdk>
+				</configuration>
+			</plugin>
+		</plugins>
+	</reporting>
+</project>

Added: maven2/org/seleniumhq/selenium/selenium-rc/1.0.1/selenium-rc-1.0.1.pom.sha1
===================================================================
--- maven2/org/seleniumhq/selenium/selenium-rc/1.0.1/selenium-rc-1.0.1.pom.sha1	                        (rev 0)
+++ maven2/org/seleniumhq/selenium/selenium-rc/1.0.1/selenium-rc-1.0.1.pom.sha1	2009-10-01 12:29:43 UTC (rev 29240)
@@ -0,0 +1 @@
+d504e91742ab68a9eb6d8af589fc277d32b0000e
\ No newline at end of file

Added: maven2/org/seleniumhq/selenium/server/selenium-server/1.0.1/selenium-server-1.0.1.jar
===================================================================
(Binary files differ)


Property changes on: maven2/org/seleniumhq/selenium/server/selenium-server/1.0.1/selenium-server-1.0.1.jar
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: maven2/org/seleniumhq/selenium/server/selenium-server/1.0.1/selenium-server-1.0.1.jar.sha1
===================================================================
--- maven2/org/seleniumhq/selenium/server/selenium-server/1.0.1/selenium-server-1.0.1.jar.sha1	                        (rev 0)
+++ maven2/org/seleniumhq/selenium/server/selenium-server/1.0.1/selenium-server-1.0.1.jar.sha1	2009-10-01 12:29:43 UTC (rev 29240)
@@ -0,0 +1 @@
+99ca525d071e5e74a816de7da1fb734a8a6175cf
\ No newline at end of file

Added: maven2/org/seleniumhq/selenium/server/selenium-server/1.0.1/selenium-server-1.0.1.pom
===================================================================
--- maven2/org/seleniumhq/selenium/server/selenium-server/1.0.1/selenium-server-1.0.1.pom	                        (rev 0)
+++ maven2/org/seleniumhq/selenium/server/selenium-server/1.0.1/selenium-server-1.0.1.pom	2009-10-01 12:29:43 UTC (rev 29240)
@@ -0,0 +1,163 @@
+<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.seleniumhq.selenium</groupId>
+        <version>1.0.1</version>
+        <artifactId>selenium-rc</artifactId>
+    </parent>
+    <groupId>org.seleniumhq.selenium.server</groupId>
+    <artifactId>selenium-server</artifactId>
+    <packaging>jar</packaging>
+    <name>Selenium RC Server</name>
+    <repositories>
+        <repository>
+            <id>openqa-releases</id>
+            <name>OpenQA Releases</name>
+            <url>http://nexus.openqa.org/content/repositories/releases</url>
+            <releases>
+                <enabled>true</enabled>
+            </releases>
+            <snapshots>
+                <enabled>false</enabled>
+            </snapshots>
+        </repository>
+        <repository>
+            <id>openqa-snapshots</id>
+            <name>OpenQA Snapshots</name>
+            <url>http://nexus.openqa.org/content/repositories/snapshots</url>
+            <releases>
+                <enabled>false</enabled>
+            </releases>
+            <snapshots>
+                <enabled>true</enabled>
+            </snapshots>
+        </repository>
+        <repository>
+            <id>openqa-thirdparty</id>
+            <name>OpenQA Third Party</name>
+            <url>http://nexus.openqa.org/content/repositories/thirdparty</url>
+            <releases>
+                <enabled>true</enabled>
+            </releases>
+            <snapshots>
+                <enabled>false</enabled>
+            </snapshots>
+        </repository>
+    </repositories>
+    <build>
+        <plugins>
+            <plugin>
+                <artifactId>maven-assembly-plugin</artifactId>
+                <version>2.2-beta-2</version>
+                <configuration>
+                    <descriptor>src/main/assembly/dep.xml</descriptor>
+                    <archive>
+                        <manifest>
+                            <mainClass>org.openqa.selenium.server.SeleniumServer</mainClass>
+                        </manifest>
+                    </archive>
+                </configuration>
+                <executions>
+                    <execution>
+                        <phase>package</phase>
+                        <goals>
+                            <goal>single</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
+                <artifactId>maven-antrun-plugin</artifactId>
+                <version>1.3</version>
+                <executions>
+                    <execution>
+                        <id>compile</id>
+                        <phase>compile</phase>
+                        <configuration>
+                            <tasks>
+                                <exec executable="svnversion" outputProperty="svn-revision" failOnError="true">
+                             	    <arg value="."/>
+                             	  </exec>                                
+                                <unzip src="${maven.dependency.org.seleniumhq.selenium.core.selenium-core.jar.path}" dest="target/classes">
+                                    <patternset>
+                                        <include name="VERSION.txt"/>
+                                    </patternset>
+                                </unzip>
+                                
+                                <propertyfile file="target/classes/VERSION.txt">
+                                    <entry key="selenium.rc.version" value="${project.version}" />
+                                    <entry key="selenium.rc.revision" value="${svn-revision}" />
+                                </propertyfile>
+                                <property file="target/classes/VERSION.txt" />
+                                
+                                <copy todir="target/classes" overwrite="true">
+                                    <fileset dir="src/main/resources">
+                                        <include name="core/scripts/selenium-version.js"/>
+                                    </fileset>
+                                    <filterset>
+                                        <filter token="COREVERSION" value="${selenium.core.version}"/>
+                                        <filter token="COREREVISION" value="${selenium.core.revision}"/>
+                                        <filter token="RCVERSION" value="${project.version}"/>
+                                        <filter token="RCREVISION" value="${svn-revision}"/>
+                                    </filterset>
+                                </copy>
+                            </tasks>
+                        </configuration>
+                        <goals>
+                            <goal>run</goal>
+                        </goals>
+                    </execution>
+                    <execution>
+	                    <id>fixup-bouncy-castle</id>
+                        <phase>verify</phase>
+                        <goals>
+                            <goal>run</goal>
+                        </goals>
+                        <configuration>
+                            <tasks>
+								<!-- we do the following after the assembly plugin because we can't 
+								     let the bouncy castle signature entries get dumped in to the 
+								     main jar w/o re-signing the jar, which we don't want to do. 
+								     so this simple trick removes the two files that tip java off
+								     to any sort of security in the first place, which is fine with us.-->
+								<move file="target/selenium-server-${project.version}-standalone.jar" 
+									  tofile="target/selenium-server-${project.version}-standalone.bak"/>
+								<jar destfile="target/selenium-server-${project.version}-standalone.jar">
+									<zipfileset src="target/selenium-server-${project.version}-standalone.bak" 
+										        excludes="META-INF/BCKEY.DSA,META-INF/BCKEY.SF"/>
+									<manifest>
+								      <attribute name="Main-Class" value="org.openqa.selenium.server.SeleniumServer"/>
+								    </manifest>
+								</jar>
+								<delete file="target/selenium-server-${project.version}-standalone.bak"/>
+                            </tasks>
+                        </configuration>
+                    </execution>
+                </executions>
+                <dependencies>
+                    <dependency>
+                        <groupId>org.apache.ant</groupId>
+                        <artifactId>ant-nodeps</artifactId>
+                        <version>1.7.1</version>
+                    </dependency>
+                    <dependency>
+                        <groupId>org.apache.ant</groupId>
+                        <artifactId>ant-trax</artifactId>
+                        <version>1.7.1</version>
+                    </dependency>
+                </dependencies>
+            </plugin>
+        </plugins>
+    </build>
+    <dependencies>
+        <dependency>
+            <groupId>org.seleniumhq.selenium.server</groupId>
+            <artifactId>selenium-server-coreless</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.seleniumhq.selenium.core</groupId>
+            <artifactId>selenium-core</artifactId>
+        </dependency>
+    </dependencies>
+</project>

Added: maven2/org/seleniumhq/selenium/server/selenium-server/1.0.1/selenium-server-1.0.1.pom.sha1
===================================================================
--- maven2/org/seleniumhq/selenium/server/selenium-server/1.0.1/selenium-server-1.0.1.pom.sha1	                        (rev 0)
+++ maven2/org/seleniumhq/selenium/server/selenium-server/1.0.1/selenium-server-1.0.1.pom.sha1	2009-10-01 12:29:43 UTC (rev 29240)
@@ -0,0 +1 @@
+db4de182a516cc9bd645e9192faba2e5d90dd88f
\ No newline at end of file




More information about the jboss-cvs-commits mailing list