File tree 5 files changed +67
-0
lines changed
5 files changed +67
-0
lines changed Original file line number Diff line number Diff line change
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-edge-driver</artifactId >
12
+ <name >selenium-edge-driver</name >
13
+
14
+ <dependencies >
15
+ <dependency >
16
+ <groupId >org.seleniumhq.selenium</groupId >
17
+ <artifactId >selenium-remote-driver</artifactId >
18
+ <version >${project.version} </version >
19
+ </dependency >
20
+ <dependency >
21
+ <groupId >commons-io</groupId >
22
+ <artifactId >commons-io</artifactId >
23
+ </dependency >
24
+ <dependency >
25
+ <groupId >org.apache.commons</groupId >
26
+ <artifactId >commons-exec</artifactId >
27
+ </dependency >
28
+ </dependencies >
29
+
30
+ <build >
31
+ <plugins >
32
+ <!-- See http://maven.apache.org/plugins/maven-antrun-plugin -->
33
+ <plugin >
34
+ <artifactId >maven-antrun-plugin</artifactId >
35
+ <executions >
36
+ <execution >
37
+ <id >copy_java_files</id >
38
+ <phase >generate-sources</phase >
39
+ <configuration >
40
+ <tasks >
41
+ <delete dir =" src/main/java" />
42
+ <copy todir =" src/main/java" includeEmptyDirs =" false" >
43
+ <fileset dir =" ../../java/client/src" >
44
+ <include name =" org/openqa/selenium/edge/**/*.java" />
45
+ </fileset >
46
+ </copy >
47
+ </tasks >
48
+ </configuration >
49
+ <goals >
50
+ <goal >run</goal >
51
+ </goals >
52
+ </execution >
53
+ </executions >
54
+ </plugin >
55
+ </plugins >
56
+ </build >
57
+
58
+ </project >
Original file line number Diff line number Diff line change 17
17
<artifactId >selenium-chrome-driver</artifactId >
18
18
<version >${project.version} </version >
19
19
</dependency >
20
+ <dependency >
21
+ <groupId >org.seleniumhq.selenium</groupId >
22
+ <artifactId >selenium-edge-driver</artifactId >
23
+ <version >${project.version} </version >
24
+ </dependency >
20
25
<dependency >
21
26
<groupId >org.seleniumhq.selenium</groupId >
22
27
<artifactId >selenium-htmlunit-driver</artifactId >
73
78
<or >
74
79
<present targetdir =" ../api/src/main/java" />
75
80
<present targetdir =" ../chrome-driver/src/main/java" />
81
+ <present targetdir =" ../edge-driver/src/main/java" />
76
82
<present targetdir =" ../firefox-driver/src/main/java" />
77
83
<present targetdir =" ../htmlunit-driver/src/main/java" />
78
84
<present targetdir =" ../ie-driver/src/main/java" />
Original file line number Diff line number Diff line change 57
57
<present targetdir =" ../iphone-driver/src/main/java" />
58
58
<present targetdir =" ../remote-driver/src/main/java" />
59
59
<present targetdir =" ../safari-driver/src/main/java" />
60
+ <present targetdir =" ../edge-driver/src/main/java" />
60
61
<present targetdir =" ../support/src/main/java" />
61
62
</or >
62
63
</not >
Original file line number Diff line number Diff line change 119
119
<modules >
120
120
<module >api</module >
121
121
<module >chrome-driver</module >
122
+ <module >edge-driver</module >
122
123
<module >firefox-driver</module >
123
124
<module >htmlunit-driver</module >
124
125
<module >ie-driver</module >
Original file line number Diff line number Diff line change 109
109
<not >
110
110
<or >
111
111
<present targetdir =" ../chrome-driver/target/classes" />
112
+ <present targetdir =" ../edge-driver/target/classes" />
112
113
<present targetdir =" ../firefox-driver/target/classes" />
113
114
<present targetdir =" ../ie-driver/target/classes" />
114
115
<present targetdir =" ../java/target/classes" />
You can’t perform that action at this time.
0 commit comments