Version 0.14.0

This commit is contained in:
Mikołaj Pich 2019-12-23 19:20:15 +01:00
parent cfbed19894
commit addaa211bf
No known key found for this signature in database
GPG key ID: F62B26E36D4C4BAA
3 changed files with 11 additions and 6 deletions

View file

@ -29,6 +29,6 @@ allprojects {
}
}
dependencies {
implementation 'io.github.wulkanowy:sdk:0.13.0'
implementation 'io.github.wulkanowy:sdk:0.14.0'
}
```

View file

@ -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")
}

View file

@ -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