generated from WeatheringWithMe/WWM-TemplateDevEnv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle
49 lines (46 loc) · 1.6 KB
/
settings.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
pluginManagement {
repositories {
maven {
// RFG Maven
name 'GT Neo Horizon 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'
}
dependencyResolutionManagement {
versionCatalogs {
libs {
plugin('rfg', 'com.gtnewhorizons.retrofuturagradle').version('1.3.26')
plugin('idea-ext', 'org.jetbrains.gradle.plugin.idea-ext').version('1.1.7')
}
versions {
/*
* How to use this version control?
* library(String alias, String group, String artifact).version(String version)
*
* Example for call it in <gradle/scripts/dependencies.gradle> :
* implementation versions.library.<alias>
*
* You can use bundle(String alias, String[] libraryAlias) to package some libraries to a bundle
* Then you can call it like 'versions.bundle.<alias>'.
*
* More features: https://docs.gradle.org/current/userguide/platforms.html
*/
}
}
}
// Due to an IntelliJ bug, this has to be done
// rootProject.name = archives_base_name
rootProject.name = rootProject.projectDir.getName()