fints4k/build.gradle

65 lines
1.4 KiB
Groovy
Raw Normal View History

2019-10-02 17:54:11 +00:00
// TODO: move to versions.gradle
ext {
appVersionName = '0.1.0-SNAPSHOT'
appVersionCode = 1
2019-10-02 17:54:11 +00:00
2020-01-19 16:12:21 +00:00
kotlinVersion = '1.3.61'
2019-10-15 16:27:06 +00:00
javaUtilsVersion = '1.0.9'
2020-01-26 11:23:02 +00:00
hbci4jVersion = '3.1.37'
2019-10-15 16:27:06 +00:00
androidUtilsVersion = '1.1.0'
2019-10-02 17:54:11 +00:00
clansFloatingActionButtonVersion = '1.6.4'
javaFxUtilsVersion = '1.0.3'
2019-10-02 17:54:11 +00:00
junitVersion = '4.12'
assertJVersion = '3.12.2'
mockitoVersion = '2.22.0'
mockitoKotlinVersion = '1.6.0'
2019-10-15 16:27:06 +00:00
slf4JVersion = '1.7.26'
2019-10-02 17:54:11 +00:00
logbackVersion = '1.2.3'
}
buildscript {
2020-01-19 16:12:21 +00:00
ext.kotlin_version = '1.3.61'
2019-10-02 17:54:11 +00:00
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.5.1'
2019-10-02 17:54:11 +00:00
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// Nexus staging plugin has to be downgraded to 0.10.0 to be applicable to sub projects, see https://github.com/UweTrottmann/SeriesGuide/commit/ca33e8ad2fa6cc5c426450c8aef3417ba073ca7f
classpath "io.codearte.gradle.nexus:gradle-nexus-staging-plugin:0.10.0"
}
}
allprojects {
repositories {
mavenLocal()
mavenCentral()
google()
jcenter()
}
group 'net.dankito.banking'
2019-10-02 17:54:11 +00:00
version appVersionName
task allDeps(type: DependencyReportTask) {} // to have a simple way to print all dependencies to console
}
task clean(type: Delete) {
delete rootProject.buildDir
}