add the internal-staging Maven repo, to be able to get the yet unreleased 4.1.4 + remove transitivity to Alfresco dependencies

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/modules/recordsmanagement/BRANCHES/V2.0@47883 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Samuel Langlois
2013-03-11 16:55:43 +00:00
parent 9260b6e8de
commit fe12afa57e
2 changed files with 10 additions and 2 deletions

View File

@@ -98,6 +98,14 @@ subprojects {
password 'b@mb00'
}
}
// Temporarily add the internal-staging Maven repo, to be able to get the yet unreleased 4.1.4
maven {
url "https://artifacts.alfresco.com/nexus/content/repositories/internal-staging"
credentials {
username 'bamboo'
password 'b@mb00'
}
}
}
dependencies {

View File

@@ -12,8 +12,8 @@ dependencies {
testRuntime files(configDir)
testRuntime files(testResourceDir)
testRuntime group: 'org.alfresco.enterprise', name: 'alfresco', version: alfrescoBaseVersion, type: 'war'
testRuntime group: 'org.alfresco.enterprise', name: 'alfresco-solr', version: alfrescoBaseVersion, type: 'zip'
testRuntime group: 'org.alfresco.enterprise', name: 'alfresco', version: alfrescoBaseVersion, type: 'war', transitive: false
testRuntime group: 'org.alfresco.enterprise', name: 'alfresco-solr', version: alfrescoBaseVersion, type: 'zip', transitive: false
}
task fetchSOLR(type:Copy) {