sdk/build.gradle

127 lines
3.1 KiB
Groovy
Raw Normal View History

2019-11-14 17:49:27 +01:00
plugins {
2019-11-17 17:14:24 +01:00
id 'jacoco'
2019-12-09 17:28:28 +01:00
id 'org.jetbrains.kotlin.jvm' version '1.3.61' apply false
2019-11-17 17:14:24 +01:00
id "org.jlleitschuh.gradle.ktlint" version "9.1.1"
2019-12-22 17:46:54 +01:00
id 'maven'
id 'com.jfrog.bintray' version '1.8.4'
2019-11-14 17:49:27 +01:00
}
ext {
2019-12-09 17:28:28 +01:00
PUBLISH_VERSION = '0.13.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"
okhttp3 = "3.12.6"
retrofit = "2.6.3"
2019-11-14 17:49:27 +01:00
threetenbp = "1.4.0"
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'
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: 'maven'
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"
implementation "io.reactivex.rxjava2:rxjava:2.2.16"
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"
testImplementation "junit:junit:4.12"
}
2019-11-14 18:34:40 +01:00
2019-11-17 17:14:24 +01:00
jacocoTestReport {
reports {
xml.enabled true
}
}
test {
testLogging.showStandardStreams = false
}
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
}