File tree Expand file tree Collapse file tree 2 files changed +34
-0
lines changed Expand file tree Collapse file tree 2 files changed +34
-0
lines changed Original file line number Diff line number Diff line change 14
14
15
15
plugins {
16
16
id(" build-logic.java-application-conventions" )
17
+ id(" maven-publish" )
17
18
}
18
19
19
20
group = " org.swift.swiftkit"
20
21
version = " 1.0-SNAPSHOT"
22
+ base {
23
+ archivesName = " swiftkit-core"
24
+ }
21
25
22
26
repositories {
27
+ mavenLocal()
23
28
mavenCentral()
24
29
}
25
30
31
+ publishing {
32
+ publications {
33
+ maven(MavenPublication ) {
34
+ groupId = group
35
+ artifactId = ' swiftkit-core'
36
+ version = ' 1.0-SNAPSHOT'
37
+
38
+ from components. java
39
+ }
40
+ }
41
+ }
42
+
26
43
java {
27
44
toolchain {
28
45
languageVersion. set(JavaLanguageVersion . of(17 ))
Original file line number Diff line number Diff line change 14
14
15
15
plugins {
16
16
id(" build-logic.java-application-conventions" )
17
+ id(" maven-publish" )
17
18
}
18
19
19
20
group = " org.swift.swiftkit"
20
21
version = " 1.0-SNAPSHOT"
22
+ base {
23
+ archivesName = " swiftkit-ffm"
24
+ }
21
25
22
26
repositories {
27
+ mavenLocal()
23
28
mavenCentral()
24
29
}
25
30
31
+ publishing {
32
+ publications {
33
+ maven(MavenPublication ) {
34
+ groupId = group
35
+ artifactId = ' swiftkit-ffm'
36
+ version = ' 1.0-SNAPSHOT'
37
+
38
+ from components. java
39
+ }
40
+ }
41
+ }
42
+
26
43
java {
27
44
toolchain {
28
45
languageVersion. set(JavaLanguageVersion . of(24 ))
You can’t perform that action at this time.
0 commit comments