[repo] Migrate Groovy build scripts to use 'sourcesJar()' directly from buildSrc

This commit is contained in:
Yahor Berdnikau
2023-06-30 18:43:01 +02:00
committed by Space Team
parent 6d5f1c84a7
commit d7fc4a1d27
16 changed files with 15 additions and 25 deletions
@@ -18,7 +18,7 @@ dependencies {
compileOnly RepoDependencies.kotlinBuiltins(project)
}
configureSourcesJar()
RepoArtifacts.sourcesJar(project)
RepoArtifacts.javadocJar(project)
compileKotlin {
@@ -7,5 +7,5 @@ dependencies {
}
RepoArtifacts.runtimeJar(project, {})
configureSourcesJar()
RepoArtifacts.sourcesJar(project)
RepoArtifacts.javadocJar(project)
+1 -1
View File
@@ -22,7 +22,7 @@ jar {
manifestAttributes(manifest, project, 'Main')
}
configureSourcesJar()
RepoArtifacts.sourcesJar(project)
RepoArtifacts.javadocJar(project)
compileKotlin {