Knockdowns-Legacy/settings.gradle

27 lines
749 B
Groovy
Raw Normal View History

2023-04-24 13:23:28 +03:00
pluginManagement {
repositories {
maven {
// RetroFuturaGradle
2023-05-28 05:55:27 +03:00
name 'GTNH Maven'
url 'http://jenkins.usrv.eu:8081/nexus/content/groups/public/'
2023-04-24 13:23:28 +03:00
allowInsecureProtocol = true
mavenContent {
2023-05-28 05:55:27 +03:00
includeGroup 'com.gtnewhorizons'
includeGroup 'com.gtnewhorizons.retrofuturagradle'
2023-04-24 13:23:28 +03:00
}
}
gradlePluginPortal()
mavenCentral()
mavenLocal()
}
}
plugins {
// Automatic toolchain provisioning
2023-05-28 05:55:27 +03:00
id 'org.gradle.toolchains.foojay-resolver-convention' version '0.4.0'
2023-04-24 13:23:28 +03:00
}
2023-05-28 05:55:27 +03:00
// Due to an IntelliJ bug, this has to be done
// rootProject.name = archives_base_name
rootProject.name = rootProject.projectDir.getName()