mirror of
https://github.com/PolyhedralDev/Terra.git
synced 2025-07-20 19:42:30 +00:00
18 lines
290 B
Plaintext
18 lines
290 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"(project(":common:api"))
|
|
}
|