Skip to content

Commit b618e48

Browse files
committed
exclude junit from org.locationtech.jts:jts-core
1 parent 22344c5 commit b618e48

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

build.gradle

+10-1
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,12 @@ repositories {
4949
}
5050

5151
dependencies {
52+
constraints {
53+
implementation( 'junit:junit:4.13.2+'){
54+
because "CVE-2020-15250 - Temporary folder vulnerability - https://github.com/advisories/GHSA-269g-pwp5-87pp"
55+
}
56+
}
57+
5258
// ie³ power system utils
5359
implementation 'com.github.ie3-institute:PowerSystemUtils:1.6'
5460

@@ -57,7 +63,10 @@ dependencies {
5763
implementation 'com.github.johanneshiry:OSMonaut:v1.1.1' // tmp pbf parse
5864

5965
// JTS Topology Suite for GeoPositions, License: EPL 1.0 / EDL 1.0
60-
implementation 'org.locationtech.jts:jts-core:1.18.2'
66+
implementation ('org.locationtech.jts:jts-core:1.18.2'){
67+
exclude group: 'junit', module: 'junit'
68+
}
69+
6170
implementation 'org.locationtech.jts.io:jts-io-common:1.18.2'
6271

6372
// Graphs

0 commit comments

Comments
 (0)