mirror of
https://github.com/PolyhedralDev/Terra.git
synced 2025-07-20 11:32:33 +00:00
28 lines
514 B
Plaintext
28 lines
514 B
Plaintext
import com.dfsek.terra.configureCommon
|
|
|
|
plugins {
|
|
java
|
|
id("org.spongepowered.plugin").version("0.9.0")
|
|
}
|
|
|
|
configureCommon()
|
|
|
|
group = "com.dfsek.terra"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
jcenter()
|
|
}
|
|
|
|
dependencies {
|
|
"compileOnly"("org.spongepowered:spongeapi:7.2.0")
|
|
"shadedApi"(project(":common:implementation"))
|
|
"shadedImplementation"("org.yaml:snakeyaml:1.27")
|
|
"shadedImplementation"("com.googlecode.json-simple:json-simple:1.1.1")
|
|
}
|
|
|
|
sponge {
|
|
plugin {
|
|
id = "terra"
|
|
}
|
|
} |