2019-11-14 17:49:27 +01:00
|
|
|
plugins {
|
2020-03-26 21:02:08 +01:00
|
|
|
id 'org.jetbrains.kotlin.jvm' version '1.3.71' apply false
|
2020-03-01 16:19:06 +01:00
|
|
|
id "org.jlleitschuh.gradle.ktlint" version "9.2.1"
|
2019-12-22 17:46:54 +01:00
|
|
|
id 'com.jfrog.bintray' version '1.8.4'
|
2019-11-14 17:49:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
ext {
|
2020-04-04 21:22:40 +02:00
|
|
|
PUBLISH_VERSION = '0.17.0'
|
2019-11-14 18:34:40 +01:00
|
|
|
SITE_URL = 'https://github.com/wulkanowy/sdk'
|
|
|
|
GIT_URL = 'https://github.com/wulkanowy/sdk.git'
|
|
|
|
|
2019-11-14 17:49:27 +01:00
|
|
|
jspoon = "1.3.2"
|
2020-03-01 16:20:26 +01:00
|
|
|
okhttp3 = "3.12.10"
|
2020-01-09 00:34:48 +01:00
|
|
|
retrofit = "2.6.4"
|
2020-04-05 18:47:00 +02:00
|
|
|
threetenbp = "1.4.3"
|
2019-12-20 10:56:04 +01:00
|
|
|
slf4j = "1.7.30"
|
2019-11-14 17:49:27 +01:00
|
|
|
}
|
|
|
|
|
2019-11-14 11:26:25 +01:00
|
|
|
allprojects {
|
2019-11-14 17:49:27 +01:00
|
|
|
apply plugin: 'java'
|
2019-12-23 19:20:15 +01:00
|
|
|
apply plugin: 'maven'
|
2019-11-14 17:49:27 +01:00
|
|
|
apply plugin: 'kotlin'
|
2019-11-17 17:14:24 +01:00
|
|
|
apply plugin: "org.jlleitschuh.gradle.ktlint"
|
2019-12-23 19:19:30 +01:00
|
|
|
apply plugin: 'com.jfrog.bintray'
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
jcenter()
|
|
|
|
maven { url "https://jitpack.io" }
|
|
|
|
}
|
2019-11-17 17:14:24 +01:00
|
|
|
|
2019-12-22 17:46:54 +01:00
|
|
|
version = PUBLISH_VERSION
|
2019-12-23 19:19:30 +01:00
|
|
|
group = "io.github.wulkanowy"
|
|
|
|
|
|
|
|
bintray {
|
|
|
|
user = System.getenv('BINTRAY_USER')
|
|
|
|
key = System.getenv('BINTRAY_KEY')
|
|
|
|
configurations = ['archives']
|
|
|
|
|
|
|
|
pkg {
|
|
|
|
repo = 'wulkanowy'
|
|
|
|
name = 'sdk'
|
|
|
|
desc = 'Unified way of retrieving data from the UONET+ register through mobile api and scraping api'
|
|
|
|
|
|
|
|
websiteUrl = 'https://github.com/wulkanowy/sdk'
|
|
|
|
issueTrackerUrl = 'https://github.com/wulkanowy/sdk/issues'
|
|
|
|
vcsUrl = 'https://github.com/wulkanowy/sdk.git'
|
|
|
|
licenses = ['Apache-2.0']
|
|
|
|
userOrg = 'wulkanowy'
|
|
|
|
labels = ['wulkanowy', 'sdk']
|
|
|
|
publicDownloadNumbers = true
|
|
|
|
publish = true
|
|
|
|
|
|
|
|
version {
|
|
|
|
name = PUBLISH_VERSION
|
|
|
|
vcsTag = PUBLISH_VERSION
|
|
|
|
released = new Date()
|
2019-12-22 17:46:54 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-12-23 19:19:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
subprojects {
|
|
|
|
apply plugin: 'jacoco'
|
2019-12-22 17:46:54 +01:00
|
|
|
|
2019-11-17 17:14:24 +01:00
|
|
|
ktlint {
|
|
|
|
additionalEditorconfigFile = file(".editorconfig")
|
|
|
|
disabledRules = [
|
|
|
|
"no-wildcard-imports",
|
|
|
|
"import-ordering",
|
|
|
|
"max-line-length"
|
|
|
|
]
|
|
|
|
}
|
2019-11-14 17:49:27 +01:00
|
|
|
|
|
|
|
sourceCompatibility = 1.8
|
|
|
|
|
|
|
|
compileKotlin {
|
|
|
|
kotlinOptions {
|
|
|
|
jvmTarget = "1.6"
|
|
|
|
javaParameters = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
|
2019-11-14 13:36:46 +01:00
|
|
|
|
2020-04-01 22:45:05 +02:00
|
|
|
implementation "io.reactivex.rxjava2:rxjava:2.2.19"
|
2019-11-14 17:49:27 +01:00
|
|
|
implementation "com.squareup.okhttp3:logging-interceptor:$okhttp3"
|
|
|
|
|
|
|
|
compileOnly "org.threeten:threetenbp:$threetenbp:no-tzdb"
|
|
|
|
testImplementation "org.threeten:threetenbp:$threetenbp"
|
|
|
|
|
|
|
|
testImplementation "com.squareup.okhttp3:mockwebserver:$okhttp3"
|
2020-01-09 00:33:40 +01:00
|
|
|
testImplementation "junit:junit:4.13"
|
2019-11-14 17:49:27 +01:00
|
|
|
}
|
2019-11-14 18:34:40 +01:00
|
|
|
|
2019-11-17 17:14:24 +01:00
|
|
|
jacocoTestReport {
|
|
|
|
reports {
|
|
|
|
xml.enabled true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-17 17:32:58 +01:00
|
|
|
test {
|
|
|
|
testLogging.showStandardStreams = false
|
|
|
|
}
|
|
|
|
|
2019-12-23 19:20:15 +01:00
|
|
|
group = "io.github.wulkanowy.sdk"
|
2019-12-23 19:19:30 +01:00
|
|
|
if (project.plugins.hasPlugin('java')) {
|
2019-11-14 18:34:40 +01:00
|
|
|
|
2019-12-23 19:19:30 +01:00
|
|
|
task sourcesJar(type: Jar, dependsOn: classes) {
|
|
|
|
classifier = 'sources'
|
|
|
|
from sourceSets.main.allSource
|
|
|
|
}
|
2019-11-14 18:34:40 +01:00
|
|
|
|
2019-12-23 19:19:30 +01:00
|
|
|
task javadocJar(type: Jar, dependsOn: javadoc) {
|
|
|
|
classifier = 'javadoc'
|
|
|
|
from javadoc.destinationDir
|
|
|
|
}
|
|
|
|
|
|
|
|
artifacts {
|
|
|
|
archives sourcesJar
|
|
|
|
archives javadocJar
|
|
|
|
}
|
2019-11-14 18:34:40 +01:00
|
|
|
}
|
2018-08-30 17:22:28 +02:00
|
|
|
}
|
2019-12-23 19:20:15 +01:00
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile project(":sdk")
|
|
|
|
compile project(":sdk-mobile")
|
|
|
|
compile project(":sdk-scrapper")
|
2020-01-10 15:14:46 +01:00
|
|
|
|
|
|
|
compile "com.squareup.okhttp3:okhttp:$okhttp3"
|
2019-12-23 19:20:15 +01:00
|
|
|
}
|