|
1 |
| -<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/xsd/maven-4.0.0.xsd"> |
| 1 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
2 | 3 | <modelVersion>4.0.0</modelVersion>
|
3 | 4 |
|
4 | 5 | <parent>
|
|
20 | 21 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
21 | 22 | <downloadSources>true</downloadSources>
|
22 | 23 | <downloadJavadocs>true</downloadJavadocs>
|
23 |
| - <aspectj.version>1.7.3</aspectj.version> |
| 24 | + <aspectj.version>1.8.7</aspectj.version> |
24 | 25 | <java.version>1.6</java.version>
|
25 |
| - <xml.doclet.version>1.0.4</xml.doclet.version> |
| 26 | + <xml.doclet.version>1.0.5</xml.doclet.version> |
26 | 27 | <robotframework.version>2.9.2</robotframework.version>
|
| 28 | + <selenium.version>2.48.2</selenium.version> |
27 | 29 | <keywords.class>Selenium2Library</keywords.class>
|
28 | 30 | </properties>
|
29 | 31 |
|
|
62 | 64 | <dependency>
|
63 | 65 | <groupId>org.seleniumhq.selenium</groupId>
|
64 | 66 | <artifactId>selenium-server</artifactId>
|
65 |
| - <version>2.47.1</version> |
| 67 | + <version>${selenium.version}</version> |
66 | 68 | </dependency>
|
67 | 69 | <dependency>
|
68 | 70 | <groupId>com.opera</groupId>
|
|
92 | 94 | <dependency>
|
93 | 95 | <groupId>org.seleniumhq.selenium</groupId>
|
94 | 96 | <artifactId>selenium-remote-driver</artifactId>
|
95 |
| - <version>2.47.1</version> |
| 97 | + <version>${selenium.version}</version> |
96 | 98 | </dependency>
|
97 | 99 | <dependency>
|
98 | 100 | <groupId>io.selendroid</groupId>
|
99 | 101 | <artifactId>selendroid-client</artifactId>
|
100 |
| - <version>0.11.0</version> |
| 102 | + <version>0.17.0</version> |
101 | 103 | </dependency>
|
102 | 104 | <dependency>
|
103 | 105 | <groupId>io.appium</groupId>
|
104 | 106 | <artifactId>java-client</artifactId>
|
105 |
| - <version>2.0.0</version> |
| 107 | + <version>3.2.0</version> |
106 | 108 | </dependency>
|
107 | 109 | <dependency>
|
108 |
| - <groupId>org.apache.commons</groupId> |
109 |
| - <artifactId>commons-exec</artifactId> |
110 |
| - <version>1.3</version> |
111 |
| - </dependency> |
| 110 | + <groupId>org.apache.commons</groupId> |
| 111 | + <artifactId>commons-exec</artifactId> |
| 112 | + <version>1.3</version> |
| 113 | + </dependency> |
112 | 114 | </dependencies>
|
113 | 115 |
|
114 | 116 | <build>
|
|
216 | 218 | <!-- Set 1.7 as target, use project source encoding -->
|
217 | 219 | <groupId>org.apache.maven.plugins</groupId>
|
218 | 220 | <artifactId>maven-compiler-plugin</artifactId>
|
219 |
| - <version>2.5.1</version> |
| 221 | + <version>3.3</version> |
220 | 222 | <configuration>
|
221 | 223 | <source>${java.version}</source>
|
222 | 224 | <target>${java.version}</target>
|
|
230 | 232 | <!-- Build the fat jar with all dependencies -->
|
231 | 233 | <groupId>org.apache.maven.plugins</groupId>
|
232 | 234 | <artifactId>maven-assembly-plugin</artifactId>
|
233 |
| - <version>2.4</version> |
| 235 | + <version>2.6</version> |
234 | 236 | <configuration>
|
235 | 237 | <descriptorRefs>
|
236 | 238 | <descriptorRef>jar-with-dependencies</descriptorRef>
|
|
250 | 252 | <!-- extract documentation for libdoc -->
|
251 | 253 | <groupId>org.apache.maven.plugins</groupId>
|
252 | 254 | <artifactId>maven-javadoc-plugin</artifactId>
|
253 |
| - <version>2.9.1</version> |
| 255 | + <version>2.10.3</version> |
254 | 256 | <executions>
|
255 | 257 | <execution>
|
256 | 258 | <id>xml-doclet</id>
|
|
332 | 334 | <plugin>
|
333 | 335 | <groupId>org.apache.maven.plugins</groupId>
|
334 | 336 | <artifactId>maven-javadoc-plugin</artifactId>
|
335 |
| - <version>2.9.1</version> |
| 337 | + <version>2.10.3</version> |
336 | 338 | <executions>
|
337 | 339 | <execution>
|
338 | 340 | <id>attach-javadocs</id>
|
|
351 | 353 | <plugin>
|
352 | 354 | <groupId>org.codehaus.mojo</groupId>
|
353 | 355 | <artifactId>build-helper-maven-plugin</artifactId>
|
354 |
| - <version>1.8</version> |
| 356 | + <version>1.9.1</version> |
355 | 357 | <executions>
|
356 | 358 | <execution>
|
357 | 359 | <id>attach-artifacts</id>
|
|
0 commit comments