Skip to content

Commit

Permalink
release : Ready for release ver 0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
wwan13 committed Jun 9, 2024
1 parent e4321af commit 867fb5f
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ plugins {
id 'java'
id 'org.springframework.boot' version '2.7.13'
id 'io.spring.dependency-management' version '1.1.4'
id 'maven-publish'
}

group = 'io.wwan13'
Expand Down Expand Up @@ -41,3 +42,26 @@ dependencies {
tasks.named('test') {
useJUnitPlatform()
}

tasks.jar {
enabled = true
archiveClassifier.set("")
}

tasks.bootJar {
enabled = false
archiveClassifier.set("")
}

publishing {
publications {
maven(MavenPublication) {
from components.java
}
}
}

wrapper {
gradleVersion = "7.5"
distributionType = Wrapper.DistributionType.ALL
}

0 comments on commit 867fb5f

Please sign in to comment.