Skip to content
This repository has been archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
feat :: set jar enabled false
Browse files Browse the repository at this point in the history
  • Loading branch information
LimiteDiTempo committed Aug 26, 2024
1 parent 45c532e commit 262f4c9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ dependencies {
implementation("com.querydsl:querydsl-jpa:5.0.0:jakarta")
kapt("com.querydsl:querydsl-apt:5.0.0:jakarta")
implementation("org.springdoc:springdoc-openapi-starter-webmvc-ui:2.0.2")
testRuntimeOnly ("org.junit.platform:junit-platform-launcher")
}

kotlin {
Expand All @@ -51,3 +50,7 @@ kotlin {
tasks.withType<Test> {
useJUnitPlatform()
}

tasks.named<Jar>("jar") {
enabled = false
}

0 comments on commit 262f4c9

Please sign in to comment.