Skip to content

Commit

Permalink
Merged HEAD-BUG-FIX (5.1) to trunk (5.1/Cloud40)
Browse files Browse the repository at this point in the history
   102583: Merge RA-SPRINT3 to HEAD-BUG-FIX (5.1)
      102255: RA-142: changed "mvn clean -Pdata" to use the initialize phase again.
      Suggested command line:
      cd <web-apps>/alfresco
      mvn [clean] install -Ppurge,run


git-svn-id: https://svn.alfresco.com/repos/alfresco-open-mirror/web-apps/Share/trunk@103317 7033f55c-6c29-4ad8-afba-765cb616e738
  • Loading branch information
slanglois committed Apr 30, 2015
1 parent 31c7618 commit 2339cb0
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions alfresco/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -314,18 +314,22 @@
</build>
</profile>

<!-- Use "mvn initialize -Pdata" to drop repo, solr and DB data, then re-create an empty DB -->
<!--
Use "mvn initialize -Ppurge" to drop repo, solr and DB data, then re-create an empty DB.
Or use with a later phase to build and start a fresh repo all in one go, e.g.
"mvn [clean] install -Ppurge,run"
-->
<profile>
<id>data</id>
<id>purge</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<executions>
<execution>
<id>default-clean</id>
<phase>clean</phase>
<id>delete-runtime-folders</id>
<phase>initialize</phase>
<goals>
<goal>clean</goal>
</goals>
Expand Down

0 comments on commit 2339cb0

Please sign in to comment.