Skip to content

Latest commit

 

History

History
35 lines (29 loc) · 925 Bytes

README.md

File metadata and controls

35 lines (29 loc) · 925 Bytes

Maven metadata URL

GameUnit

A small utility mod for saving gametest results in the JUnit5 XML format.

Usage

Just add the following to your build.gradle

repositories {
    maven {
        url "https://maven.galacticraft.dev/"
    }
}

dependencies {
    modRuntime "dev.galacticraft:GameUnit:$gameunitVersion"
}
Gradle Kotlin DSL

If you're using a Kotlin DSL just add the following to your build.gradle.kts.

repositories {
    maven("https://maven.galacticraft.dev/")
}

dependencies {
    modRuntime("dev.galacticraft:GameUnit:$gameunitVersion")
}

And that's it.
When you run your gametest server task the results will be available at run/TEST-gameunit.xml.