Skip to content

Commit

Permalink
change method name to be multiplatform friendly
Browse files Browse the repository at this point in the history
  • Loading branch information
oshai committed Sep 2, 2018
1 parent 6955b01 commit 8e8372f
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
4 changes: 4 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 1.6.0 + 1.6.10
* Add Markers support for multiplatform [#48](https://github.com/MicroUtils/kotlin-logging/pull/48)
* Improvement to version upload automation [#46](https://github.com/MicroUtils/kotlin-logging/issues/46)

# 1.5.9
* Back to Kotlin 1.2.60, created 3 artifacts on maven central.

Expand Down
15 changes: 13 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ buildscript {

dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4'
}
}

allprojects {
group 'io.github.microutils'
version '1.5.6'
version '1.6.10'

repositories {
mavenCentral()
Expand Down Expand Up @@ -110,6 +110,7 @@ subprojects {
key = 'mykey' //https://bintray.com/profile/edit
// project.hasProperty('bintrayApiKey') ? project.property('bintrayApiKey') : System.getenv('BINTRAY_API_KEY')
publications = ['mavenProject']
publish = true //[Default: false] Whether version should be auto published after an upload
pkg {
repo = 'kotlin-logging'
name = 'kotlin-logging'
Expand All @@ -120,10 +121,20 @@ subprojects {
issueTrackerUrl = 'https://github.com/MicroUtils/kotlin-logging/issues'

githubRepo = 'MicroUtils/kotlin-logging'
githubReleaseNotesFile = 'ChangeLog.md'
version {
name = project.version
desc = "kotlin-logging - Lightweight logging framework for Kotlin"
released = new Date()
gpg {
sign = true //Determines whether to GPG sign the files. The default is false
}
mavenCentralSync {
sync = true //[Default: true] Determines whether to sync the version to Maven Central.
user = 'token' //OSS user token: mandatory
password = 'pass' //OSS user password: mandatory
close = '1' //Optional property. By default the staging repository is closed and artifacts are released to Maven Central. You can optionally turn this behaviour off (by puting 0 as value) and release the version manually.
}
}
}
}
Expand Down

0 comments on commit 8e8372f

Please sign in to comment.