Pre-1.0.0 release prep.
This commit is contained in:
parent
483f794966
commit
0f44c9fa27
8 changed files with 14 additions and 16 deletions
|
@ -16,7 +16,7 @@ plugins {
|
|||
}
|
||||
|
||||
group = "net.thauvin.erik"
|
||||
version = "0.9.3"
|
||||
version = "1.0.0"
|
||||
description = "Pinboard Poster for Kotlin/Java"
|
||||
|
||||
val mavenUrl = "https://github.com/ethauvin/$name"
|
||||
|
@ -36,6 +36,7 @@ application {
|
|||
mainClassName = "net.thauvin.erik.pinboard.PinboardPosterKt"
|
||||
}
|
||||
|
||||
|
||||
tasks {
|
||||
withType(Test::class.java).all {
|
||||
useTestNG()
|
||||
|
@ -64,6 +65,7 @@ tasks {
|
|||
// See https://github.com/Kotlin/dokka/issues/196
|
||||
externalDocumentationLink(delegateClosureOf<DokkaConfiguration.ExternalDocumentationLink.Builder> {
|
||||
url = URL("https://docs.oracle.com/javase/8/docs/api/")
|
||||
packageListUrl = URL("https://docs.oracle.com/javase/8/docs/api/package-list")
|
||||
})
|
||||
|
||||
includeNonPublic = false
|
||||
|
@ -150,8 +152,8 @@ tasks {
|
|||
|
||||
fun findProperty(s: String) = project.findProperty(s) as String?
|
||||
bintray {
|
||||
user = findProperty("bintrayUser")
|
||||
key = findProperty("bintrayApiKey")
|
||||
user = findProperty("bintray.user")
|
||||
key = findProperty("bintray.apikey")
|
||||
publish = true
|
||||
setPublications(publicationName)
|
||||
pkg.apply {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue