build.gradle: Add 'testRuntime' configuration to artifacts

To complete the 'testRuntime' artifact configuration.
This commit is contained in:
Florian Schmaus 2017-02-24 19:25:29 +01:00
parent c13cddd91a
commit 1c30881557
1 changed files with 2 additions and 0 deletions

View File

@ -301,6 +301,8 @@ subprojects {
archives sourcesJar
archives javadocJar
archives testJar
// See http://stackoverflow.com/a/21946676/194894
testRuntime testJar
}
uploadArchives {