Skip to content

Commit

Permalink
update to publish to maven central
Browse files Browse the repository at this point in the history
  • Loading branch information
dhakehurst committed Apr 16, 2021
1 parent 8a203ba commit ae355cc
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions net.akehurst.language/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,28 @@ subprojects {
}
publications.withType<MavenPublication> {
artifact(javadocJar.get())

pom {
name.set("AGL Processor")
description.set("Dynamic, scan-on-demand, parsing; when a regular expression is just not enough")
url.set("https://medium.com/@dr.david.h.akehurst/a-kotlin-multi-platform-parser-usable-from-a-jvm-or-javascript-59e870832a79")

licenses {
license {
name.set("The Apache License, Version 2.0")
url.set("http://www.apache.org/licenses/LICENSE-2.0.txt")
}
}
developers {
developer {
name.set("Dr. David H. Akehurst")
email.set("[email protected]")
}
}
scm {
url.set("https://github.com/dhakehurst/net.akehurst.language")
}
}
}
}

Expand Down

0 comments on commit ae355cc

Please sign in to comment.