Skip to content

Commit

Permalink
fix: name archive name
Browse files Browse the repository at this point in the history
  • Loading branch information
alarv committed May 30, 2024
1 parent 3997779 commit c1f9955
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ java {
sourceCompatibility = JavaVersion.VERSION_17
}

kotlin {
jvmToolchain(17)
}

configurations {
compileOnly {
extendsFrom(configurations.annotationProcessor.get())
Expand Down Expand Up @@ -92,6 +96,10 @@ tasks.compileKotlin {
dependsOn(tasks.openApiGenerate)
}

tasks.bootJar {
archiveFileName.set("jaqpot-api.jar")
}

tasks.withType<Test> {
useJUnitPlatform()
}
Expand Down

0 comments on commit c1f9955

Please sign in to comment.