mirror of
https://github.com/FancyInnovations/FancyPlugins.git
synced 2025-12-06 07:43:36 +00:00
Bumps [org.junit.platform:junit-platform-console-standalone](https://github.com/junit-team/junit5) from 1.12.1 to 1.12.2. - [Release notes](https://github.com/junit-team/junit5/releases) - [Commits](https://github.com/junit-team/junit5/commits) --- updated-dependencies: - dependency-name: org.junit.platform:junit-platform-console-standalone dependency-version: 1.12.2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
25 lines
795 B
Kotlin
25 lines
795 B
Kotlin
plugins {
|
|
id("java-library")
|
|
id("io.papermc.paperweight.userdev")
|
|
}
|
|
|
|
val minecraftVersion = "1.21.1"
|
|
|
|
paperweight.reobfArtifactConfiguration = io.papermc.paperweight.userdev.ReobfArtifactConfiguration.MOJANG_PRODUCTION
|
|
|
|
dependencies {
|
|
paperweight.paperDevBundle("$minecraftVersion-R0.1-SNAPSHOT")
|
|
compileOnly(project(":libraries:packets:packets-api"))
|
|
|
|
testImplementation(project(":libraries:packets:packets-api"))
|
|
testImplementation(project(":libraries:packets:implementations:1_20_6"))
|
|
testImplementation("org.junit.jupiter:junit-jupiter-api:5.12.1")
|
|
testImplementation("org.junit.jupiter:junit-jupiter-engine:5.12.1")
|
|
testImplementation("org.junit.platform:junit-platform-console-standalone:1.12.2")
|
|
}
|
|
|
|
tasks {
|
|
test {
|
|
useJUnitPlatform()
|
|
}
|
|
} |