| | |
| | | * user guide available at https://docs.gradle.org/5.0/userguide/tutorial_java_projects.html |
| | | */ |
| | | |
| | | plugins { |
| | | id "org.jetbrains.kotlin.jvm" version "1.4.32" apply false |
| | | } |
| | | |
| | | allprojects { |
| | | apply plugin: 'maven' |
| | | |
| | | group = 'de.micromata.borgbutler' |
| | | version = '0.4-SNAPSHOT' |
| | | version = '0.5-SNAPSHOT' |
| | | } |
| | | |
| | | subprojects { |
| | | apply plugin: 'java' |
| | | apply plugin: 'org.jetbrains.kotlin.jvm' |
| | | sourceCompatibility = 1.9 // Needed: since 1.9 i18n properties in UTF-8 format. |
| | | targetCompatibility = 1.9 |
| | | |
| | |
| | | } |
| | | |
| | | dependencies { |
| | | compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.25' |
| | | testCompile group: 'org.slf4j', name: 'slf4j-log4j12', version: '1.7.25' |
| | | testImplementation( |
| | | 'org.junit.jupiter:junit-jupiter-api:5.3.0' |
| | | ) |
| | |
| | | ) |
| | | } |
| | | |
| | | subprojects { |
| | | ext.depVersions = ['commonsio': '2.8.0', dep2: '2.0'] |
| | | } |
| | | |
| | | test { |
| | | useJUnitPlatform() |
| | | } |