Skip to content

Commit

Permalink
gradle fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Fornitx committed Jun 28, 2024
1 parent 3a1180d commit 731562c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
6 changes: 2 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
plugins {
kotlin("jvm") version System.getProperty("kotlin_version")
kotlin("jvm")
}

allprojects {
group = "org.example"
version = "1.0-SNAPSHOT"
}

subprojects {
apply(plugin = "org.jetbrains.kotlin.jvm")

java {
Expand All @@ -18,7 +16,7 @@ subprojects {

dependencies {
testImplementation("org.jetbrains.kotlin:kotlin-test")
testImplementation("org.junit.jupiter:junit-jupiter:5.9.3")
testImplementation("org.junit.jupiter:junit-jupiter:5.10.3")
}

kotlin {
Expand Down
6 changes: 6 additions & 0 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
pluginManagement {
plugins {
kotlin("jvm") version System.getProperty("kotlin_version")
}
}

dependencyResolutionManagement {
repositories {
mavenCentral()
Expand Down

0 comments on commit 731562c

Please sign in to comment.