-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
35 lines (33 loc) · 1.06 KB
/
Copy pathbuild.gradle
File metadata and controls
35 lines (33 loc) · 1.06 KB
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
plugins {
// see https://fabricmc.net/develop/ for new versions
id 'fabric-loom' version '1.7-SNAPSHOT' apply false
// see https://projects.neoforged.net/neoforged/moddevgradle for new versions
id 'net.neoforged.moddev' version '0.1.110' apply false
id 'com.matyrobbrt.mc.registrationutils' version '1.21.0-0.2.1'
// // Required for NeoGradle
// id "org.jetbrains.gradle.plugin.idea-ext" version "1.1.7"
}
registrationUtils {
group 'com.ryankshah.fieldtofork.registration'
projects {
fabric { type 'fabric' } // The fabric project
neoforge { type 'neoforge' } // The neoforge project
common { type 'common' } // The common project
}
}
repositories {
maven {
url = "https://jm.gserv.me/repository/maven-public/"
}
maven {
name = "Forge"
url = "https://maven.minecraftforge.net"
}
maven {
name = 'GeckoLib'
url 'https://dl.cloudsmith.io/public/geckolib3/geckolib/maven/'
content {
includeGroup("software.bernie.geckolib")
}
}
}