@@ -42,46 +42,48 @@ allprojects {
42
42
}
43
43
}
44
44
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
+ }
50
51
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
+ }
56
58
}
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" )
61
62
62
- groupId = project. group
63
- artifactId = project. name
64
- version = project. version
63
+ groupId = project. group
64
+ artifactId = project. name
65
+ version = project. version
65
66
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
+ }
75
77
}
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'
81
86
}
82
- }
83
- scm {
84
- url = ' https://github.com/opensearch-project/data-prepper'
85
87
}
86
88
}
87
89
}
0 commit comments