aboutsummaryrefslogtreecommitdiff
path: root/settings.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'settings.gradle')
-rw-r--r--settings.gradle26
1 files changed, 26 insertions, 0 deletions
diff --git a/settings.gradle b/settings.gradle
new file mode 100644
index 0000000..4d208c5
--- /dev/null
+++ b/settings.gradle
@@ -0,0 +1,26 @@
+pluginManagement {
+ repositories {
+ maven {
+ // RetroFuturaGradle
+ name 'GTNH Maven'
+ url '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'
+}
+
+// Due to an IntelliJ bug, this has to be done
+// rootProject.name = archives_base_name
+rootProject.name = rootProject.projectDir.getName()