We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4321af commit 867fb5fCopy full SHA for 867fb5f
build.gradle
@@ -2,6 +2,7 @@ plugins {
2
id 'java'
3
id 'org.springframework.boot' version '2.7.13'
4
id 'io.spring.dependency-management' version '1.1.4'
5
+ id 'maven-publish'
6
}
7
8
group = 'io.wwan13'
@@ -41,3 +42,26 @@ dependencies {
41
42
tasks.named('test') {
43
useJUnitPlatform()
44
45
+
46
+tasks.jar {
47
+ enabled = true
48
+ archiveClassifier.set("")
49
+}
50
51
+tasks.bootJar {
52
+ enabled = false
53
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