|
2 | 2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
3 | 3 | <modelVersion>4.0.0</modelVersion>
|
4 | 4 |
|
5 |
| - <parent> |
6 |
| - <groupId>org.sonatype.oss</groupId> |
7 |
| - <artifactId>oss-parent</artifactId> |
8 |
| - <version>7</version> |
9 |
| - </parent> |
10 |
| - |
11 | 5 | <groupId>com.github.hi-fi</groupId>
|
12 | 6 | <artifactId>robotframework-seleniumlibrary</artifactId>
|
13 |
| - <version>2.53.1.0-SNAPSHOT</version> |
| 7 | + <version>2.53.1.1-SNAPSHOT</version> |
14 | 8 | <packaging>jar</packaging>
|
15 | 9 |
|
16 | 10 | <name>Robot Framework :: SeleniumLibrary</name>
|
17 | 11 | <description>Java port of the Python based SeleniumLibrary for Robot Framework</description>
|
18 | 12 | <url>https://github.com/Hi-Fi/robotframework-seleniumlibrary-java</url>
|
19 | 13 |
|
20 |
| - <properties> |
21 |
| - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
22 |
| - <downloadSources>true</downloadSources> |
23 |
| - <downloadJavadocs>true</downloadJavadocs> |
24 |
| - <aspectj.version>1.8.7</aspectj.version> |
25 |
| - <java.version>1.6</java.version> |
26 |
| - <xml.doclet.version>1.0.5</xml.doclet.version> |
27 |
| - <robotframework.version>3.0.2</robotframework.version> |
28 |
| - <robotframework.maven.plugin.version>1.4.7</robotframework.maven.plugin.version> |
29 |
| - <selenium.version>2.53.1</selenium.version> |
30 |
| - <keywords.class>SeleniumLibrary</keywords.class> |
31 |
| - </properties> |
| 14 | + <distributionManagement> |
| 15 | + <snapshotRepository> |
| 16 | + <id>ossrh</id> |
| 17 | + <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 18 | + </snapshotRepository> |
| 19 | + </distributionManagement> |
32 | 20 |
|
33 |
| - <scm> |
34 |
| - <url>https://github.com/Hi-Fi/robotframework-seleniumlibrary-java</url> |
35 |
| - <connection>scm:git://github.com/Hi-Fi/robotframework-seleniumlibrary-java.git</connection> |
36 |
| - <developerConnection>scm:git:ssh://git@github.com:Hi-Fi/robotframework-seleniumlibrary-java.git</developerConnection> |
37 |
| - </scm> |
| 21 | + <repositories> |
| 22 | + <repository> |
| 23 | + <id>snapshots-repo</id> |
| 24 | + <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 25 | + <releases> |
| 26 | + <enabled>false</enabled> |
| 27 | + </releases> |
| 28 | + <snapshots> |
| 29 | + <enabled>true</enabled> |
| 30 | + </snapshots> |
| 31 | + </repository> |
| 32 | + </repositories> |
| 33 | + |
| 34 | + <issueManagement> |
| 35 | + <system>GitHub Issues</system> |
| 36 | + <url>https://github.com/Hi-Fi/robotframework-seleniumlibrary-java/issues</url> |
| 37 | + </issueManagement> |
38 | 38 |
|
39 | 39 | <licenses>
|
40 | 40 | <license>
|
|
44 | 44 | </license>
|
45 | 45 | </licenses>
|
46 | 46 |
|
| 47 | + <scm> |
| 48 | + <url>https://github.com/Hi-Fi/robotframework-seleniumlibrary-java</url> |
| 49 | + <connection>scm:git://github.com/Hi-Fi/robotframework-seleniumlibrary-java.git</connection> |
| 50 | + <developerConnection>scm:git:ssh://git@github.com:Hi-Fi/robotframework-seleniumlibrary-java.git</developerConnection> |
| 51 | + </scm> |
| 52 | + |
47 | 53 | <developers>
|
48 | 54 | <developer>
|
49 | 55 | <name>Markus Bernhardt</name>
|
|
56 | 62 | </developer>
|
57 | 63 | </developers>
|
58 | 64 |
|
| 65 | + <properties> |
| 66 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 67 | + <downloadSources>true</downloadSources> |
| 68 | + <downloadJavadocs>true</downloadJavadocs> |
| 69 | + <aspectj.version>1.8.10</aspectj.version> |
| 70 | + <java.version>1.6</java.version> |
| 71 | + <xml.doclet.version>1.0.5</xml.doclet.version> |
| 72 | + <robotframework.version>3.0.2</robotframework.version> |
| 73 | + <robotframework.maven.plugin.version>1.4.7</robotframework.maven.plugin.version> |
| 74 | + <selenium.version>2.53.1</selenium.version> |
| 75 | + <keywords.class>SeleniumLibrary</keywords.class> |
| 76 | + </properties> |
| 77 | + |
59 | 78 | <dependencies>
|
60 | 79 | <dependency>
|
61 | 80 | <groupId>org.robotframework</groupId>
|
|
80 | 99 | <dependency>
|
81 | 100 | <groupId>com.codeborne</groupId>
|
82 | 101 | <artifactId>phantomjsdriver</artifactId>
|
83 |
| - <version>1.4.3</version> |
| 102 | + <version>1.3.0</version> |
84 | 103 | </dependency>
|
85 | 104 | <dependency>
|
86 | 105 | <groupId>org.robotframework</groupId>
|
|
144 | 163 | <!-- Weave the failure handler into the code -->
|
145 | 164 | <groupId>org.codehaus.mojo</groupId>
|
146 | 165 | <artifactId>aspectj-maven-plugin</artifactId>
|
147 |
| - <version>1.4</version> |
| 166 | + <version>1.10</version> |
148 | 167 | <executions>
|
149 | 168 | <execution>
|
150 | 169 | <goals>
|
|
258 | 277 | <!-- extract documentation for libdoc -->
|
259 | 278 | <groupId>org.apache.maven.plugins</groupId>
|
260 | 279 | <artifactId>maven-javadoc-plugin</artifactId>
|
261 |
| - <version>2.10.3</version> |
| 280 | + <version>2.10.4</version> |
262 | 281 | <executions>
|
263 | 282 | <execution>
|
264 | 283 | <id>xml-doclet</id>
|
|
340 | 359 | <plugin>
|
341 | 360 | <groupId>org.apache.maven.plugins</groupId>
|
342 | 361 | <artifactId>maven-source-plugin</artifactId>
|
343 |
| - <version>2.2.1</version> |
| 362 | + <version>3.0.1</version> |
344 | 363 | <executions>
|
345 | 364 | <execution>
|
346 | 365 | <id>attach-sources</id>
|
|
353 | 372 | <plugin>
|
354 | 373 | <groupId>org.apache.maven.plugins</groupId>
|
355 | 374 | <artifactId>maven-javadoc-plugin</artifactId>
|
356 |
| - <version>2.9.1</version> |
| 375 | + <version>2.10.4</version> |
357 | 376 | <executions>
|
358 | 377 | <execution>
|
359 | 378 | <id>attach-javadocs</id>
|
|
427 | 446 | <plugin>
|
428 | 447 | <groupId>org.apache.maven.plugins</groupId>
|
429 | 448 | <artifactId>maven-gpg-plugin</artifactId>
|
430 |
| - <version>1.5</version> |
| 449 | + <version>1.6</version> |
431 | 450 | <executions>
|
432 | 451 | <execution>
|
433 | 452 | <id>sign-artifacts</id>
|
|
441 | 460 | <plugin>
|
442 | 461 | <groupId>org.sonatype.plugins</groupId>
|
443 | 462 | <artifactId>nexus-staging-maven-plugin</artifactId>
|
444 |
| - <version>1.6.3</version> |
| 463 | + <version>1.6.8</version> |
445 | 464 | <extensions>true</extensions>
|
446 | 465 | <configuration>
|
447 | 466 | <serverId>ossrh</serverId>
|
|
452 | 471 | <plugin>
|
453 | 472 | <groupId>org.apache.maven.plugins</groupId>
|
454 | 473 | <artifactId>maven-release-plugin</artifactId>
|
455 |
| - <version>2.5</version> |
| 474 | + <version>2.5.3</version> |
456 | 475 | <configuration>
|
457 | 476 | <autoVersionSubmodules>true</autoVersionSubmodules>
|
458 | 477 | <useReleaseProfile>false</useReleaseProfile>
|
|
0 commit comments