Skip to content

Commit

Permalink
adding edge-driver maven artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeis committed Jul 30, 2015
1 parent 6ccaf7f commit 41d0950
Show file tree
Hide file tree
Showing 5 changed files with 67 additions and 0 deletions.
58 changes: 58 additions & 0 deletions maven/edge-driver/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
<?xml version="1.0" encoding="Windows-1252"?>
<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>
<artifactId>selenium-parent</artifactId>
<version>2.0-SNAPSHOT</version>
</parent>
<artifactId>selenium-edge-driver</artifactId>
<name>selenium-edge-driver</name>

<dependencies>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-remote-driver</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-exec</artifactId>
</dependency>
</dependencies>

<build>
<plugins>
<!-- See http://maven.apache.org/plugins/maven-antrun-plugin -->
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>copy_java_files</id>
<phase>generate-sources</phase>
<configuration>
<tasks>
<delete dir="src/main/java" />
<copy todir="src/main/java" includeEmptyDirs="false">
<fileset dir="../../java/client/src">
<include name="org/openqa/selenium/edge/**/*.java" />
</fileset>
</copy>
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

</project>
6 changes: 6 additions & 0 deletions maven/java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@
<artifactId>selenium-chrome-driver</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-edge-driver</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-htmlunit-driver</artifactId>
Expand Down Expand Up @@ -73,6 +78,7 @@
<or>
<present targetdir="../api/src/main/java" />
<present targetdir="../chrome-driver/src/main/java" />
<present targetdir="../edge-driver/src/main/java" />
<present targetdir="../firefox-driver/src/main/java" />
<present targetdir="../htmlunit-driver/src/main/java" />
<present targetdir="../ie-driver/src/main/java" />
Expand Down
1 change: 1 addition & 0 deletions maven/leg-rc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@
<present targetdir="../iphone-driver/src/main/java" />
<present targetdir="../remote-driver/src/main/java" />
<present targetdir="../safari-driver/src/main/java" />
<present targetdir="../edge-driver/src/main/java" />
<present targetdir="../support/src/main/java" />
</or>
</not>
Expand Down
1 change: 1 addition & 0 deletions maven/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@
<modules>
<module>api</module>
<module>chrome-driver</module>
<module>edge-driver</module>
<module>firefox-driver</module>
<module>htmlunit-driver</module>
<module>ie-driver</module>
Expand Down
1 change: 1 addition & 0 deletions maven/server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@
<not>
<or>
<present targetdir="../chrome-driver/target/classes" />
<present targetdir="../edge-driver/target/classes" />
<present targetdir="../firefox-driver/target/classes" />
<present targetdir="../ie-driver/target/classes" />
<present targetdir="../java/target/classes" />
Expand Down

0 comments on commit 41d0950

Please sign in to comment.