mirror of
https://github.com/PolyhedralDev/Terra.git
synced 2025-07-19 11:02:33 +00:00
31 lines
640 B
Plaintext
31 lines
640 B
Plaintext
import com.dfsek.terra.configureCompilation
|
|
import com.dfsek.terra.configureDependencies
|
|
|
|
plugins {
|
|
`java-library`
|
|
`maven-publish`
|
|
idea
|
|
}
|
|
|
|
configureCompilation()
|
|
configureDependencies()
|
|
|
|
group = "com.dfsek.terra.common"
|
|
|
|
dependencies {
|
|
"shadedApi"("com.dfsek:Paralithic:0.3.2")
|
|
|
|
"shadedApi"("com.dfsek.tectonic:common:2.1.0")
|
|
"shadedApi"("com.dfsek.tectonic:yaml:2.1.0")
|
|
|
|
"shadedApi"("net.jafama:jafama:2.3.2")
|
|
"shadedApi"("org.yaml:snakeyaml:1.27")
|
|
"shadedApi"("org.ow2.asm:asm:9.0")
|
|
|
|
|
|
"compileOnly"("com.google.guava:guava:30.0-jre")
|
|
|
|
"testImplementation"("com.google.guava:guava:30.0-jre")
|
|
}
|
|
|