Skip to content

Commit 1a5c817

Browse files
committed
[2.19] Change com.github.johnrengelman.shadow to com.gradleup.shadow
Signed-off-by: Craig Perkins <cwperx@amazon.com>
1 parent 7da902a commit 1a5c817

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

build.gradle

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,12 @@ buildscript {
2929

3030
dependencies {
3131
classpath "org.opensearch.gradle:build-tools:${opensearch_version}"
32+
classpath 'org.codehaus.plexus:plexus-utils:3.5.1'
33+
}
34+
configurations.classpath {
35+
resolutionStrategy {
36+
force 'org.codehaus.plexus:plexus-utils:3.5.1'
37+
}
3238
}
3339
}
3440

@@ -115,6 +121,12 @@ allprojects {
115121
}
116122

117123
allprojects {
124+
configurations.all {
125+
resolutionStrategy {
126+
force 'org.codehaus.plexus:plexus-utils:3.5.1'
127+
}
128+
}
129+
118130
// Default to the apache license
119131
project.ext.licenseName = 'The Apache Software License, Version 2.0'
120132
project.ext.licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.txt'

spi/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import com.github.jengelman.gradle.plugins.shadow.ShadowBasePlugin
77
import org.opensearch.gradle.test.RestIntegTestTask
88

99
plugins {
10-
id 'com.github.johnrengelman.shadow'
10+
id 'com.gradleup.shadow'
1111
id 'jacoco'
1212
id 'maven-publish'
1313
id 'signing'

0 commit comments

Comments
 (0)