diff --git a/README.md b/README.md index d4ff31e0ee..2acb5164ab 100644 --- a/README.md +++ b/README.md @@ -121,11 +121,11 @@ git clone git@github.com:Alfresco/acs-community-packaging.git If you wish to build these projects from the command line, use the following commands. ~~~ cd alfresco-community-repo -mvn clean install -PcommunityDocker -DskipTests=true -Dversion.edition=Community +mvn clean install -Pbuild-docker-images -DskipTests=true -Dversion.edition=Community cd .. cd acs-community-packaging -mvn clean install -PcommunityDocker -Dmaven.javadoc.skip=true +mvn clean install -Pbuild-docker-images -Dmaven.javadoc.skip=true cd .. ~~~ In Intellij IDEA, create a new project using the `work` directory as the source. diff --git a/amps/ags/rm-community/rm-community-repo/pom.xml b/amps/ags/rm-community/rm-community-repo/pom.xml index 45c6794b3a..348447596a 100644 --- a/amps/ags/rm-community/rm-community-repo/pom.xml +++ b/amps/ags/rm-community/rm-community-repo/pom.xml @@ -618,7 +618,7 @@ - communityDocker + build-docker-images diff --git a/packaging/docker-alfresco/pom.xml b/packaging/docker-alfresco/pom.xml index c2a923eb38..4bcc395431 100644 --- a/packaging/docker-alfresco/pom.xml +++ b/packaging/docker-alfresco/pom.xml @@ -128,7 +128,7 @@ - communityDocker + build-docker-images diff --git a/scripts/travis/build.sh b/scripts/travis/build.sh index 2c4fff11d6..7fa00ee626 100644 --- a/scripts/travis/build.sh +++ b/scripts/travis/build.sh @@ -10,8 +10,8 @@ if isBranchBuild && [ "${TRAVIS_BRANCH}" = "master" ] && [ "${TRAVIS_BUILD_STAGE # update ":latest" image tags on remote repositories by using the maven *internal* profile PROFILES="-Pinternal" else - # build the ":latest" image tags locally with the maven *communityDocker* profile - PROFILES="-PcommunityDocker" + # build the ":latest" image tags locally with the maven *build-docker-images* profile + PROFILES="-Pbuild-docker-images" fi mvn -B -V install -DskipTests -Dmaven.javadoc.skip=true "${PROFILES}"