-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
167 lines (129 loc) · 5.51 KB
/
build.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
plugins {
id 'fabric-loom' version '1.6-SNAPSHOT'
id 'maven-publish'
}
version = project.mod_version
group = project.maven_group
base {
archivesName = project.archives_base_name
}
repositories {
maven {
url "https://cursemaven.com"
content {
includeGroup "curse.maven"
}
}
maven {url = "https://maven.kyrptonaught.dev"}
maven { url = "https://maven.quiltmc.org/repository/release" } // QM
maven { url = "https://maven.parchmentmc.org" } // Parchment
maven { url = "https://maven.fabricmc.net/" } // FAPI, Loader
maven { url = "https://mvn.devos.one/snapshots/" } // Registrate, Porting Lib, Forge Tags, Milk Lib
maven { url = "https://jitpack.io/" } // for Porting Lib: Mixin Extras, Fabric ASM
maven { url = "https://cursemaven.com" } // Forge Config API Port
maven { url = "https://maven.tterrag.com/" } // Flywheel
maven { url = "https://maven.shedaniel.me/" } // REI and deps
maven { url = "https://api.modrinth.com/maven" } // LazyDFU, Sodium, Sandwichable
maven { url = "https://maven.terraformersmc.com/" } // Mod Menu, Trinkets
maven { url = "https://squiddev.cc/maven" } // CC:T
maven { url = "https://modmaven.dev" } // Botania
maven { // Reach Entity Attributes
url = "https://maven.jamieswhiteshirt.com/libs-release"
content { includeGroup("com.jamieswhiteshirt") }
}
maven { url = "https://maven.ladysnake.org/releases" } // CCA, for Trinkets
maven { url = "https://maven.enginehub.org/repo/" }
// Add repositories to retrieve artifacts from in here.
// You should only use this when depending on other mods because
// Loom adds the essential maven repositories to download Minecraft and libraries from automatically.
// See https://docs.gradle.org/current/userguide/declaring_repositories.html
// for more information about repositories.
}
fabricApi {
configureDataGeneration()
}
dependencies {
// To change the versions see the gradle.properties file
minecraft "com.mojang:minecraft:${project.minecraft_version}"
mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2"
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"
// Fabric API. This is technically optional, but you probably want it anyway.
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
modImplementation "curse.maven:terralith-513688:4938254"
modImplementation 'net.kyrptonaught:customportalapi:0.0.1-beta64-1.20'
include 'net.kyrptonaught:customportalapi:0.0.1-beta64-1.20'
modImplementation "com.sk89q.worldedit:worldedit-fabric-mc1.20:7.2.15"
//modImplementation "curse.maven:puzzles-lib-495476:5475404"
devEnv(dependencies)
compat(dependencies)
dependencies(dependencies)
}
// actual dependencies for Mod
def dependencies(DependencyHandler deps) {
// for (String module in port_lib_modules.split(",")) {
// deps.modApi(deps.include("io.github.fabricators_of_create.Porting-Lib:$module:$port_lib_version"))
// }
// deps.modApi(deps.include("curse.maven:farmers-delight-refabricated-993166:$farmers_version"))
// deps.modApi(deps.include( "curse.maven:chipped-456956:$chipped_version"))
// deps.modApi(deps.include( "curse.maven:athena-841890:$athena_version"))
// deps.modApi(deps.include( "curse.maven:resourceful-lib-570073:$resourceful_version"))
//
// deps.modApi(deps.include("curse.maven:forge-config-api-port-fabric-547434:$config_api_id"))
// deps.modApi(deps.include("com.jozufozu.flywheel:flywheel-fabric-$flywheel_minecraft_version:$flywheel_version"))
// deps.modApi(deps.include("me.shedaniel.cloth:cloth-config-fabric:11.1.118"))
}
// setup mods that enhance development
def devEnv(DependencyHandler deps) {
deps.modLocalRuntime("com.terraformersmc:modmenu:$modmenu_version")
// for Trinkets
// have deprecated modules present at runtime only
deps.modLocalRuntime("net.fabricmc.fabric-api:fabric-api-deprecated:$fabric_version")
}
// setup mods that are available for compatibility reasons
def compat(DependencyHandler deps) {
deps.modCompileOnly("com.terraformersmc:modmenu:$modmenu_version")
//deps.modLocalRuntime("curse.maven:distant-horizons-508933:5390046")
// Uncomment the following line to enable the deprecated Fabric API modules.
// These are included in the Fabric API production distribution and allow you to update your mod to the latest modules at a later more convenient time.
// modImplementation "net.fabricmc.fabric-api:fabric-api-deprecated:${project.fabric_version}"
}
processResources {
inputs.property "version", project.version
filesMatching("fabric.mod.json") {
expand "version": project.version
}
}
tasks.withType(JavaCompile).configureEach {
it.options.release = 17
}
java {
// Loom will automatically attach sourcesJar to a RemapSourcesJar task and to the "build" task
// if it is present.
// If you remove this line, sources will not be generated.
withSourcesJar()
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
jar {
from("LICENSE") {
rename { "${it}_${project.base.archivesName.get()}"}
}
}
// configure the maven publication
publishing {
publications {
mavenJava(MavenPublication) {
from components.java
}
}
// See https://docs.gradle.org/current/userguide/publishing_maven.html for information on how to set up publishing.
repositories {
// Add repositories to publish to here.
// Notice: This block does NOT have the same function as the block in the top level.
// The repositories here will be used for publishing your artifact, not for
// retrieving dependencies.
}
loom {
accessWidenerPath = file("src/main/resources/edumia.accesswidener")
}
}