You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
apiKey = env.CURSEFORGE_TOKEN.value // This should really be in a gradle.properties file
153
155
project {
154
156
id ="890349"
155
-
mainArtifact(finalJar.get()) {
157
+
mainArtifact(fabricIntermediaryJar.get()) {
156
158
releaseType ="release"
157
159
addGameVersion("1.19.4")
158
160
addGameVersion("1.20")
@@ -165,30 +167,3 @@ curseforge {
165
167
}
166
168
}
167
169
}
168
-
169
-
modrinth {
170
-
token.set(env.MODRINTH_TOKEN.value) // This is the default. Remember to have the MODRINTH_TOKEN environment variable set or else this will fail, or set it to whatever you want - just make sure it stays private!
171
-
projectId.set("mod-sets") // This can be the project ID or the slug. Either will work!
Copy file name to clipboardExpand all lines: fabric/build.gradle.kts
+34
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,10 @@
6
6
"UnstableApiUsage",
7
7
)
8
8
9
+
plugins {
10
+
alias(libs.plugins.minotaur)
11
+
}
12
+
9
13
val archives_name:String by rootProject
10
14
val mod_name:String by rootProject
11
15
@@ -83,3 +87,33 @@ dependencies {
83
87
modRuntimeOnly(kinecraft)
84
88
include(kinecraft)
85
89
}
90
+
91
+
92
+
93
+
modrinth {
94
+
token.set(env.MODRINTH_TOKEN.value) // This is the default. Remember to have the MODRINTH_TOKEN environment variable set or else this will fail, or set it to whatever you want - just make sure it stays private!
95
+
projectId.set("mod-sets") // This can be the project ID or the slug. Either will work!
0 commit comments