2019-10-02 17:54:11 +00:00
// TODO: move to versions.gradle
ext {
2021-11-06 16:12:07 +00:00
appVersionName = '1.0.0-Alpha-10'
2019-10-30 21:31:53 +00:00
2020-06-03 15:49:29 +00:00
/* MPP / basic dependencies */
2021-01-18 13:05:10 +00:00
javaUtilsVersion = '1.0.18'
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'
2021-01-18 14:13:03 +00:00
atriumVersion = "0.15.0"
2020-06-03 15:49:29 +00:00
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 {
repositories {
2022-02-11 22:53:35 +00:00
mavenCentral ( )
2019-10-02 17:54:11 +00:00
google ( )
}
2022-02-11 22:53:35 +00:00
2019-10-02 17:54:11 +00:00
dependencies {
2022-02-11 22:53:35 +00:00
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
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 ( )
}
2022-02-11 22:53:35 +00:00
group 'net.codinux.banking'
2019-10-02 17:54:11 +00:00
version appVersionName
2020-07-23 14:35:20 +00:00
}
2020-09-17 10:02:03 +00:00
task jarAll {
dependsOn = [
"common:jvmJar" ,
2022-02-11 22:53:35 +00:00
"fints4k:jvmJar" ,
2020-07-23 14:35:20 +00:00
]
2020-04-22 09:48:42 +00:00
}