Skip to content

Commit 867fb5f

Browse files
committed
release : Ready for release ver 0.0.1
1 parent e4321af commit 867fb5f

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

build.gradle

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ plugins {
22
id 'java'
33
id 'org.springframework.boot' version '2.7.13'
44
id 'io.spring.dependency-management' version '1.1.4'
5+
id 'maven-publish'
56
}
67

78
group = 'io.wwan13'
@@ -41,3 +42,26 @@ dependencies {
4142
tasks.named('test') {
4243
useJUnitPlatform()
4344
}
45+
46+
tasks.jar {
47+
enabled = true
48+
archiveClassifier.set("")
49+
}
50+
51+
tasks.bootJar {
52+
enabled = false
53+
archiveClassifier.set("")
54+
}
55+
56+
publishing {
57+
publications {
58+
maven(MavenPublication) {
59+
from components.java
60+
}
61+
}
62+
}
63+
64+
wrapper {
65+
gradleVersion = "7.5"
66+
distributionType = Wrapper.DistributionType.ALL
67+
}

0 commit comments

Comments
 (0)