2019-10-02 17:54:11 +00:00
// TODO: move to versions.gradle
ext {
2020-06-13 15:32:18 +00:00
appVersionName = '1.0.0 Alpha 5'
2019-10-30 21:31:53 +00:00
2020-06-13 15:32:18 +00:00
appVersionCode = 5
2019-10-02 17:54:11 +00:00
2020-06-03 15:49:29 +00:00
/* MPP / basic dependencies */
2020-04-22 18:45:35 +00:00
kotlinVersion = '1.3.72'
2020-07-05 09:21:21 +00:00
kotlinCoroutinesVersion = "1.3.7"
2019-10-15 16:27:06 +00:00
2020-06-03 15:49:29 +00:00
2020-07-02 20:10:55 +00:00
ktorVersion = "1.3.2"
2020-06-03 15:49:29 +00:00
2020-06-03 21:56:03 +00:00
javaUtilsVersion = '1.0.16'
2019-10-26 16:22:06 +00:00
2020-04-23 22:50:14 +00:00
luceneUtilsVersion = "0.5.1-SNAPSHOT"
2020-01-26 11:23:02 +00:00
2020-06-13 14:04:12 +00:00
textExtractorVersion = "0.5.1-SNAPSHOT"
textInfoExtractorVersion = "1.0.1-SNAPSHOT"
2020-01-26 11:23:02 +00:00
hbci4jVersion = '3.1.37'
2020-04-22 15:40:12 +00:00
/* Android */
2020-06-03 15:49:29 +00:00
androidCompileSdkVersion = 28
2020-06-24 18:46:54 +00:00
androidBuildToolsVersion = "28.0.6"
2020-06-03 15:49:29 +00:00
androidMinSdkVersion = 16
androidTargetSdkVersion = 28
2020-06-13 14:04:12 +00:00
fileChooserDialogVersion = "1.2.0-androidx"
2020-04-22 18:33:14 +00:00
androidUtilsVersion = '1.1.1-SNAPSHOT'
materialDrawerVersion = "8.0.1"
2019-10-02 17:54:11 +00:00
2020-01-03 16:57:05 +00:00
clansFloatingActionButtonVersion = '1.6.4'
2020-04-23 14:54:34 +00:00
autocompleteVersion = "1.1.0"
2020-04-22 15:40:12 +00:00
multiDexVersion = "2.0.1"
appCompatVersion = "1.1.0"
constraintLayoutVersion = "1.1.3"
materialComponentsVersion = "1.1.0"
2020-04-23 18:35:25 +00:00
daggerVersion = "2.27"
2020-04-22 15:40:12 +00:00
/* JavaFX */
2020-06-24 22:26:15 +00:00
javaFxUtilsVersion = '1.0.8-SNAPSHOT'
2019-10-26 16:22:06 +00:00
2020-04-22 15:40:12 +00:00
/* Test */
2019-10-02 17:54:11 +00:00
junitVersion = '4.12'
2020-06-03 15:49:29 +00:00
junit5Version = '5.5.2'
atriumVersion = "0.12.0"
2019-10-02 17:54:11 +00:00
assertJVersion = '3.12.2'
mockitoVersion = '2.22.0'
mockitoKotlinVersion = '1.6.0'
2020-04-28 14:51:26 +00:00
slf4jVersion = '1.7.26'
2019-10-02 17:54:11 +00:00
logbackVersion = '1.2.3'
}
buildscript {
2020-06-03 15:49:29 +00:00
ext . kotlin_version = '1.3.72'
2019-10-02 17:54:11 +00:00
repositories {
google ( )
jcenter ( )
}
dependencies {
2020-06-03 15:49:29 +00:00
classpath 'com.android.tools.build:gradle:4.0.0'
2019-10-02 17:54:11 +00:00
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
2020-06-03 15:49:29 +00:00
classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version"
2019-10-02 17:54:11 +00:00
// 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"
}
}
2020-04-22 09:48:42 +00:00
def commonScriptsFile = new File ( new File ( project . gradle . gradleUserHomeDir , "scripts" ) , "commonScripts.gradle" )
if ( commonScriptsFile . exists ( ) ) {
apply from: commonScriptsFile
}
2019-10-02 17:54:11 +00:00
allprojects {
repositories {
mavenLocal ( )
mavenCentral ( )
google ( )
jcenter ( )
}
2020-04-22 09:46:32 +00:00
group 'net.dankito.banking'
2019-10-02 17:54:11 +00:00
version appVersionName
2020-04-22 09:48:42 +00:00
}