Skip to content

Commit fbac48c

Browse files
authored
Merge pull request #537 from BlueMap-Minecraft/wip/v5
V5 (WIP)
2 parents a640285 + 4a38a74 commit fbac48c

File tree

1,070 files changed

+13672
-15979
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,070 files changed

+13672
-15979
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ jobs:
2626
java-version: |
2727
16
2828
17
29+
21
2930
cache: 'gradle'
3031
- name: Build with Gradle
3132
run: ./gradlew clean spotlessCheck test build

.github/workflows/publish.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ jobs:
2121
java-version: |
2222
16
2323
17
24+
21
2425
cache: 'gradle'
2526
- name: Build with Gradle
2627
run: ./gradlew clean :BlueMapCore:publish :BlueMapCommon:publish

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ release.md
1818

1919
# exclude generated resource
2020
BlueMapCommon/src/main/resources/de/bluecolored/bluemap/webapp.zip
21-
BlueMapCore/src/main/resources/de/bluecolored/bluemap/*/resourceExtensions.zip
21+
BlueMapCore/src/main/resources/de/bluecolored/bluemap/resourceExtensions.zip
2222

2323
#exclude-test-data
2424
data/test-render

BlueMapCommon/build.gradle.kts

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,13 @@ repositories {
2727

2828
dependencies {
2929
api ("com.mojang:brigadier:1.0.17")
30+
3031
api ("de.bluecolored.bluemap:BlueMapCore")
3132

3233
compileOnly ("org.jetbrains:annotations:16.0.2")
33-
compileOnly ("org.projectlombok:lombok:1.18.30")
34+
compileOnly ("org.projectlombok:lombok:1.18.32")
3435

35-
annotationProcessor ("org.projectlombok:lombok:1.18.30")
36+
annotationProcessor ("org.projectlombok:lombok:1.18.32")
3637

3738
testImplementation ("org.junit.jupiter:junit-jupiter:5.8.2")
3839
testRuntimeOnly ("org.junit.jupiter:junit-jupiter-engine:5.8.2")
@@ -69,12 +70,14 @@ tasks.test {
6970
useJUnitPlatform()
7071
}
7172

72-
tasks.register("buildWebapp", type = NpmTask::class) {
73+
tasks.clean {
7374
doFirst {
7475
if (!file("webapp/dist/").deleteRecursively())
7576
throw IOException("Failed to delete build directory!")
7677
}
78+
}
7779

80+
tasks.register("buildWebapp", type = NpmTask::class) {
7881
dependsOn ("npmInstall")
7982
args.set(listOf("run", "build"))
8083

@@ -88,7 +91,6 @@ tasks.register("zipWebapp", type = Zip::class) {
8891
archiveFileName.set("webapp.zip")
8992
destinationDirectory.set(file("src/main/resources/de/bluecolored/bluemap/"))
9093

91-
//outputs.upToDateWhen { false }
9294
inputs.dir("webapp/dist/")
9395
outputs.file("src/main/resources/de/bluecolored/bluemap/webapp.zip")
9496
}
-58.4 KB
Binary file not shown.

BlueMapCommon/gradle/wrapper/gradle-wrapper.properties

Lines changed: 0 additions & 5 deletions
This file was deleted.

BlueMapCommon/gradlew

Lines changed: 0 additions & 234 deletions
This file was deleted.

BlueMapCommon/gradlew.bat

Lines changed: 0 additions & 89 deletions
This file was deleted.

0 commit comments

Comments
 (0)