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
m (Downloading the Source Code)
Line 28: Line 28:
 
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.repository.git repository
 
git clone http://git.eclipse.org/gitroot//stardust/org.eclipse.stardust.ui.common.git ui.common
 
git clone http://git.eclipse.org/gitroot//stardust/org.eclipse.stardust.ui.common.git ui.common
</pre>  
+
</pre>
 +
 
 +
If you run git clone behind a HTTP proxy specify proxy details first.
 +
 
 +
<pre>git config --global http.proxy http://<user>:<password>@proxy:port</pre>
 +
 
 
== Binary Distribution  ==
 
== Binary Distribution  ==
  

Revision as of 05:09, 3 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 environment you can open a git shell to run git commands (git bash or git-cmd.bat)

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

If you run git clone behind a HTTP proxy specify proxy details first.

git config --global http.proxy http://<user>:<password>@proxy:port

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.

Copyright © Eclipse Foundation, Inc. All Rights Reserved.