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 "Triquetrum/Releng/New Eclipse Version"

(Intro)
Line 2: Line 2:
  
 
Below are the changes necessary.
 
Below are the changes necessary.
 +
 +
See [[Milestone and Release Builds]]
  
 
== Update the tpd files ==
 
== Update the tpd files ==
Line 28: Line 30:
  
 
== See Also ==
 
== See Also ==
 +
* [[Milestone and Release Builds]]
 
* [[SimRel/Simultaneous_Release_Requirements | Simultaneous Release Requirements]]
 
* [[SimRel/Simultaneous_Release_Requirements | Simultaneous Release Requirements]]
 
* [https://github.com/eclipse/triquetrum/issues/104 104: Update Triquetrum to Neon]
 
* [https://github.com/eclipse/triquetrum/issues/104 104: Update Triquetrum to Neon]

Revision as of 20:14, 20 February 2017

Periodically, Eclipse gets updated and Triquetrum should be updated to the most recent version of Eclipse.

Below are the changes necessary.

See Milestone and Release Builds

Update the tpd files

  1. We use Target Platform Definition (.tpd) files to define .target files, so edit the .tpd files and change from the previous Eclipse to the new Eclipse
  2. Right click on the .tpd file and select "Create Target Definition File", which will create the .target file
  3. Right click again on the .tpd file and select "Set Target Platform" (Or open the .target file that was just created and set the target platform there)

Check for other instances

Check out a clean tree and search for the previous Eclipse:

 git clone https://github.com/eclipse/triquetrum/
 cd triquetrum
 find . -type f | xargs grep neon

Update the version number

See Milestone Builds

Testing

  1. Go to the org.eclipse.triquetrum.repository/Triquetrum.product file and select Run.
    1. The new Eclipse version should appear in the splash screen
  2. Exit Eclipse and run "mvn clean verify"
  3. Test out the installer, which will be in org.eclipse.triquetrum.repository/target/products
  mkdir tmp
  cd tmp
  unzip ../org.eclipse.triquetrum.repository/target//products/org.eclipse.triquetrum.workflow.editor.rcp.incubation-0.1.0-macosx.cocoa.x86_64.zip

See Also

Back to the top