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 "Data Tools Platform Project/Build"

 
Line 6: Line 6:
  
 
# Start with a clean folder, which we will call ROOT
 
# Start with a clean folder, which we will call ROOT
# Clone all [http://git.eclipse.org/c/datatools/ DTP Git repos] into ROOT, such that each repo has it's own sub-folder named using the repository name
+
# Clone all [http://git.eclipse.org/c/datatools/ DTP Git repos], except org.eclipse.datatools.incubator.git into ROOT, such that each repo has it's own sub-folder named using the repository name
 
# Ensure that you have Ant installed and it's on the path (the official build uses Ant 1.9.2)
 
# Ensure that you have Ant installed and it's on the path (the official build uses Ant 1.9.2)
 
# Ensure that you have JDK 8 installed and it's on the path to run the build
 
# Ensure that you have JDK 8 installed and it's on the path to run the build

Latest revision as of 18:17, 10 January 2017

The official DTP builds are produced by an Eclipse Foundation's Hudson instance.

https://hudson.eclipse.org/datatools/

To build DTP locally, following these steps:

  1. Start with a clean folder, which we will call ROOT
  2. Clone all DTP Git repos, except org.eclipse.datatools.incubator.git into ROOT, such that each repo has it's own sub-folder named using the repository name
  3. Ensure that you have Ant installed and it's on the path (the official build uses Ant 1.9.2)
  4. Ensure that you have JDK 8 installed and it's on the path to run the build
  5. Set JDK_8_HOME environment variables
  6. Ensure that you have a network connection as the build will need to download items to build the target platform
  7. Run "ant dev-build" from ROOT/org.eclipse.datatools.build/releng.new (we will call this folder RELENG)

Once the build completes, you will have the following artifacts:

  1. RELENG/build/repository - the p2 repo
  2. RELENG/build/packages - the zipped copy of the p2 repo
  3. RELENG/dev-eclipse - an Eclipse install with everything necessary to work on DTP
  4. RELENG/dev-target - an Eclipse install with DTP and source bundles for everything

Back to the top