Remove 'classifier' method usages in tests
^KT-55624 In Progress
This commit is contained in:
committed by
Space Team
parent
7f4c65fe10
commit
8d02a415b2
+1
-1
@@ -418,7 +418,7 @@ class KotlinGradleIT : KGPBaseTest() {
|
|||||||
|
|
||||||
task sourcesJar(type: Jar) {
|
task sourcesJar(type: Jar) {
|
||||||
from sourceSets.main.allSource
|
from sourceSets.main.allSource
|
||||||
classifier 'source'
|
archiveClassifier = 'source'
|
||||||
duplicatesStrategy = 'fail' // fail in case of Java source duplication, see KT-17564
|
duplicatesStrategy = 'fail' // fail in case of Java source duplication, see KT-17564
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
+1
-1
@@ -21,7 +21,7 @@ dependencies {
|
|||||||
|
|
||||||
task jarSources(type: Jar) {
|
task jarSources(type: Jar) {
|
||||||
from sourceSets.main.allSource
|
from sourceSets.main.allSource
|
||||||
classifier = 'source'
|
archiveClassifier = 'source'
|
||||||
}
|
}
|
||||||
artifacts {
|
artifacts {
|
||||||
implementation jarSources
|
implementation jarSources
|
||||||
|
|||||||
+1
-1
@@ -22,7 +22,7 @@ dependencies {
|
|||||||
|
|
||||||
task jarSources(type: Jar) {
|
task jarSources(type: Jar) {
|
||||||
from sourceSets.main.allSource
|
from sourceSets.main.allSource
|
||||||
classifier = 'source'
|
archiveClassifier = 'source'
|
||||||
}
|
}
|
||||||
artifacts {
|
artifacts {
|
||||||
implementation jarSources
|
implementation jarSources
|
||||||
|
|||||||
Reference in New Issue
Block a user