Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

EclipseSCADA/Release/Perform

< EclipseSCADA
Revision as of 07:28, 18 November 2013 by Jens.reimann.ibh-systems.com (Talk | contribs) (Perform build)

Note.png
This page is work in progress


Prepare new release branch

Create a new branch for each release cycle: 0.1.x-release

Checkout

git clone git://git.eclipse.org/gitroot/eclipsescada/org.eclipse.scada.external.git
git clone git://git.eclipse.org/gitroot/eclipsescada/org.eclipse.scada.utils.git
git clone git://git.eclipse.org/gitroot/eclipsescada/org.eclipse.scada.chart.git
git clone git://git.eclipse.org/gitroot/eclipsescada/org.eclipse.scada.protocols.git
git clone git://git.eclipse.org/gitroot/eclipsescada/org.eclipse.scada.base.git
git clone git://git.eclipse.org/gitroot/eclipsescada/org.eclipse.scada.core.git
git clone git://git.eclipse.org/gitroot/eclipsescada/org.eclipse.scada.hmi.git
git clone git://git.eclipse.org/gitroot/eclipsescada/org.eclipse.scada.ide.git
git clone git://git.eclipse.org/gitroot/eclipsescada/org.eclipse.scada.deploy.git
git clone git://git.eclipse.org/gitroot/eclipsescada/org.eclipse.scada.releng.git

Set Qualifer

cd org.eclipse.scada.releng/aggregator
mvn org.eclipse.scada.releng:build-helper:set-qualifier -DnewQualifier=v123
  • In "org.eclipse.scada.releng/aggregator/pom.xml" change properties:
    • Change "buildType" to "M" or "R"
    • Change "buildTypeLong" to "milestone" or "release"
    • Change "qualifier" to the qualifier you choose (e.g. v123)

Perform build

See also EclipseSCADA/Build

mvn clean verify -Prpm -Pdeb -Peclipse-sign -Peclipse-hudson

If you build locally use:

mvn clean verify -Prom -Pdeb -Peclipse-hudson -Ddownload.root=/tmp/my-download-test -Declipse.download.root=http://download.eclipse.org

Back to the top