Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
mvysny committed Nov 1, 2023
1 parent 1e91f7c commit e90f4e5
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -92,25 +92,25 @@ publishing {
this.artifactId = "vok-orm"
version = project.version.toString()
pom {
description.set("A very simple persistence framework, built on top of jdbi")
name.set("VoK-ORM")
url.set("https://github.com/mvysny/vok-orm")
description = "A very simple persistence framework, built on top of jdbi"
name = "VoK-ORM"
url = "https://github.com/mvysny/vok-orm"
licenses {
license {
name.set("The MIT License")
url.set("https://opensource.org/licenses/MIT")
distribution.set("repo")
name = "The MIT License"
url = "https://opensource.org/licenses/MIT"
distribution = "repo"
}
}
developers {
developer {
id.set("mavi")
name.set("Martin Vysny")
email.set("[email protected]")
id = "mavi"
name = "Martin Vysny"
email = "[email protected]"
}
}
scm {
url.set("https://github.com/mvysny/vok-orm")
url = "https://github.com/mvysny/vok-orm"
}
}
from(components["java"])
Expand All @@ -125,7 +125,7 @@ signing {
tasks.withType<Test> {
useJUnitPlatform()
testLogging {
// to see the exceptions of failed tests in Travis-CI console.
// to see the stacktraces of failed tests in the CI console.
exceptionFormat = TestExceptionFormat.FULL
showStandardStreams = true
}
Expand Down

0 comments on commit e90f4e5

Please sign in to comment.