Skip to content

Commit b3019e9

Browse files
committed
update buildscript
1 parent ce242eb commit b3019e9

File tree

2 files changed

+25
-15
lines changed

2 files changed

+25
-15
lines changed

build.gradle.kts

Lines changed: 3 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id("fpgradle-minecraft") version("0.1.11")
2+
id("fpgradle-minecraft") version("0.5.0")
33
}
44

55
group = "com.falsepattern"
@@ -43,20 +43,8 @@ minecraft_fp {
4343
}
4444

4545
repositories {
46-
maven {
47-
name = "horizon"
48-
url = uri("https://mvn.falsepattern.com/horizon/")
49-
content {
50-
includeGroup("com.gtnewhorizons.retrofuturabootstrap")
51-
}
52-
}
53-
maven {
54-
name = "jitpack"
55-
url = uri("https://mvn.falsepattern.com/jitpack/")
56-
content {
57-
includeGroup("com.github.LegacyModdingMC.UniMixins")
58-
}
59-
}
46+
exclusive(maven("horizon", "https://mvn.falsepattern.com/horizon/"), "com.gtnewhorizons.retrofuturabootstrap")
47+
exclusive(jitpack(), "com.github.LegacyModdingMC.UniMixins")
6048
}
6149

6250
dependencies {

settings.gradle.kts

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,30 @@ pluginManagement {
33
maven {
44
url = uri("https://mvn.falsepattern.com/fpgradle/")
55
name = "fpgradle"
6+
content {
7+
includeModule("com.gtnewhorizons", "retrofuturagradle")
8+
includeModule("com.falsepattern", "fpgradle-plugin")
9+
includeModule("fpgradle-minecraft", "fpgradle-minecraft.gradle.plugin")
10+
}
611
}
12+
maven {
13+
url = uri("https://mvn.falsepattern.com/releases/")
14+
name = "mavenpattern"
15+
content {
16+
includeGroup("com.falsepattern")
17+
}
18+
}
19+
maven {
20+
url = uri("https://mvn.falsepattern.com/jitpack/")
21+
name = "jitpack"
22+
content {
23+
includeModule("io.github.LegacyModdingMC.MappingGenerator", "MappingGenerator")
24+
}
25+
}
26+
mavenCentral()
27+
gradlePluginPortal()
728
}
829
}
930

31+
1032
rootProject.name = "falsepatternlib"

0 commit comments

Comments
 (0)