KT-50059 Stop publishing artifacts with 'modular' classifier

This commit is contained in:
Ilya Gorbunov
2021-12-04 22:01:40 +03:00
committed by Space
parent d5372521f1
commit 2954769296
9 changed files with 0 additions and 117 deletions
-9
View File
@@ -51,19 +51,10 @@ jar {
from sourceSets.java9.output
}
configureModularJar {
dependsOn(jar)
manifestAttributes(manifest, project, 'Main', true)
from zipTree(jar.outputs.files.singleFile)
}
artifacts {
archives sourcesJar
sources sourcesJar
archives modularJar
}
compileKotlin {
-8
View File
@@ -54,18 +54,10 @@ jar {
from sourceSets.java9.output
}
configureModularJar {
dependsOn(jar)
manifestAttributes(manifest, project, 'Main', true)
from zipTree(jar.outputs.files.singleFile)
}
artifacts {
archives sourcesJar
sources sourcesJar
archives modularJar
}
compileKotlin {
-8
View File
@@ -93,18 +93,10 @@ task distSourcesJar(type: Jar) {
}
}
configureModularJar {
dependsOn(jar)
manifestAttributes(manifest, project, 'Main', true)
from zipTree(jar.outputs.files.singleFile)
}
artifacts {
archives sourcesJar
sources sourcesJar
distSources distSourcesJar
archives modularJar
}
DexMethodCountKt.dexMethodCount(project) { task ->