File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
main/src/kotlinx/team/infra Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -91,11 +91,16 @@ internal fun Project.configurePublishing(publishing: PublishingConfiguration) {
91
91
if (verifySonatypeConfiguration()) {
92
92
includeProjects.forEach { subproject ->
93
93
subproject.createSonatypeRepository()
94
- subproject.configureSigning()
95
94
}
96
95
}
97
96
}
98
97
98
+ if (project.hasProperty(" teamcity" )) {
99
+ includeProjects.forEach { subproject ->
100
+ subproject.configureSigning()
101
+ }
102
+ }
103
+
99
104
gradle.includedBuilds.forEach { includedBuild ->
100
105
logger.infra(" Included build: ${includedBuild.name} from ${includedBuild.projectDir} " )
101
106
val includedPublishTask = includedBuild.task(" :$compositeBuildLocal " )
Original file line number Diff line number Diff line change 1
1
project. version = project. hasProperty(' releaseVersion' ) ? project. property(' releaseVersion' ) : project. version
2
2
3
3
task sourceJar (type : Jar ) {
4
- classifier ' sources'
4
+ archiveClassifier . set( " sources" )
5
5
from sourceSets. main. allJava. sourceDirectories
6
6
}
7
7
You can’t perform that action at this time.
0 commit comments