Skip to content

Commit 4afbfa7

Browse files
committed
Update tester, adds keepAlive to dev environment
1 parent 03e3e7a commit 4afbfa7

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

build.gradle

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,7 @@ minecraft {
145145
environment 'MOD_MODULES', String.join(File.pathSeparator, "${mod_id}%%${project.name}.test")
146146
environment 'target', 'fmltestserver'
147147
environment 'targetModId', "${mod_id}"
148+
arg '--keepAlive'
148149
forceExit = false
149150
mods {
150151
compactcrafting {
@@ -206,20 +207,20 @@ repositories {
206207
// location of the maven that hosts JEI files
207208
maven {
208209
name "Progwml Repo"
209-
url "http://dvs1.progwml6.com/files/maven"
210+
url "https://dvs1.progwml6.com/files/maven"
210211
}
211212

212213
// TheOneProbe
213214
maven {
214215
name 'tterrag maven'
215-
url "http://maven.tterrag.com/"
216+
url "https://maven.tterrag.com/"
216217
}
217218

218219
maven {
219220
name "MCJUnitLib - CM Github"
220221
url = uri("https://maven.pkg.github.com/CompactMods/mcjunitlib")
221222
credentials {
222-
username = project.findProperty("gpr.user") ?: System.getenv("GITHUB_ACTOR")
223+
username = project.findProperty("gpr.actor") ?: System.getenv("GITHUB_ACTOR")
223224
password = project.findProperty("gpr.key") ?: System.getenv("GITHUB_TOKEN")
224225
}
225226
}
@@ -310,8 +311,8 @@ publishing {
310311
name = "GitHubPackages"
311312
url = "https://maven.pkg.github.com/CompactMods/CompactCrafting"
312313
credentials {
313-
username = System.getenv("GITHUB_ACTOR")
314-
password = System.getenv("GITHUB_TOKEN")
314+
username = project.findProperty("gpr.actor") ?: System.getenv("GITHUB_ACTOR")
315+
password = project.findProperty("gpr.key") ?: System.getenv("GITHUB_TOKEN")
315316
}
316317
}
317318
}

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ mod_version=1.0.0-beta.5
1212
# Dependencies and Libs
1313
jei_version=7.7.1.110
1414
top_version=1.16-3.1.4-22
15-
mcunittest_version=1.4.6-1.16.5
15+
mcunittest_version=1.7.0-1.16.5
1616

1717
# Curseforge
1818
cf_project=429735

0 commit comments

Comments
 (0)