mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-31 17:39:05 +00:00
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/modules/recordsmanagement/HEAD@99123 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
9 lines
444 B
Bash
Executable File
9 lines
444 B
Bash
Executable File
#!/bin/bash
|
|
# Downloads the spring-loaded lib if not existing and runs repository AMP
|
|
springloadedfile=~/.m2/repository/org/springframework/springloaded/1.2.0.RELEASE/springloaded-1.2.0.RELEASE.jar
|
|
|
|
if [ ! -f $springloadedfile ]; then
|
|
mvn validate -Psetup
|
|
fi
|
|
|
|
MAVEN_OPTS="-javaagent:$springloadedfile -noverify -Xms256m -Xmx2G -XX:PermSize=300m" mvn clean integration-test -PappWarLocationSetting,fullBuild,amp-with-solr -Dsolr.secureComms=none |