Skip to content

Commit

Permalink
Use last version of JNA
Browse files Browse the repository at this point in the history
Without it I've an exception when getting keys from Windows Registry.
The issue appears when using a plugin which is using jbrowserdriver and
selenium-java.
selenium-java needs at least 4.1.0: http://bit.ly/2dNT2OY
jbrowserdriver seems to exclude it: http://bit.ly/2cPSmCM
  • Loading branch information
Florian Gandon authored and gluck committed Oct 5, 2016
1 parent d630e64 commit ecbfa6b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# gradle-msbuild-plugin changelog

## 2.16

### Fixed
* Registry keys are found when looking for msbuild versions. The issue is related to the JNA version used in other plugins.

## 2.15

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ ext.dotnetPath = file('src/main/dotnet')
dependencies {
testCompile 'junit:junit:4.11'
testCompile group: 'org.spockframework', name: 'spock-core', version: '0.7-groovy-2.0', transitive: false
compile 'net.java.dev.jna:jna:3.5.0'
compile 'net.java.dev.jna:platform:3.5.0'
compile 'net.java.dev.jna:jna:4.2.2'
compile 'net.java.dev.jna:jna-platform:4.2.2'
compile 'com.google.guava:guava:16.0.1'
compile 'commons-io:commons-io:2.4'
}
Expand Down

0 comments on commit ecbfa6b

Please sign in to comment.