27 lines
No EOL
501 B
Groovy
27 lines
No EOL
501 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
group 'de.pauljako'
|
|
version '1.0.0'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven {
|
|
name "craftsblockReleases"
|
|
url "https://repo.craftsblock.de/releases"
|
|
}
|
|
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'de.craftsblock:craftsnet:3.3.4-SNAPSHOT'
|
|
implementation 'de.craftsblock.craftscore:CraftsCore:3.7.60-SNAPSHOT'
|
|
implementation 'com.squareup.okhttp3:okhttp:4.12.0'
|
|
implementation 'com.google.code.gson:gson:2.11.0'
|
|
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
} |