@@ -72,15 +72,13 @@ neoForge {
7272 runs {
7373 // applies to all the run configs below
7474 configureEach {
75-
7675 logLevel.set(Level .DEBUG )
77-
7876 sourceSet = project.sourceSets.main
7977
80- if ( ! System .getenv().containsKey( " CI " )) {
81- // JetBrains Runtime Hotswap
82- // jvmArgument("-XX:+AllowEnhancedClassRedefinition")
83- }
78+ // JetBrains Runtime Hotswap
79+ // if (!System.getenv().containsKey("CI")) {
80+ // jvmArgument("-XX:+AllowEnhancedClassRedefinition")
81+ // }
8482 }
8583
8684 create(" client" ) {
@@ -127,7 +125,6 @@ neoForge {
127125 environment.put(" CM_TEST_RESOURCES" , file(" src/test/resources" ).path)
128126
129127 sourceSet = project.sourceSets.test
130- // sourceSets.add(project.sourceSets.test.get())
131128 }
132129 }
133130}
@@ -141,8 +138,8 @@ repositories {
141138 }
142139 }
143140
144- maven(" https://maven.pkg.github.com/compactmods/compactmachines-core " ) {
145- name = " Github PKG Core "
141+ maven(" https://maven.pkg.github.com/compactmods/feather " ) {
142+ name = " Github PKG - Feather "
146143 credentials {
147144 username = project.findProperty(" gpr.user" ) as String? ? : System .getenv(" GITHUB_ACTOR" )
148145 password = project.findProperty(" gpr.token" ) as String? ? : System .getenv(" GITHUB_TOKEN" )
@@ -173,9 +170,9 @@ dependencies {
173170 testImplementation(libraries.jnanoid)
174171 jarJar(libraries.jnanoid)
175172
176- jarJar(coreApi)
177173 compileOnly(coreApi)
178174 testCompileOnly(coreApi)
175+ jarJar(coreApi)
179176
180177 compileOnly(libraries.feather)
181178 testImplementation(libraries.feather)
@@ -189,10 +186,6 @@ dependencies {
189186
190187 additionalRuntimeClasspath(libraries.feather)
191188 additionalRuntimeClasspath(libraries.jnanoid)
192-
193- // Mods
194- // compileOnly(mods.bundles.jei)
195- // compileOnly(mods.jade)
196189}
197190
198191tasks.withType<Test > {
@@ -234,7 +227,7 @@ tasks.withType<Jar> {
234227}
235228
236229tasks.withType<ProcessResources >().configureEach {
237- var replaceProperties: Map <String , Any > = mapOf (
230+ val replaceProperties: Map <String , Any > = mapOf (
238231 " minecraft_version" to mojang.versions.minecraft.get(),
239232 " neo_version" to neoforged.versions.neoforge.get(),
240233 " minecraft_version_range" to mojang.versions.minecraftRange.get(),
0 commit comments