Skip to content

Commit

Permalink
Exclude jna transitive dependency from visible-assertions to reconcil…
Browse files Browse the repository at this point in the history
…e versions (#1744)
  • Loading branch information
eggilbert authored and bsideup committed Aug 25, 2019
1 parent 2d1df16 commit ad5f1f6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion core/build.gradle
Expand Up @@ -67,7 +67,10 @@ dependencies {
exclude(group: 'org.jetbrains', module: 'annotations')
}

compile 'org.rnorth.visible-assertions:visible-assertions:2.1.2'
compile ('org.rnorth.visible-assertions:visible-assertions:2.1.2') {
// Excluded in favor of jna-platform below
exclude(group: "net.java.dev.jna", module: "jna")
}

compile ('org.rnorth:tcp-unix-socket-proxy:1.0.2') {
exclude(group: "log4j", module: "log4j")
Expand Down

0 comments on commit ad5f1f6

Please sign in to comment.