Skip to content

Commit dea745d

Browse files
committed
New test for jitpack
1 parent 53a117c commit dea745d

File tree

5 files changed

+11
-2
lines changed

5 files changed

+11
-2
lines changed

lib/build.gradle.kts build.gradle.kts

+10-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44
`maven-publish` // Add ./gradlew publishToMavenLocal
55
}
66

7-
version = "0.0.2"
7+
version = "0.0.3"
88
group = "fr.formiko.utils"
99

1010
repositories {
@@ -43,3 +43,12 @@ tasks.named<Test>("test") {
4343
// Use JUnit Platform for unit tests.
4444
useJUnitPlatform()
4545
}
46+
47+
48+
publishing {
49+
publications {
50+
create<MavenPublication>("maven") {
51+
from(components["java"])
52+
}
53+
}
54+
}

settings.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ plugins {
44
}
55

66
rootProject.name = "Utils"
7-
include("lib")
7+
// include("lib")

0 commit comments

Comments
 (0)