User: kyle wood Date: 04 Sep 24 23:39 Revision: 8467b15ed8602608c662281b957f1cdb3b5609a5 Summary: Fix junit engine typo TeamCity URL: https://ci.mcdev.io/viewModification.html?tab=vcsModificationFiles&modId=9655&personal=false Index: build.gradle.kts =================================================================== --- build.gradle.kts (revision 46caaf6beac4c209181f806063dbc468051ee077) +++ build.gradle.kts (revision 8467b15ed8602608c662281b957f1cdb3b5609a5) @@ -141,11 +141,6 @@ gradleToolingExtension(libs.groovy) gradleToolingExtension(libs.gradleToolingExtension) gradleToolingExtension(libs.annotations) - - testImplementation(libs.junit.api) - testCompileOnly(libs.junit.vintage) // Hack to get tests to compile - testRuntimeOnly(libs.junit.entine) - testRuntimeOnly(libs.junit.platform.launcher) } val artifactType = Attribute.of("artifactType", String::class.java) Index: buildSrc/src/main/kotlin/mcdev-core.gradle.kts =================================================================== --- buildSrc/src/main/kotlin/mcdev-core.gradle.kts (revision 46caaf6beac4c209181f806063dbc468051ee077) +++ buildSrc/src/main/kotlin/mcdev-core.gradle.kts (revision 8467b15ed8602608c662281b957f1cdb3b5609a5) @@ -108,7 +108,8 @@ implementation(libs.bundles.coroutines) testImplementation(libs.junit.api) - testRuntimeOnly(libs.junit.entine) + testCompileOnly(libs.junit.vintage) // Hack to get tests to compile and run + testRuntimeOnly(libs.junit.engine) testRuntimeOnly(libs.junit.platform.launcher) } Index: gradle/libs.versions.toml =================================================================== --- gradle/libs.versions.toml (revision 46caaf6beac4c209181f806063dbc468051ee077) +++ gradle/libs.versions.toml (revision 8467b15ed8602608c662281b957f1cdb3b5609a5) @@ -68,7 +68,7 @@ test-nbt = "com.demonwav.mcdev:all-types-nbt:1.0" junit-api = { module = "org.junit.jupiter:junit-jupiter-api", version.ref = "junit" } -junit-entine = { module = "org.junit.jupiter:junit-jupiter-engine", version.ref = "junit" } +junit-engine = { module = "org.junit.jupiter:junit-jupiter-engine", version.ref = "junit" } junit-vintage = { module = "org.junit.vintage:junit-vintage-engine", version.ref = "junit" } junit-platform-launcher = { module = "org.junit.platform:junit-platform-launcher", version.ref = "junit-platform" } Index: obfuscation-explorer/build.gradle.kts =================================================================== --- obfuscation-explorer/build.gradle.kts (revision 46caaf6beac4c209181f806063dbc468051ee077) +++ obfuscation-explorer/build.gradle.kts (revision 8467b15ed8602608c662281b957f1cdb3b5609a5) @@ -49,8 +49,6 @@ testFramework(TestFrameworkType.JUnit5) testFramework(TestFrameworkType.Platform) } - - testCompileOnly(libs.junit.vintage) // Hack to get tests to compile and run } val generateSrgLexer by lexer("SrgLexer", "io/mcdev/obfex/formats/srg/gen")