1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2025-09-09 17:19:39 +02:00

gradle: Remove archives configuration

and FileTestUtil in favor of commons-io. This is required because
Eclipse won't put src/test code into the classpath of src/main
code (even though gradle was configured with an according
dependency).
This commit is contained in:
Florian Schmaus 2019-09-15 23:51:26 +02:00
parent 89cb3f679b
commit 2f667f95a8
18 changed files with 30 additions and 114 deletions

View file

@ -131,6 +131,7 @@ allprojects {
].collect { project(it) }
junitVersion = '5.4.2'
powerMockVersion = '2.0.2'
commonsIoVersion = '2.6'
}
group = 'org.igniterealtime.smack'
sourceCompatibility = JavaVersion.VERSION_1_8
@ -408,10 +409,6 @@ subprojects {
}
artifacts {
// TODO delete those?
archives sourcesJar
archives javadocJar
archives testsJar
// See http://stackoverflow.com/a/21946676/194894
testRuntime testsJar
}