fints4k/build.gradle

67 lines
1.3 KiB
Groovy
Raw Normal View History

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'
/* MPP / basic dependencies */
2021-01-18 13:05:10 +00:00
javaUtilsVersion = '1.0.18'
2020-04-22 15:40:12 +00:00
/* Test */
2019-10-02 17:54:11 +00:00
junitVersion = '4.12'
junit5Version = '5.5.2'
atriumVersion = "0.15.0"
2019-10-02 17:54:11 +00:00
assertJVersion = '3.12.2'
mockitoVersion = '2.22.0'
mockitoKotlinVersion = '1.6.0'
slf4jVersion = '1.7.26'
2019-10-02 17:54:11 +00:00
logbackVersion = '1.2.3'
}
buildscript {
repositories {
mavenCentral()
2019-10-02 17:54:11 +00:00
google()
}
2019-10-02 17:54:11 +00:00
dependencies {
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"
}
}
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()
}
group 'net.codinux.banking'
2019-10-02 17:54:11 +00:00
version appVersionName
}
2020-09-17 10:02:03 +00:00
task jarAll {
dependsOn = [
"common:jvmJar",
"fints4k:jvmJar",
]
}