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 "Stardust/Source Code"

m
Line 11: Line 11:
  
 
#Create a new folder and open a git shell in it. (bash on Linux/Win or git-cmd.bat on Win)  
 
#Create a new folder and open a git shell in it. (bash on Linux/Win or git-cmd.bat on Win)  
#Issue the following commands individually or by copy all commands in a .cmd or .sh file.
+
#Copy the following commands in a cloneStardust.cmd or scloneStardust.sh file and run it (or run the commands individually)
<pre>
+
<pre>git clone http://git.eclipse.org/gitroot//stardust/org.eclipse.stardust.build.tools.git build.tools
git clone http://git.eclipse.org/gitroot//stardust/org.eclipse.stardust.build.tools.git build.tools
+
 
git clone http://git.eclipse.org/gitroot//stardust/org.eclipse.stardust.ui.common.git common
 
git clone http://git.eclipse.org/gitroot//stardust/org.eclipse.stardust.ui.common.git common
 
git clone http://git.eclipse.org/gitroot//stardust/org.eclipse.stardust.components.git components
 
git clone http://git.eclipse.org/gitroot//stardust/org.eclipse.stardust.components.git components

Revision as of 04:43, 2 July 2012

Installing Git

To checkout the source code your need to install git. You have different options, for instance:

  • [git scm] installs a minimal environment to run Git. It comes with a Bash,a Perl interpreter and the Git executable plus dependencies.
  • [msysgit] installs a build environment for Git on Windows. It includes git scm.

After installing a git enviropnment open a shell

Downloading the Source Code

  1. Create a new folder and open a git shell in it. (bash on Linux/Win or git-cmd.bat on Win)
  2. Copy the following commands in a cloneStardust.cmd or scloneStardust.sh file and run it (or run the commands individually)
git clone http://git.eclipse.org/gitroot//stardust/org.eclipse.stardust.build.tools.git build.tools
git clone http://git.eclipse.org/gitroot//stardust/org.eclipse.stardust.ui.common.git common
git clone http://git.eclipse.org/gitroot//stardust/org.eclipse.stardust.components.git components
git clone http://git.eclipse.org/gitroot//stardust/org.eclipse.stardust.documentation.git documentation
git clone http://git.eclipse.org/gitroot//stardust/org.eclipse.stardust.engine.git engine
git clone http://git.eclipse.org/gitroot//stardust/org.eclipse.stardust.ide.git ide
git clone http://git.eclipse.org/gitroot//stardust/org.eclipse.stardust.ide.simulation.git ide.simulation
git clone http://git.eclipse.org/gitroot//stardust/org.eclipse.stardust.ide.wst.git ide.wst
git clone http://git.eclipse.org/gitroot//stardust/org.eclipse.stardust.git org.eclipse.stardust
git clone http://git.eclipse.org/gitroot//stardust/org.eclipse.stardust.product.git product
git clone http://git.eclipse.org/gitroot//stardust/org.eclipse.stardust.reporting.rt.git reporting.rt
git clone http://git.eclipse.org/gitroot//stardust/org.eclipse.stardust.reporting.app.web.git reporting.app.web
git clone http://git.eclipse.org/gitroot//stardust/org.eclipse.stardust.reporting.ui.git reporting.ui
git clone http://git.eclipse.org/gitroot//stardust/org.eclipse.stardust.ui.web.git ui.web
git clone http://git.eclipse.org/gitroot//stardust/org.eclipse.stardust.repository.git repository
git clone http://git.eclipse.org/gitroot//stardust/org.eclipse.stardust.ui.common.git ui.common

Binary Distribution

All Stardust source code has been submitted to the Eclipse git repository. A complete binary distribution requires libraries which are still pending approval by Eclipse legal, hence no binary distribution is available yet. One will be available for download form the project website as soon as the libraries have been approved.

Compliance

  • The products libraries have been reviewed for license conflicts.
  • Dependencies that did not comply with the Eclipse Public License (EPL) have been replaced
  • The source has been submitted to the Eclipse foundation where it was reviewed with regards to intellectual property rights and licensing.
  • The source was refactored. All package names were change to the eclipse package names.

Back to the top