Switch to publish-plugin and fix pom info for orx-git-archiver-gradle
This commit is contained in:
@@ -14,4 +14,39 @@ gradlePlugin {
|
||||
implementationClass = "org.openrndr.extra.gitarchiver.GitArchiveToMarkdown"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
publishing {
|
||||
afterEvaluate {
|
||||
publications {
|
||||
withType(MavenPublication::class) {
|
||||
pom {
|
||||
name.set("gitarchiver tomarkdown")
|
||||
description.set("gitarchiver to markdown gradle plugin")
|
||||
url.set("https://openrndr.org")
|
||||
developers {
|
||||
developer {
|
||||
id.set("edwinjakobs")
|
||||
name.set("Edwin Jakobs")
|
||||
email.set("edwin@openrndr.org")
|
||||
}
|
||||
}
|
||||
|
||||
licenses {
|
||||
license {
|
||||
name.set("BSD-2-Clause")
|
||||
url.set("https://github.com/openrndr/openrndr/blob/master/LICENSE")
|
||||
distribution.set("repo")
|
||||
}
|
||||
}
|
||||
|
||||
scm {
|
||||
connection.set("scm:git:git@github.com:openrndr/orx.git")
|
||||
developerConnection.set("scm:git:ssh://github.com/openrndr/orx.git")
|
||||
url.set("https://github.com/openrndr/openrndr")
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user