You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
781 B
Groovy
29 lines
781 B
Groovy
|
|
pluginManagement {
|
|
repositories {
|
|
maven {
|
|
// RetroFuturaGradle
|
|
name "GTNH Maven"
|
|
url "http://jenkins.usrv.eu:8081/nexus/content/groups/public/"
|
|
allowInsecureProtocol = true
|
|
mavenContent {
|
|
includeGroup("com.gtnewhorizons.retrofuturagradle")
|
|
}
|
|
}
|
|
gradlePluginPortal()
|
|
mavenCentral()
|
|
mavenLocal()
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id 'com.diffplug.blowdryerSetup' version '1.6.0'
|
|
id 'org.gradle.toolchains.foojay-resolver-convention' version '0.4.0' // Provides java toolchains
|
|
}
|
|
|
|
blowdryerSetup {
|
|
repoSubfolder 'gtnhShared'
|
|
github('GTNewHorizons/ExampleMod1.7.10', 'tag', '0.2.2')
|
|
//devLocal '.' // Use this when testing config updates locally
|
|
}
|