Version 0.14.0
This commit is contained in:
parent
cfbed19894
commit
addaa211bf
3 changed files with 11 additions and 6 deletions
|
@ -29,6 +29,6 @@ allprojects {
|
|||
}
|
||||
}
|
||||
dependencies {
|
||||
implementation 'io.github.wulkanowy:sdk:0.13.0'
|
||||
implementation 'io.github.wulkanowy:sdk:0.14.0'
|
||||
}
|
||||
```
|
||||
|
|
13
build.gradle
13
build.gradle
|
@ -1,13 +1,11 @@
|
|||
plugins {
|
||||
id 'jacoco'
|
||||
id 'org.jetbrains.kotlin.jvm' version '1.3.61' apply false
|
||||
id "org.jlleitschuh.gradle.ktlint" version "9.1.1"
|
||||
id 'maven'
|
||||
id 'com.jfrog.bintray' version '1.8.4'
|
||||
}
|
||||
|
||||
ext {
|
||||
PUBLISH_VERSION = '0.13.0'
|
||||
PUBLISH_VERSION = '0.14.0'
|
||||
SITE_URL = 'https://github.com/wulkanowy/sdk'
|
||||
GIT_URL = 'https://github.com/wulkanowy/sdk.git'
|
||||
|
||||
|
@ -20,6 +18,7 @@ ext {
|
|||
|
||||
allprojects {
|
||||
apply plugin: 'java'
|
||||
apply plugin: 'maven'
|
||||
apply plugin: 'kotlin'
|
||||
apply plugin: "org.jlleitschuh.gradle.ktlint"
|
||||
apply plugin: 'com.jfrog.bintray'
|
||||
|
@ -62,7 +61,6 @@ allprojects {
|
|||
}
|
||||
|
||||
subprojects {
|
||||
apply plugin: 'maven'
|
||||
apply plugin: 'jacoco'
|
||||
|
||||
ktlint {
|
||||
|
@ -106,6 +104,7 @@ subprojects {
|
|||
testLogging.showStandardStreams = false
|
||||
}
|
||||
|
||||
group = "io.github.wulkanowy.sdk"
|
||||
if (project.plugins.hasPlugin('java')) {
|
||||
|
||||
task sourcesJar(type: Jar, dependsOn: classes) {
|
||||
|
@ -124,3 +123,9 @@ subprojects {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
compile project(":sdk")
|
||||
compile project(":sdk-mobile")
|
||||
compile project(":sdk-scrapper")
|
||||
}
|
||||
|
|
2
gradle/wrapper/gradle-wrapper.properties
vendored
2
gradle/wrapper/gradle-wrapper.properties
vendored
|
@ -1,5 +1,5 @@
|
|||
distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.2-all.zip
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.4-all.zip
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
zipStorePath=wrapper/dists
|
||||
|
|
Loading…
Reference in a new issue