Fix jakarta sources transformation issues
This commit is contained in:
parent
9630ca9a7f
commit
107849c3c8
|
@ -229,6 +229,10 @@ task copyBundleResources (type: Copy) {
|
|||
}
|
||||
processTestResources.dependsOn copyBundleResources
|
||||
|
||||
sourcesJar {
|
||||
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
|
||||
}
|
||||
|
||||
task testJar(type: Jar, dependsOn: testClasses) {
|
||||
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
|
||||
archiveClassifier.set( 'test' )
|
||||
|
|
|
@ -71,6 +71,10 @@ jar {
|
|||
}
|
||||
}
|
||||
|
||||
sourcesJar {
|
||||
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
|
||||
}
|
||||
|
||||
task testJar(type: Jar, dependsOn: testClasses) {
|
||||
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
|
||||
archiveClassifier.set( 'test' )
|
||||
|
|
Loading…
Reference in New Issue