We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec025c3 commit 7cec219Copy full SHA for 7cec219
1 file changed
build.gradle
@@ -1,9 +1,9 @@
1
apply plugin: 'java'
2
3
group 'de.worldiety'
4
-version '1.2'
+version '1.3'
5
6
-sourceCompatibility = 17
+sourceCompatibility = JavaVersion.VERSION_17
7
8
repositories {
9
mavenCentral()
@@ -17,10 +17,15 @@ sourceSets {
17
}
18
19
20
+tasks.withType(Copy).all {
21
+ duplicatesStrategy 'exclude'
22
+}
23
+
24
jar {
25
exclude 'META-INF/*.RSA', 'META-INF/*.SF', 'META-INF/*.DSA'
26
+ duplicatesStrategy(DuplicatesStrategy.EXCLUDE)
27
from {
- (configurations.runtime).collect {
28
+ (configurations.runtimeClasspath).collect {
29
it.isDirectory() ? it : zipTree(it)
30
31
0 commit comments