Skip to content

Commit

Permalink
gradle best practices plus version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
mrbusche committed Dec 26, 2024
1 parent 78ee3de commit 4d8a43b
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

group = "com.trap-scoring"
version = "7.0.0"
version = "8.0.0"

java {
toolchain {
Expand All @@ -18,13 +18,15 @@ repositories {
maven { url = uri("https://repo.spring.io/milestone") }
}

val poiOoxmlVersion = "5.3.0"
val openCsvVersion = "5.9"

dependencies {
implementation("org.apache.poi:poi-ooxml:$poiOoxmlVersion")
implementation("com.opencsv:opencsv:$openCsvVersion")
implementation("org.springframework.boot:spring-boot-starter-test")
testRuntimeOnly("org.junit.platform:junit-platform-launcher")

implementation("org.apache.poi:poi-ooxml:5.3.0")

implementation("com.opencsv:opencsv:5.9")
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
}

tasks.withType<Test> {
Expand Down

0 comments on commit 4d8a43b

Please sign in to comment.