mirror of
https://github.com/gbevin/urlencoder.git
synced 2025-04-25 07:17:11 -07:00
Minor cleanup
This commit is contained in:
parent
f5485bf2d5
commit
9af78b38d9
2 changed files with 9 additions and 8 deletions
|
@ -7,10 +7,10 @@ plugins {
|
|||
}
|
||||
|
||||
group = "com.uwyn"
|
||||
version = "1.0.1-SNAPSHOT"
|
||||
|
||||
base {
|
||||
archivesName.set("urlencoder")
|
||||
version = "1.0.1-SNAPSHOT"
|
||||
archivesName.set(rootProject.name)
|
||||
}
|
||||
|
||||
java {
|
||||
|
@ -51,11 +51,11 @@ tasks.named<Test>("test") {
|
|||
publishing {
|
||||
publications {
|
||||
create<MavenPublication>("mavenJava") {
|
||||
artifactId = "urlencoder"
|
||||
artifactId = rootProject.name
|
||||
from(components["java"])
|
||||
pom {
|
||||
name.set("URL Encoder")
|
||||
description.set("A simple library to encode/decode URL parameters.")
|
||||
name.set("URLEncoder")
|
||||
description.set("A simple library to encode/decode URL parameters")
|
||||
url.set("https://github.com/gbevin/urlencoder")
|
||||
licenses {
|
||||
license {
|
||||
|
@ -99,4 +99,4 @@ publishing {
|
|||
|
||||
signing {
|
||||
sign(publishing.publications["mavenJava"])
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue