Skip to content

Commit 5d8c59b

Browse files
Fix the release build by only applying the Maven publish task to either projects with a name starting with data-prepper or any projects that are children of the data-prepper-plugins project. (#4337) (#4339)
Signed-off-by: David Venable <[email protected]> (cherry picked from commit 8760945) Co-authored-by: David Venable <[email protected]>
1 parent 4795d4d commit 5d8c59b

File tree

1 file changed

+36
-34
lines changed

1 file changed

+36
-34
lines changed

build.gradle

+36-34
Original file line numberDiff line numberDiff line change
@@ -42,46 +42,48 @@ allprojects {
4242
}
4343
}
4444

45-
project.plugins.withType(JavaPlugin).configureEach {
46-
java {
47-
withJavadocJar()
48-
withSourcesJar()
49-
}
45+
if(project.name.startsWith('data-prepper') || project.parent != null && project.parent.name.equals('data-prepper-plugins')) {
46+
project.plugins.withType(JavaPlugin).configureEach {
47+
java {
48+
withJavadocJar()
49+
withSourcesJar()
50+
}
5051

51-
afterEvaluate {
52-
project.publishing {
53-
repositories {
54-
maven {
55-
url "file://${mavenPublicationRootFile.absolutePath}"
52+
afterEvaluate {
53+
project.publishing {
54+
repositories {
55+
maven {
56+
url "file://${mavenPublicationRootFile.absolutePath}"
57+
}
5658
}
57-
}
58-
publications {
59-
mavenJava(MavenPublication) {
60-
from project.components.findByName("java") ?: project.components.findByName("javaLibrary")
59+
publications {
60+
mavenJava(MavenPublication) {
61+
from project.components.findByName("java") ?: project.components.findByName("javaLibrary")
6162

62-
groupId = project.group
63-
artifactId = project.name
64-
version = project.version
63+
groupId = project.group
64+
artifactId = project.name
65+
version = project.version
6566

66-
pom {
67-
name = project.name
68-
description = "Data Prepper project: ${project.name}"
69-
url = 'https://github.com/opensearch-project/data-prepper'
70-
licenses {
71-
license {
72-
name = 'The Apache Software License, Version 2.0'
73-
url = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
74-
distribution = 'repo'
67+
pom {
68+
name = project.name
69+
description = "Data Prepper project: ${project.name}"
70+
url = 'https://github.com/opensearch-project/data-prepper'
71+
licenses {
72+
license {
73+
name = 'The Apache Software License, Version 2.0'
74+
url = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
75+
distribution = 'repo'
76+
}
7577
}
76-
}
77-
developers {
78-
developer {
79-
name = 'OpenSearch'
80-
url = 'https://github.com/opensearch-project'
78+
developers {
79+
developer {
80+
name = 'OpenSearch'
81+
url = 'https://github.com/opensearch-project'
82+
}
83+
}
84+
scm {
85+
url = 'https://github.com/opensearch-project/data-prepper'
8186
}
82-
}
83-
scm {
84-
url = 'https://github.com/opensearch-project/data-prepper'
8587
}
8688
}
8789
}

0 commit comments

Comments
 (0)