-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
28 lines (24 loc) · 1.19 KB
/
settings.gradle.kts
File metadata and controls
28 lines (24 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
rootProject.name = "BlueMapS3Storage"
dependencyResolutionManagement {
repositories {
mavenCentral()
maven("https://repo.bluecolored.de/releases")
}
versionCatalogs {
create("libs") {
version("junit", "6.0.3")
version("spotless", "8.3.0")
version("aws-java-nio-spi-for-s3", "2.3.0")
version("bluemap", "5.3")
version("shadow", "9.3.2")
library("nio-spi-s3", "software.amazon.nio.s3", "aws-java-nio-spi-for-s3").versionRef("aws-java-nio-spi-for-s3")
library("bluemap.core", "de.bluecolored.bluemap", "BlueMapCore").versionRef("bluemap")
library("bluemap.common", "de.bluecolored.bluemap", "BlueMapCommon").versionRef("bluemap")
library("junit.bom", "org.junit","junit-bom").versionRef("junit")
library("junit.jupiter", "org.junit.jupiter", "junit-jupiter").withoutVersion()
library("junit.platform.launcher", "org.junit.platform", "junit-platform-launcher").withoutVersion()
plugin("spotless", "com.diffplug.spotless").versionRef("spotless")
plugin("shadow", "com.gradleup.shadow").versionRef("shadow")
}
}
}