Skip to content

Commit

Permalink
Update guava POM dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitri-mcguckin committed Oct 7, 2021
1 parent 5d74232 commit 5d5f27c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 7 deletions.
17 changes: 11 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<url>https://github.com/spicule-kythera/magnesium-script</url>
<groupId>uk.co.spicule</groupId>
<artifactId>magnesium-script</artifactId>
<version>0.1.5</version>
<version>0.1.6</version>

<!-- License -->
<licenses>
Expand Down Expand Up @@ -225,6 +225,16 @@
<artifactId>nashorn-core</artifactId>
<version>15.3</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>31.0.1-jre</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.11.0</version>
</dependency>

<!-- Development Dependencies -->
<dependency>
Expand All @@ -251,10 +261,5 @@
<version>4.2.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>[2.7,)</version>
</dependency>
</dependencies>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ protected static BrowserType stringToEnum(String name) throws Expression.Invalid
.defaultHelp(true);
private static final int MAJOR = 0;
private static final int MINOR = 1;
private static final int PATCH = 5;
private static final int PATCH = 6;

public MagnesiumScript(WebDriver driver) {
LOG.info(version());
Expand Down

0 comments on commit 5d5f27c

Please sign in to comment.