We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 058d475 commit 6bf9f90Copy full SHA for 6bf9f90
buildSrc/build.gradle
@@ -111,6 +111,16 @@ dependencies {
111
api "commons-io:commons-io:${props.getProperty('commonsio')}"
112
api "net.java.dev.jna:jna:5.14.0"
113
api 'com.gradleup.shadow:shadow-gradle-plugin:8.3.10'
114
+ constraints {
115
+ api('org.codehaus.plexus:plexus-utils:3.5.1') {
116
+ because 'plexus-utils 4.x is incompatible with Java 11'
117
+ }
118
119
+ configurations.all {
120
+ resolutionStrategy {
121
+ force 'org.codehaus.plexus:plexus-utils:3.5.1'
122
123
124
api 'org.jdom:jdom2:2.0.6.1'
125
api "org.jetbrains.kotlin:kotlin-stdlib-jdk8:${props.getProperty('kotlin')}"
126
api 'de.thetaphi:forbiddenapis:3.8'
0 commit comments