-
Notifications
You must be signed in to change notification settings - Fork 7
/
common.gradle
122 lines (105 loc) · 3.94 KB
/
common.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
group = project.maven_group as Object
configurations {
includeTransitive {
transitive = true
}
modRuntimeOnly {
exclude module: "fabric-loader"
}
}
repositories {
// 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.
mavenLocal()
if (project.use_third_party_mods == "true") {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
content {
includeGroup "maven.modrinth"
}
}
maven {
url = "https://cursemaven.com"
content {
includeGroup "curse.maven"
}
}
}
maven {
url = "https://mvnrepository.com/"
}
maven {
name = "TerraformersMC"
url = "https://maven.terraformersmc.com/releases"
}
maven {
url = "https://maven.shedaniel.me/"
}
maven {
name = "JitPack"
url = "https://jitpack.io"
}
maven {
name = "NucleoidMC"
url = "https://maven.nucleoid.xyz/"
}
mavenCentral()
}
dependencies {
modImplementation "net.fabricmc:fabric-loader:${project.fabric_loader_version}"
// Modget Manifest API
implementation("com.github.ReviversMC.modget-manifest-api:compat:${project.modget_manifest_api_version}")
implementation("com.github.ReviversMC.modget-manifest-api:spec3:${project.modget_manifest_api_version}")
implementation("com.github.ReviversMC.modget-manifest-api:spec4:${project.modget_manifest_api_version}")
// implementation(files("libs/modget-manifest-api-compat-0.1.0.jar"))
// implementation(files("libs/modget-manifest-api-spec3-0.2.0.jar"))
// implementation(files("libs/modget-manifest-api-spec4-0.1.0.jar"))
implementation("com.fasterxml.jackson.core:jackson-core:${project.jackson_version}")
implementation("com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:${project.jackson_version}")
implementation("com.fasterxml.jackson.core:jackson-databind:${project.jackson_version}")
implementation("com.fasterxml.jackson.core:jackson-annotations:${project.jackson_version}")
implementation("org.yaml:snakeyaml:${project.snakeyaml_version}")
// Modget Library
implementation("com.github.ReviversMC:modget-lib:${project.modget_lib_version}")
// implementation(files("../libs/modget-lib-${project.modget_lib_version}.jar"))
implementation("org.apache.commons:commons-text:${project.commons_text_version}")
compileOnly "com.github.spotbugs:spotbugs:${project.spotbugs_version}"
}
tasks.withType(JavaCompile).configureEach {
// ensure that the encoding is set to UTF-8, no matter what the system default is
// this fixes some edge cases with special characters not displaying correctly
// see http://yodaconditions.net/blog/fix-for-java-file-encoding-problems-with-gradle.html
// If Javadoc is generated, this must be specified in that task too.
it.options.encoding = "UTF-8"
}
test {
useJUnitPlatform()
}
project.afterEvaluate {
configurations.includeTransitive.incoming.resolutionResult.allComponents {
if (it.id instanceof ModuleComponentIdentifier) {
def that = it
dependencies {
include group: that.id.getGroup(), name: that.id.getModule(), version: that.id.getVersion()
}
}
}
}
processResources {
filesMatching("fabric.mod.json") {
expand project.properties
}
}
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()
}
jar {
from "LICENSE"
}