-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
137 lines (111 loc) · 2.95 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
plugins {
id 'fabric-loom' version '0.12-SNAPSHOT'
id 'maven-publish'
id "com.modrinth.minotaur" version "2.+"
id "com.matthewprenger.cursegradle" version "1.+"
id "com.github.breadmoirai.github-release" version "2.+"
}
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
archivesBaseName = project.archives_base_name
version = project.mod_version
group = project.maven_group
loom {
//accessWidenerPath = file("src/main/resources/nochatreports.accesswidener")
}
repositories {
// So far none...
}
dependencies {
minecraft "com.mojang:minecraft:${project.minecraft_version}"
mappings loom.officialMojangMappings()
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
}
processResources {
inputs.property "version", project.version
filesMatching("fabric.mod.json") {
expand "version": project.version
}
}
gradle.projectsEvaluated({
githubRelease {
token findProperty('githubKey') ?: 0
owner "Aizistral-Studios"
repo "Trustless-Authentication"
tagName project.version
targetCommitish "dungeon-master"
releaseName project.version
body new File('docs/CHANGELOG.md').getText('UTF-8')
draft false
prerelease false
releaseAssets(remapJar)
overwrite false
dryRun false
apiEndpoint "https://api.github.com"
client
}
})
tasks.withType(JavaCompile).configureEach {
it.options.release = 17
}
java {
// withSourcesJar()
}
jar {
from("LICENSE") {
// NO-OP
}
}
curseforge {
project {
println("Pushing CurseGradle specifications for project ID: ${curse_id}")
// Specified as cmd argument
apiKey = findProperty('curseKey') ?: 'none'
id = "${curse_id}"
releaseType = "${curse_release}"
changelogType = 'html'
changelog = file('docs/changelog.html')
mainArtifact(remapJar)
addGameVersion '1.19.1'
addGameVersion 'Fabric'
addGameVersion 'Quilt'
addGameVersion 'Java 17'
relations {
requiredLibrary 'fabric-api'
}
afterEvaluate {
uploadTask.dependsOn(remapJar)
}
//debug = true
//addArtifact(sourcesJar)
//addArtifact(apiJar)
}
options {
forgeGradleIntegration = false
}
}
modrinth {
token = findProperty('modrinthKey') ?: 'none'
projectId = "no-chat-reports"
versionNumber = "Fabric-" + project.mod_version
versionName = "No Chat Reports Fabric-" + project.mod_version
versionType = "release"
changelog = rootProject.file("docs/changelog.html").text
uploadFile = remapJar
gameVersions = ["1.19.1-pre2"]
loaders = ['fabric', 'quilt']
dependencies {
// The scope can be `required`, `optional`, or `incompatible`
required.project "fabric-api"
}
//syncBodyFrom = rootProject.file("docs/README.md").text
}
afterEvaluate {
upload.dependsOn(remapJar)
}
task upload {
dependsOn('githubRelease')
//dependsOn('curseforge')
//dependsOn('curseforge')
}