aboutsummaryrefslogtreecommitdiff
path: root/settings.gradle
diff options
context:
space:
mode:
authorcitrons <citrons@mondecitronne.com>2023-10-29 22:42:13 -0500
committercitrons <citrons@mondecitronne.com>2023-10-29 22:43:47 -0500
commit13c2fb7482d45a74ca460f6192a16dc8c956923f (patch)
tree552bbf97c5d28d8705dbcb1b7c3e8ccf4742d996 /settings.gradle
initial commit
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()