Skip to content

Commit fcedb2f

Browse files
authored
Revert "Adds explicit instruction for shaded release" (#241)
Reverts #240 We do not want shaded version in a different artifact - use classifiers instead.
1 parent c2a6c3f commit fcedb2f

File tree

3 files changed

+0
-13
lines changed

3 files changed

+0
-13
lines changed

build.gradle

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -248,9 +248,6 @@ subprojects {
248248
groupId = 'com.google.cloud.opentelemetry'
249249
afterEvaluate {
250250
artifactId = archivesBaseName
251-
if (findProperty("shadow.release") != null) {
252-
artifactId = artifactId + "-shaded"
253-
}
254251
if (findProperty("release.qualifier") != null) {
255252
String[] versionParts = version.split('-')
256253
versionParts[0] = "${versionParts[0]}-${findProperty("release.qualifier")}"

exporters/auto/build.gradle

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -66,11 +66,3 @@ tasks.named('shadowJar') {
6666
enableRelocation true
6767
relocationPrefix 'shadow'
6868
}
69-
70-
publishing {
71-
publications {
72-
shadow(MavenPublication) { publication ->
73-
project.shadow.component(publication)
74-
}
75-
}
76-
}

exporters/auto/gradle.properties

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,2 @@
11
release.qualifier=alpha
22
release.enabled=true
3-
# Releases a shadowed variant of the artifact with '-shaded' as artifactId suffix
4-
shadow.release=true

0 commit comments

Comments
 (0)