How To
Build an internal repository containing the plugin's from an Eclipse installation
This will create pom's for all the plugins from your Eclipse installation located at
/path/to/eclipse/install and deploy them to your internal repository external_free
mvn eclipse:make-artifacts -DeclipseDir=/path/to/eclipse/install -DdeployTo=external _free::default::scp://NUCLEUS/usr/local/www/default/maven2_repositories/external_free
Add the Eclipse RCP artifacts to your internal repository
This will add the Eclipse RCP artifacts which you have downloaded and install them into your internal repository external_free so they can be shared.
Note: for readability this is split across multiple lines and Windows users will need to make a single line without the \s.
Upload the eclipse-RCP-3.2-win32.zip
mvn deploy:deploy-file \ -DrepositoryId=external_free \ -Durl=scp://NUCLEUS/usr/local/www/default/maven2_repositories/external_free \ -DgeneratePom=true \ -Dpackaging=zip \ -DgroupId=org.eclipse \ -DartifactId=eclipse-RCP \ -Dversion=3.2 \ -Dclassifer=win32 \ -Dfile=eclipse-RCP-3.2-win32.zip
Upload the eclipse-RCP-3.2-delta-pack.zip
mvn deploy:deploy-file \ -DrepositoryId=external_free \ -Durl=scp://NUCLEUS/usr/local/www/default/maven2_repositories/external_free \ -DgeneratePom=true \ -Dpackaging=zip \ -DgroupId=org.eclipse \ -DartifactId=eclipse-RCP \ -Dversion=3.2 \ -Dclassifer=delta-pack \ -Dfile=eclipse-RCP-3.2-delta-pack.zip
Labels
