Include test binaries and test resources in jar for com.logicalhacking.dasca.crosslanguage.test.

This commit is contained in:
Achim D. Brucker 2019-02-21 12:45:22 +00:00
rodzic 54ba628226
commit 0ab7252e28
2 zmienionych plików z 7 dodań i 1 usunięć

Wyświetl plik

@ -9,7 +9,7 @@ allprojects {
apply plugin: 'maven'
group = 'com.logicalhacking.dasca'
version = '0.1-dev-2019-01-30'
version = '0.1-dev-2019-02-21'
}

Wyświetl plik

@ -7,6 +7,12 @@ processResources {
into 'build/resources/main'
}
tasks.withType(Jar) {
classifier = 'tests'
from sourceSets.test.output
exclude("android-26.jar")
}
dependencies {
implementation group: 'org.scala-lang', name: 'scala-library', version:'2.12.3'
implementation group: 'junit', name: 'junit', version: '4.12'