Skip to content

Commit

Permalink
Exclude packaged guava from jimfs
Browse files Browse the repository at this point in the history
Signed-off-by: Kunal Kotwani <[email protected]>
  • Loading branch information
kotwanikunal committed Sep 14, 2023
1 parent 14d6175 commit 080eb44
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion qa/evil-tests/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,9 @@ def props = new Properties()
project(":build-tools").file("version.properties").withInputStream { props.load(it) }

dependencies {
testImplementation 'com.google.jimfs:jimfs:1.2'
testImplementation('com.google.jimfs:jimfs:1.2') {
exclude group: 'com.google.guava', module: 'guava'
}
testRuntimeOnly "com.google.guava:guava:${props.getProperty('guava')}"
}

Expand Down

0 comments on commit 080eb44

Please sign in to comment.