Skip to content

Commit ecbfa6b

Browse files
Florian Gandongluck
Florian Gandon
authored andcommitted
Use last version of JNA
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
1 parent d630e64 commit ecbfa6b

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# gradle-msbuild-plugin changelog
22

3+
## 2.16
4+
5+
### Fixed
6+
* Registry keys are found when looking for msbuild versions. The issue is related to the JNA version used in other plugins.
7+
38
## 2.15
49

510
### Fixed

build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ ext.dotnetPath = file('src/main/dotnet')
1818
dependencies {
1919
testCompile 'junit:junit:4.11'
2020
testCompile group: 'org.spockframework', name: 'spock-core', version: '0.7-groovy-2.0', transitive: false
21-
compile 'net.java.dev.jna:jna:3.5.0'
22-
compile 'net.java.dev.jna:platform:3.5.0'
21+
compile 'net.java.dev.jna:jna:4.2.2'
22+
compile 'net.java.dev.jna:jna-platform:4.2.2'
2323
compile 'com.google.guava:guava:16.0.1'
2424
compile 'commons-io:commons-io:2.4'
2525
}

0 commit comments

Comments
 (0)