Skip to content

Commit 42690d0

Browse files
committed
missed a leg-rc maven reference
1 parent 2552f73 commit 42690d0

File tree

2 files changed

+103
-5
lines changed

2 files changed

+103
-5
lines changed

maven/java/pom.xml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,6 @@
4242
<artifactId>selenium-support</artifactId>
4343
<version>${project.version}</version>
4444
</dependency>
45-
<dependency>
46-
<groupId>org.seleniumhq.selenium</groupId>
47-
<artifactId>selenium-leg-rc</artifactId>
48-
<version>${project.version}</version>
49-
</dependency>
5045
</dependencies>
5146

5247
<build>

maven/java/pom.xml.versionsBackup

Lines changed: 103 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,103 @@
1+
<?xml version="1.0" encoding="Windows-1252"?>
2+
<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">
3+
4+
<modelVersion>4.0.0</modelVersion>
5+
6+
<parent>
7+
<groupId>org.seleniumhq.selenium</groupId>
8+
<artifactId>selenium-parent</artifactId>
9+
<version>2.0-SNAPSHOT</version>
10+
</parent>
11+
<artifactId>selenium-java</artifactId>
12+
<name>selenium-java</name>
13+
14+
<dependencies>
15+
<dependency>
16+
<groupId>org.seleniumhq.selenium</groupId>
17+
<artifactId>selenium-chrome-driver</artifactId>
18+
<version>${project.version}</version>
19+
</dependency>
20+
<dependency>
21+
<groupId>org.seleniumhq.selenium</groupId>
22+
<artifactId>selenium-edge-driver</artifactId>
23+
<version>${project.version}</version>
24+
</dependency>
25+
<dependency>
26+
<groupId>org.seleniumhq.selenium</groupId>
27+
<artifactId>selenium-firefox-driver</artifactId>
28+
<version>${project.version}</version>
29+
</dependency>
30+
<dependency>
31+
<groupId>org.seleniumhq.selenium</groupId>
32+
<artifactId>selenium-ie-driver</artifactId>
33+
<version>${project.version}</version>
34+
</dependency>
35+
<dependency>
36+
<groupId>org.seleniumhq.selenium</groupId>
37+
<artifactId>selenium-safari-driver</artifactId>
38+
<version>${project.version}</version>
39+
</dependency>
40+
<dependency>
41+
<groupId>org.seleniumhq.selenium</groupId>
42+
<artifactId>selenium-support</artifactId>
43+
<version>${project.version}</version>
44+
</dependency>
45+
<dependency>
46+
<groupId>org.seleniumhq.selenium</groupId>
47+
<artifactId>selenium-leg-rc</artifactId>
48+
<version>${project.version}</version>
49+
</dependency>
50+
</dependencies>
51+
52+
<build>
53+
<plugins>
54+
<!-- See http://maven.apache.org/plugins/maven-antrun-plugin -->
55+
<plugin>
56+
<artifactId>maven-antrun-plugin</artifactId>
57+
<executions>
58+
<execution>
59+
<id>copy_java_files</id>
60+
<phase>generate-sources</phase>
61+
<configuration>
62+
<tasks>
63+
<delete dir="src/main/java" />
64+
<copy todir="src/main/java" includeEmptyDirs="false">
65+
<fileset dir="../../java/client/src">
66+
<include name="**/*.java" />
67+
<exclude name="org/openqa/selenium/environment/**/*" />
68+
<not>
69+
<or>
70+
<present targetdir="../api/src/main/java" />
71+
<present targetdir="../chrome-driver/src/main/java" />
72+
<present targetdir="../edge-driver/src/main/java" />
73+
<present targetdir="../firefox-driver/src/main/java" />
74+
<present targetdir="../htmlunit-driver/src/main/java" />
75+
<present targetdir="../ie-driver/src/main/java" />
76+
<present targetdir="../iphone-driver/src/main/java" />
77+
<present targetdir="../remote-driver/src/main/java" />
78+
<present targetdir="../safari-driver/src/main/java" />
79+
<present targetdir="../support/src/main/java" />
80+
<present targetdir="../leg-rc/src/main/java" />
81+
</or>
82+
</not>
83+
</fileset>
84+
</copy>
85+
</tasks>
86+
</configuration>
87+
<goals>
88+
<goal>run</goal>
89+
</goals>
90+
</execution>
91+
</executions>
92+
</plugin>
93+
<plugin>
94+
<artifactId>maven-surefire-plugin</artifactId>
95+
<configuration>
96+
<skip>true</skip>
97+
<failIfNoTests>false</failIfNoTests>
98+
</configuration>
99+
</plugin>
100+
</plugins>
101+
</build>
102+
103+
</project>

0 commit comments

Comments
 (0)