Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ITOP-4585: add meeds to FB creation #18

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions git-workflow/createFB.sh
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,12 @@ ADDON_APP_CENTER_TARGET_VERSION=2.0.x-$BRANCH-SNAPSHOT
ADDONS_MANAGER_ORIGIN_VERSION=2.0.x-SNAPSHOT
ADDONS_MANAGER_TARGET_VERSION=2.0.x-$BRANCH-SNAPSHOT

# meeds
MEEDS_ORIGIN_VERSION=1.0.x-SNAPSHOT
MEEDS_TARGET_VERSION=1.0.x-$BRANCH-SNAPSHOT



SCRIPTDIR=$(
cd $(dirname "$0")
pwd
Expand Down Expand Up @@ -165,6 +171,7 @@ function replaceProjectVersion() {
wcm-template-pack) $SCRIPTDIR/../replaceInFile.sh "<version>$ADDON_WEB_PACK_ORIGIN_VERSION</version>" "<version>$ADDON_WEB_PACK_TARGET_VERSION</version>" "pom.xml -not -wholename \"*/target/*\"" ;;
wallet) $SCRIPTDIR/../replaceInFile.sh "<version>$ADDON_WALLET_ORIGIN_VERSION</version>" "<version>$ADDON_WALLET_TARGET_VERSION</version>" "pom.xml -not -wholename \"*/target/*\"" ;;
web-conferencing) $SCRIPTDIR/../replaceInFile.sh "<version>$ADDON_WEB_CONFERENCING_ORIGIN_VERSION</version>" "<version>$ADDON_WEB_CONFERENCING_TARGET_VERSION</version>" "pom.xml -not -wholename \"*/target/*\"" ;;
meeds) $SCRIPTDIR/../replaceInFile.sh "<version>$MEEDS_ORIGIN_VERSION</version>" "<version>$MEEDS_TARGET_VERSION</version>" "pom.xml -not -wholename \"*/target/*\"" ;;
*) $SCRIPTDIR/../replaceInFile.sh "<version>$ORIGIN_VERSION</version>" "<version>$TARGET_VERSION</version>" "pom.xml -not -wholename \"*/target/*\"" ;;
esac
}
Expand Down Expand Up @@ -206,6 +213,9 @@ function replaceProjectDeps() {
# $SCRIPTDIR/../replaceInFile.sh "<org.exoplatform.platform.version>$ORIGIN_VERSION</org.exoplatform.platform.version>" "<org.exoplatform.platform.version>$TARGET_VERSION</org.exoplatform.platform.version>" "pom.xml -not -wholename \"*/target/*\""
$SCRIPTDIR/../replaceInFile.sh "<org.exoplatform.platform.distributions.version>$ORIGIN_VERSION</org.exoplatform.platform.distributions.version>" "<org.exoplatform.platform.distributions.version>$TARGET_VERSION</org.exoplatform.platform.distributions.version>" "pom.xml -not -wholename \"*/target/*\""
$SCRIPTDIR/../replaceInFile.sh "<org.exoplatform.platform.addons-manager.version>$ADDONS_MANAGER_ORIGIN_VERSION</org.exoplatform.platform.addons-manager.version>" "<org.exoplatform.platform.addons-manager.version>$ADDONS_MANAGER_TARGET_VERSION</org.exoplatform.platform.addons-manager.version>" "pom.xml -not -wholename \"*/target/*\""
# meeds
$SCRIPTDIR/../replaceInFile.sh "<io.meeds.distribution.version>$MEEDS_ORIGIN_VERSION</io.meeds.distribution.version>" "<io.meeds.distribution.version>$MEEDS_TARGET_VERSION</io.meeds.distribution.version>" "pom.xml -not -wholename \"*/target/*\""

}

function replaceProjectAddons() {
Expand Down Expand Up @@ -328,6 +338,7 @@ createFB wcm-template-pack
createFB web-conferencing

createFB platform-public-distributions
createFB meeds
createFB platform-private-distributions
popd

Expand Down
25 changes: 17 additions & 8 deletions translation/create-translation-branches.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# Script to create Translation branches on exodev:
# * X-x.x-translation
VERSION=5.3.x-translation
VERSION=6.0.x-translation
ORIGIN_BRANCH=develop
TARGET_BRANCH=integration/$VERSION

Expand Down Expand Up @@ -47,24 +47,33 @@ function createTranslationBranche() {
}

pushd ${SWF_TB_REPOS}
#exoplatform



createTranslationBranche gatein-portal
createTranslationBranche platform-ui
createTranslationBranche commons
createTranslationBranche social
createTranslationBranche ecms
createTranslationBranche wiki
createTranslationBranche forum
createTranslationBranche calendar
createTranslationBranche integration
createTranslationBranche platform
createTranslationBranche platform-public-distributions
createTranslationBranche platform-private-distributions
createTranslationBranche task
createTranslationBranche chat-application
createTranslationBranche wcm-template-pack
createTranslationBranche web-conferencing
createTranslationBranche lecko
createTranslationBranche onlyoffice
createTranslationBranche news
#meeds
createTranslationBranche meeds
createTranslationBranche commons
createTranslationBranche social
createTranslationBranche platform-ui
createTranslationBranche gatein-portal
createTranslationBranche wallet
createTranslationBranche perk-store
createTranslationBranche gamification
createTranslationBranche push-notifications



popd