24 lines
659 B
Groovy
24 lines
659 B
Groovy
pluginManagement {
|
|
repositories {
|
|
maven {
|
|
// RetroFuturaGradle
|
|
name = "GTNH Maven"
|
|
url = uri("http://jenkins.usrv.eu:8081/nexus/content/groups/public/")
|
|
allowInsecureProtocol = true
|
|
mavenContent {
|
|
includeGroup("com.gtnewhorizons")
|
|
includeGroup("com.gtnewhorizons.retrofuturagradle")
|
|
}
|
|
}
|
|
gradlePluginPortal()
|
|
mavenCentral()
|
|
mavenLocal()
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
// Automatic toolchain provisioning
|
|
id("org.gradle.toolchains.foojay-resolver-convention") version "0.4.0"
|
|
}
|
|
|
|
rootProject.name = archives_base_name
|