This commit is contained in:
InsanusMokrassar 2020-01-08 14:28:57 +06:00
parent 6de9156270
commit e279e6105b
8 changed files with 41 additions and 63 deletions

View File

@ -0,0 +1,8 @@
# Changelog
# 0.2.0
* Updated way of publishing (for more info look at the [git](https://git.insanusmokrassar.com/InsanusMokrassar/krontab))
* Updates in libraries:
* Coroutines `1.3.2` -> `1.3.3`
* Klock `1.7.3` -> `1.8.6`

View File

@ -17,8 +17,8 @@ plugins {
id "org.jetbrains.kotlin.plugin.serialization" version "$kotlin_version" id "org.jetbrains.kotlin.plugin.serialization" version "$kotlin_version"
} }
project.version = "$project_public_version" project.version = "0.2.0"
project.group = "$project_public_group" project.group = "com.insanusmokrassar"
apply from: "publish.gradle" apply from: "publish.gradle"

View File

@ -1,17 +1,9 @@
kotlin.code.style=official kotlin.code.style=official
kotlin_version=1.3.61 kotlin_version=1.3.61
kotlin_coroutines_version=1.3.2 kotlin_coroutines_version=1.3.3
gradle_bintray_plugin_version=1.8.4 gradle_bintray_plugin_version=1.8.4
klockVersion=1.7.3 klockVersion=1.8.6
project_bintray_repo=InsanusMokrassar
project_public_version=0.1.1
project_public_group=com.insanusmokrassar
project_public_name=Krontab
project_public_description=It is analog of crontab util for Kotlin Coroutines
project_url=https://git.insanusmokrassar.com/InsanusMokrassar/krontab
project_vcs=https://git.insanusmokrassar.com/InsanusMokrassar/krontab.git
kotlin.incremental.multiplatform=true kotlin.incremental.multiplatform=true

View File

@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.2-bin.zip distributionUrl=https\://services.gradle.org/distributions/gradle-6.0.1-bin.zip

View File

@ -1,5 +1,4 @@
apply plugin: 'maven-publish' apply plugin: 'maven-publish'
apply plugin: 'signing'
task javadocsJar(type: Jar) { task javadocsJar(type: Jar) {
classifier = 'javadoc' classifier = 'javadoc'
@ -25,41 +24,34 @@ publishing {
asNode().children().last() + { asNode().children().last() + {
resolveStrategy = Closure.DELEGATE_FIRST resolveStrategy = Closure.DELEGATE_FIRST
description "${project_public_description}" description "It is an analog of crontab util for Kotlin Coroutines"
name "${project_public_name}" name "Krontab"
url "${project_url}" url "https://git.insanusmokrassar.com/InsanusMokrassar/krontab"
scm { scm {
developerConnection "scm:git:[fetch=]${project_vcs}[push=]${project_vcs}" developerConnection "scm:git:[fetch=]https://git.insanusmokrassar.com/InsanusMokrassar/krontab.git[push=]https://git.insanusmokrassar.com/InsanusMokrassar/krontab.git"
url "${project_vcs}" url "https://git.insanusmokrassar.com/InsanusMokrassar/krontab.git"
} }
developers { developers {
developer {
id "InsanusMokrassar" developer {
name "Ovsyannikov Alexey" id "InsanusMokrassar"
email "ovsyannikov.alexey95@gmail.com" name "Ovsiannikov Aleksei"
} email "ovsyannikov.alexey95@gmail.com"
developer { }
id "mi-ast"
name "Michail Astafiev"
email "astaf65@gmail.com"
}
} }
licenses { licenses {
license {
name "The Apache Software License, Version 2.0" license {
url "${project_url}/src/master/LICENSE" name "Apache Software License 2.0"
distribution "repo" url "https://git.insanusmokrassar.com/InsanusMokrassar/krontab/src/master/LICENSE"
} }
} }
} }
} }
} }
} }
signing {
useGpgCmd()
sign(publishing.publications)
}

1
mpp_config.json Normal file
View File

@ -0,0 +1 @@
{"bintrayConfig":{"repo":"InsanusMokrassar","packageName":"${project.name}","packageVcs":"https://git.insanusmokrassar.com/InsanusMokrassar/krontab"},"licenses":[{"id":"Apache-2.0","title":"Apache Software License 2.0","url":"https://git.insanusmokrassar.com/InsanusMokrassar/krontab/src/master/LICENSE"}],"mavenConfig":{"name":"Krontab","description":"It is an analog of crontab util for Kotlin Coroutines","url":"https://git.insanusmokrassar.com/InsanusMokrassar/krontab","vcsUrl":"https://git.insanusmokrassar.com/InsanusMokrassar/krontab.git","developers":[{"id":"InsanusMokrassar","name":"Ovsiannikov Aleksei","eMail":"ovsyannikov.alexey95@gmail.com"}]}}

View File

@ -6,14 +6,18 @@ bintray {
user = project.hasProperty('BINTRAY_USER') ? project.property('BINTRAY_USER') : System.getenv('BINTRAY_USER') user = project.hasProperty('BINTRAY_USER') ? project.property('BINTRAY_USER') : System.getenv('BINTRAY_USER')
key = project.hasProperty('BINTRAY_KEY') ? project.property('BINTRAY_KEY') : System.getenv('BINTRAY_KEY') key = project.hasProperty('BINTRAY_KEY') ? project.property('BINTRAY_KEY') : System.getenv('BINTRAY_KEY')
pkg { pkg {
repo = "$project_bintray_repo" repo = "InsanusMokrassar"
name = "${project.name}" name = "${project.name}"
vcsUrl = "${project_url}" vcsUrl = "https://git.insanusmokrassar.com/InsanusMokrassar/krontab"
licenses = ['Apache-2.0'] licenses = ["Apache-2.0"]
version { version {
name = "${project.version}" name = "${project.version}"
released = new Date() released = new Date()
vcsTag = "${project.version}" vcsTag = "${project.version}"
gpg {
sign = true
passphrase = project.hasProperty('signing.gnupg.passphrase') ? project.property('signing.gnupg.passphrase') : System.getenv('signing.gnupg.passphrase')
}
} }
} }
} }

View File

@ -1,20 +1 @@
/*
* This settings file was generated by the Gradle 'init' task.
*
* The settings file is used to specify which projects to include in your build.
* In a single project build this file can be empty or even removed.
*
* Detailed information about configuring a multi-project build in Gradle can be found
* in the user guide at https://docs.gradle.org/4.4.1/userguide/multi_project_builds.html
*/
/*
// To declare projects as part of a multi-project build use the 'include' method
include 'shared'
include 'api'
include 'services:webservice'
*/
rootProject.name = 'krontab' rootProject.name = 'krontab'
enableFeaturePreview('GRADLE_METADATA')