Skip to content

Commit

Permalink
Move lib to debugjsse (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
wsargent authored Dec 4, 2024
1 parent 579c7ff commit ae547cc
Show file tree
Hide file tree
Showing 17 changed files with 9 additions and 9 deletions.
14 changes: 7 additions & 7 deletions lib/build.gradle.kts → debugjsse/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,13 @@ publishing { //https://docs.gradle.org/current/userguide/publishing_maven.html
create<MavenPublication>("mavenJava") { //name of the publication
from(components["java"])
pom {
name.set("JMXBuilder")
description.set("JMXBuilder")
url.set("https://github.com/tersesystems/jmxbuilder")
name.set("debugjsse")
description.set("Debug JSSE Provider")
url.set("https://github.com/tersesystems/debugjsse")
licenses {
license {
name.set("Apache2")
url.set("https://github.com/tersesystems/jmxbuilder/blob/main/LICENSE")
url.set("https://github.com/tersesystems/debugjsse/blob/main/LICENSE")
}
}
developers {
Expand All @@ -67,9 +67,9 @@ publishing { //https://docs.gradle.org/current/userguide/publishing_maven.html
}
}
scm {
connection.set("scm:git:https://github.com/tersesystems/jmxbuilder.git")
developerConnection.set("scm:git:https://github.com/tersesystems/jmxbuilder.git")
url.set("https://github.com/tersesystems/jmxbuilder.git")
connection.set("scm:git:https://github.com/tersesystems/debugjsse.git")
developerConnection.set("scm:git:https://github.com/tersesystems/debugjsse.git")
url.set("https://github.com/tersesystems/debugjsse.git")
}
}
}
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0"
}

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

0 comments on commit ae547cc

Please sign in to comment.