RM-1516 (Error in the log when starting RM Server (Failed to load audit model))

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/modules/recordsmanagement/HEAD@96124 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Tuna Aksoy
2015-02-04 18:05:47 +00:00
parent e4039236ed
commit bfba5747e9
2 changed files with 5 additions and 11 deletions

View File

@@ -48,7 +48,6 @@ Summary of Available Internal Ant Targets
- fetchSolr : Gets the the Solr artifact
- fetchWarFile : Gets the "original" Community war file
- fetchEntpriseWarFile : Gets the "original" Enterprise war file
- install : Executes the "mvn install" command
- package : Executes the "mvn package" command
- prepareEnv : Prepares the development environment (must be run just once)
- unitTest : Runs the unit tests

View File

@@ -8,15 +8,6 @@
<property environment="env" />
<target name="install">
<exec executable="${mvn.exec}" failonerror="true">
<arg value="clean" />
<arg value="install" />
<arg value="-DskipTests" />
<arg value="-PfullBuild" />
</exec>
</target>
<target name="fetchWarFile">
<xmlproperty file="../pom.xml" keepRoot="false"/>
<exec executable="${mvn.exec}" failonerror="true">
@@ -49,8 +40,12 @@
<delete dir="${app.folder}" failonerror="true" />
</target>
<target name="alfresco:amp" depends="install, unitTest">
<target name="alfresco:amp" depends="unitTest">
<exec executable="${mvn.exec}" failonerror="true">
<arg value="clean" />
<arg value="install" />
<arg value="-DskipTests" />
<arg value="-PfullBuild" />
<arg value="alfresco:amp" />
</exec>
</target>