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

Difference between revisions of "EPP/MPC/Contributor Guide"

< EPP‎ | MPC
(New page: = Obtaining Sources = <pre style="width: 50em;">git clone git://git.eclipse.org/gitroot/mpc/org.eclipse.epp.mpc mpc </pre> = Building = MPC is built using Ant, Maven 3 (>= alpha-5) an...)
 
(add issues section)
Line 1: Line 1:
 +
= Tasks/Issues/Bugs =
 +
 +
Issues are tracked in [https://bugs.eclipse.org/bugs/buglist.cgi?short_desc_type=allwordssubstr&short_desc=&product=MPC&long_desc_type=allwordssubstr&long_desc=&order=Importance Bugzilla (MPC project)].
 +
 
= Obtaining Sources  =
 
= Obtaining Sources  =
  

Revision as of 11:05, 18 March 2010

Tasks/Issues/Bugs

Issues are tracked in Bugzilla (MPC project).

Obtaining Sources

git clone git://git.eclipse.org/gitroot/mpc/org.eclipse.epp.mpc mpc

Building

MPC is built using Ant, Maven 3 (>= alpha-5) and Tycho.

  • Building bundles:
[~/mpc] $ mvn clean install
[INFO] Scanning for projects...
...
  • Building an update site:
[~/mpc] $ mvn -f org.eclipse.epp.mpc.releng/pom.xml package
[INFO] Scanning for projects...
...
  • Building a release
[~/mpc/org.eclipse.epp.mpc] $ ant dist
[INFO] Scanning for projects...

Back to the top