Skip to content

Commit e373b5b

Browse files
committed
Tidy up build.gradle
1 parent 23fcab9 commit e373b5b

File tree

1 file changed

+1
-31
lines changed

1 file changed

+1
-31
lines changed

BlueMapCore/build.gradle

Lines changed: 1 addition & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ license {
3535

3636
//resource Extensions
3737
String[] resourceIds = [
38-
"1_12", "1_13", "1_15", "1_16", "1_18"
38+
"1_13", "1_15", "1_16", "1_18"
3939
];
4040

4141
task zipResourceExtensions {
@@ -54,35 +54,5 @@ void zipResourcesTask(String resourceId) {
5454
}
5555
}
5656

57-
/*
58-
task zipResourceExtensions1_12(type: Zip) {
59-
from fileTree('src/main/resourceExtensions/mc1_12')
60-
archiveName 'resourceExtensions.zip'
61-
destinationDir(file('src/main/resources/de/bluecolored/bluemap/mc1_12/'))
62-
outputs.upToDateWhen { false }
63-
}
64-
65-
task zipResourceExtensions1_13(type: Zip) {
66-
from fileTree('src/main/resourceExtensions/mc1_13')
67-
archiveName 'resourceExtensions.zip'
68-
destinationDir(file('src/main/resources/de/bluecolored/bluemap/mc1_13/'))
69-
outputs.upToDateWhen { false }
70-
}
71-
72-
task zipResourceExtensions1_15(type: Zip) {
73-
from fileTree('src/main/resourceExtensions/mc1_15')
74-
archiveName 'resourceExtensions.zip'
75-
destinationDir(file('src/main/resources/de/bluecolored/bluemap/mc1_15/'))
76-
outputs.upToDateWhen { false }
77-
}
78-
79-
task zipResourceExtensions1_16(type: Zip) {
80-
from fileTree('src/main/resourceExtensions/mc1_16')
81-
archiveName 'resourceExtensions.zip'
82-
destinationDir(file('src/main/resources/de/bluecolored/bluemap/mc1_16/'))
83-
outputs.upToDateWhen { false }
84-
}
85-
*/
86-
8757
//always update the zip before build
8858
processResources.dependsOn(zipResourceExtensions)

0 commit comments

Comments
 (0)