From a807f48b41034f438b55e02223746d5f5329c3a4 Mon Sep 17 00:00:00 2001 From: Gethin James Date: Thu, 5 Sep 2013 10:58:28 +0000 Subject: [PATCH] Corrected the dependency definition to pull in the correct test jars. git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/modules/recordsmanagement/HEAD@54968 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261 --- rm-server/build.gradle | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/rm-server/build.gradle b/rm-server/build.gradle index 82527d07cb..90e897a91a 100644 --- a/rm-server/build.gradle +++ b/rm-server/build.gradle @@ -7,8 +7,9 @@ dependencies { compile 'javax.servlet:servlet-api:2.5' testCompile 'org.springframework:spring-test:2.5' - testCompile group: alfrescoGroupId, name: 'alfresco-repository', version: alfrescoTestDepsVersion, type: 'jar', classifier: 'tests' - testCompile group: alfrescoGroupId, name: 'alfresco-remote-api', version: alfrescoTestDepsVersion, type: 'jar', classifier: 'tests' + testCompile "${alfrescoGroupId}:alfresco-repository:${alfrescoTestDepsVersion}:tests@jar" + testCompile "${alfrescoGroupId}:alfresco-remote-api:${alfrescoTestDepsVersion}:tests@jar" + testRuntime files(explodedConfigDir) testRuntime files(configDir)