From 1c30881557cc1139b61663c56a40037aea686c39 Mon Sep 17 00:00:00 2001 From: Florian Schmaus Date: Fri, 24 Feb 2017 19:25:29 +0100 Subject: [PATCH] build.gradle: Add 'testRuntime' configuration to artifacts To complete the 'testRuntime' artifact configuration. --- build.gradle | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build.gradle b/build.gradle index f4e013e2e..d921a9e49 100644 --- a/build.gradle +++ b/build.gradle @@ -301,6 +301,8 @@ subprojects { archives sourcesJar archives javadocJar archives testJar + // See http://stackoverflow.com/a/21946676/194894 + testRuntime testJar } uploadArchives {