31 lines
1.3 KiB
Groovy
31 lines
1.3 KiB
Groovy
setArchivesBaseName("HamsterCore-Common")
|
|
|
|
dependencies {
|
|
// https://mvnrepository.com/artifact/com.google.code.gson/gson
|
|
//noinspection GradlePackageUpdate
|
|
//noinspection VulnerableLibrariesLocal
|
|
compileOnly 'com.google.code.gson:gson:2.8.0'
|
|
|
|
// https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp
|
|
compileOnly 'com.squareup.okhttp3:okhttp:4.10.0'
|
|
|
|
// https://mvnrepository.com/artifact/net.kyori/adventure-api
|
|
compileOnly 'net.kyori:adventure-api:${adventure_version}'
|
|
// https://mvnrepository.com/artifact/net.kyori/adventure-platform-api
|
|
compileOnly "net.kyori:adventure-platform-api:${adventure_version}"
|
|
|
|
// https://mvnrepository.com/artifact/net.kyori/adventure-text-minimessage
|
|
compileOnly "net.kyori:adventure-text-minimessage:${adventure_serializer_version}"
|
|
// https://mvnrepository.com/artifact/net.kyori/adventure-text-serializer-gson
|
|
compileOnly "net.kyori:adventure-text-serializer-gson:${adventure_serializer_version}"
|
|
// https://mvnrepository.com/artifact/net.kyori/adventure-text-serializer-legacy
|
|
compileOnly "net.kyori:adventure-text-serializer-legacy:${adventure_serializer_version}"
|
|
|
|
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.0'
|
|
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.9.0'
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
}
|