Skip to content
This repository was archived by the owner on Feb 2, 2025. It is now read-only.

Commit 74cfee4

Browse files
authored
Merge pull request #6 from Hi-Fi/fixPhantomJs
Fix phantom js
2 parents 6c2ee01 + 974a5a5 commit 74cfee4

File tree

2 files changed

+55
-36
lines changed

2 files changed

+55
-36
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ the Selenium libraries from the [Selenium](http://docs.seleniumhq.org) project.
99

1010
Version number follows Selenium's version numbers (first 3 numbers), and 4th number is reserved for e.g. issue fixes.
1111
* More information about this library can be found in the
12-
[Keyword Documentation](http://search.maven.org/remotecontent?filepath=com/github/hi_fi/robotframework-seleniumlibrary-java/2.53.1.0/robotframework-seleniumlibrary-java-2.53.1.0-libdoc.html).
12+
[Keyword Documentation](http://search.maven.org/remotecontent?filepath=com/github/hi-fi/robotframework-seleniumlibrary/2.53.1.0/robotframework-seleniumlibrary-2.53.1.0.html).
1313
* For keyword completion in RIDE you can download this
14-
[Library Specs](http://search.maven.org/remotecontent?filepath=com/github/hi_fi/robotframework-seleniumlibrary-java/2.53.1.0/robotframework-seleniumlibrary-java-2.53.1.0-libdoc.xml)
14+
[Library Specs](http://search.maven.org/remotecontent?filepath=com/github/hi-fi/robotframework-seleniumlibrary/2.53.1.0/robotframework-seleniumlibrary-2.53.1.0.xml)
1515
and place it in your PYTHONPATH.
1616

1717
This Java version of SeleniumLibrary exists because of easier dependency management when Robot Framework is used in Java-projects.
@@ -33,11 +33,11 @@ your pom.xml:
3333
</dependency>
3434

3535
If you cannot use the robotframework-maven-plugin you can use the
36-
[jar-with-dependencies](http://search.maven.org/remotecontent?filepath=com/github/hi_fi/robotframework-seleniumlibrary-java/2.53.1.0/robotframework-seleniumlibrary-java-2.53.1.0-jar-with-dependencies.jar),
36+
[jar-with-dependencies](http://search.maven.org/remotecontent?filepath=com/github/hi-fi/robotframework-seleniumlibrary/2.53.1.0/robotframework-seleniumlibrary-2.53.1.0-jar-with-dependencies.jar),
3737
which contains all required libraries.
3838

3939
If you want more control and feel adventurous you could you use this
40-
[jar](http://search.maven.org/remotecontent?filepath=com/github/hi_fi/robotframework-seleniumlibrary-java/2.53.1.0/robotframework-seleniumlibrary-java-2.53.1.0.jar)
40+
[jar](http://search.maven.org/remotecontent?filepath=com/github/hi-fi/robotframework-seleniumlibrary/2.53.1.0/robotframework-seleniumlibrary-2.53.1.0.jar)
4141
and provide all required libraries from this [list](DEPENDENCIES.md) on your own.
4242

4343
Differences

pom.xml

Lines changed: 51 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -2,39 +2,39 @@
22
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<modelVersion>4.0.0</modelVersion>
44

5-
<parent>
6-
<groupId>org.sonatype.oss</groupId>
7-
<artifactId>oss-parent</artifactId>
8-
<version>7</version>
9-
</parent>
10-
115
<groupId>com.github.hi-fi</groupId>
126
<artifactId>robotframework-seleniumlibrary</artifactId>
13-
<version>2.53.1.0-SNAPSHOT</version>
7+
<version>2.53.1.1-SNAPSHOT</version>
148
<packaging>jar</packaging>
159

1610
<name>Robot Framework :: SeleniumLibrary</name>
1711
<description>Java port of the Python based SeleniumLibrary for Robot Framework</description>
1812
<url>https://github.com/Hi-Fi/robotframework-seleniumlibrary-java</url>
1913

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>
3220

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>
3838

3939
<licenses>
4040
<license>
@@ -44,6 +44,12 @@
4444
</license>
4545
</licenses>
4646

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+
4753
<developers>
4854
<developer>
4955
<name>Markus Bernhardt</name>
@@ -56,6 +62,19 @@
5662
</developer>
5763
</developers>
5864

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+
5978
<dependencies>
6079
<dependency>
6180
<groupId>org.robotframework</groupId>
@@ -80,7 +99,7 @@
8099
<dependency>
81100
<groupId>com.codeborne</groupId>
82101
<artifactId>phantomjsdriver</artifactId>
83-
<version>1.4.3</version>
102+
<version>1.3.0</version>
84103
</dependency>
85104
<dependency>
86105
<groupId>org.robotframework</groupId>
@@ -144,7 +163,7 @@
144163
<!-- Weave the failure handler into the code -->
145164
<groupId>org.codehaus.mojo</groupId>
146165
<artifactId>aspectj-maven-plugin</artifactId>
147-
<version>1.4</version>
166+
<version>1.10</version>
148167
<executions>
149168
<execution>
150169
<goals>
@@ -258,7 +277,7 @@
258277
<!-- extract documentation for libdoc -->
259278
<groupId>org.apache.maven.plugins</groupId>
260279
<artifactId>maven-javadoc-plugin</artifactId>
261-
<version>2.10.3</version>
280+
<version>2.10.4</version>
262281
<executions>
263282
<execution>
264283
<id>xml-doclet</id>
@@ -340,7 +359,7 @@
340359
<plugin>
341360
<groupId>org.apache.maven.plugins</groupId>
342361
<artifactId>maven-source-plugin</artifactId>
343-
<version>2.2.1</version>
362+
<version>3.0.1</version>
344363
<executions>
345364
<execution>
346365
<id>attach-sources</id>
@@ -353,7 +372,7 @@
353372
<plugin>
354373
<groupId>org.apache.maven.plugins</groupId>
355374
<artifactId>maven-javadoc-plugin</artifactId>
356-
<version>2.9.1</version>
375+
<version>2.10.4</version>
357376
<executions>
358377
<execution>
359378
<id>attach-javadocs</id>
@@ -427,7 +446,7 @@
427446
<plugin>
428447
<groupId>org.apache.maven.plugins</groupId>
429448
<artifactId>maven-gpg-plugin</artifactId>
430-
<version>1.5</version>
449+
<version>1.6</version>
431450
<executions>
432451
<execution>
433452
<id>sign-artifacts</id>
@@ -441,7 +460,7 @@
441460
<plugin>
442461
<groupId>org.sonatype.plugins</groupId>
443462
<artifactId>nexus-staging-maven-plugin</artifactId>
444-
<version>1.6.3</version>
463+
<version>1.6.8</version>
445464
<extensions>true</extensions>
446465
<configuration>
447466
<serverId>ossrh</serverId>
@@ -452,7 +471,7 @@
452471
<plugin>
453472
<groupId>org.apache.maven.plugins</groupId>
454473
<artifactId>maven-release-plugin</artifactId>
455-
<version>2.5</version>
474+
<version>2.5.3</version>
456475
<configuration>
457476
<autoVersionSubmodules>true</autoVersionSubmodules>
458477
<useReleaseProfile>false</useReleaseProfile>

0 commit comments

Comments
 (0)