Skip to content

Commit 5b0abd6

Browse files
committed
update
1 parent fe42071 commit 5b0abd6

File tree

2 files changed

+12
-5
lines changed

2 files changed

+12
-5
lines changed

build.gradle.kts

+11-4
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,13 @@ plugins {
55
}
66

77
repositories {
8+
mavenLocal()
89
mavenCentral()
10+
maven("https://jitpack.io")
911
}
1012

1113
group = "com.purenex"
12-
version = "1.0-SNAPSHOT"
14+
version = "1.1"
1315

1416
dependencies {
1517
implementation("jline:jline:2.14.6")
@@ -51,9 +53,14 @@ tasks {
5153
}
5254

5355
publishing {
54-
publications {
55-
register<MavenPublication>("gpr") {
56-
from(components["java"])
56+
publications.create<MavenPublication>("maven") {
57+
from(components["java"])
58+
pom {
59+
repositories {
60+
mavenLocal()
61+
mavenCentral()
62+
maven("https://jitpack.io")
63+
}
5764
}
5865
}
5966
}

settings.gradle.kts

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

7-
rootProject.name = "newpure"
7+
rootProject.name = "Pure"

0 commit comments

Comments
 (0)