mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-27 07:17:58 +01:00
27 lines
581 B
Groovy
27 lines
581 B
Groovy
plugins {
|
|
id 'java-library'
|
|
}
|
|
|
|
repositories {
|
|
maven {
|
|
name = "dblsaiko"
|
|
url = "https://maven.dblsaiko.net/"
|
|
}
|
|
maven {
|
|
name = "Cotton"
|
|
allowInsecureProtocol = true
|
|
url = "http://server.bbkr.space:8081/artifactory/libs-release/"
|
|
}
|
|
maven {
|
|
name = "Shedanial"
|
|
url = "https://maven.shedaniel.me/"
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
modCompileOnly("grondag:canvas-mc116:${project.canvas_version}") {
|
|
exclude(module: "fabric-api")
|
|
exclude(module: "fabric-loader")
|
|
transitive = false
|
|
}
|
|
}
|