Skip to content

Commit ae547cc

Browse files
authored
Move lib to debugjsse (#22)
1 parent 579c7ff commit ae547cc

17 files changed

+9
-9
lines changed

lib/build.gradle.kts renamed to debugjsse/build.gradle.kts

+7-7
Original file line numberDiff line numberDiff line change
@@ -50,13 +50,13 @@ publishing { //https://docs.gradle.org/current/userguide/publishing_maven.html
5050
create<MavenPublication>("mavenJava") { //name of the publication
5151
from(components["java"])
5252
pom {
53-
name.set("JMXBuilder")
54-
description.set("JMXBuilder")
55-
url.set("https://github.com/tersesystems/jmxbuilder")
53+
name.set("debugjsse")
54+
description.set("Debug JSSE Provider")
55+
url.set("https://github.com/tersesystems/debugjsse")
5656
licenses {
5757
license {
5858
name.set("Apache2")
59-
url.set("https://github.com/tersesystems/jmxbuilder/blob/main/LICENSE")
59+
url.set("https://github.com/tersesystems/debugjsse/blob/main/LICENSE")
6060
}
6161
}
6262
developers {
@@ -67,9 +67,9 @@ publishing { //https://docs.gradle.org/current/userguide/publishing_maven.html
6767
}
6868
}
6969
scm {
70-
connection.set("scm:git:https://github.com/tersesystems/jmxbuilder.git")
71-
developerConnection.set("scm:git:https://github.com/tersesystems/jmxbuilder.git")
72-
url.set("https://github.com/tersesystems/jmxbuilder.git")
70+
connection.set("scm:git:https://github.com/tersesystems/debugjsse.git")
71+
developerConnection.set("scm:git:https://github.com/tersesystems/debugjsse.git")
72+
url.set("https://github.com/tersesystems/debugjsse.git")
7373
}
7474
}
7575
}

settings.gradle.kts

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ plugins {
1010
id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0"
1111
}
1212

13-
rootProject.name = "debugjsse"
14-
include("lib")
13+
rootProject.name = "debugjsse-project"
14+
include("debugjsse")

0 commit comments

Comments
 (0)