Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 5b9f5f6529515d300600b4ae8827ead3b302fc36 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
How to setup a Target Explorer development environment
======================================================

1. Download and extract the Eclipse SDK environment
	- Download the Eclipse Classic 4.x SDK package from http://www.eclipse.org/downloads
	- Extract the downloaded archive

	Note: To build the Target Explorer plug-in's, you need to have a Java SE 6 JDK installed.
	      The use of Java 6 language features is permitted.
	
2. Add the EGit team provider and the C/C++ tooling
	- Launch Eclipse
	- Open the "Install" dialog via "Help > Install New Software ..."
	- Select the Eclipse 4.x release site (http://download.eclipse.org/releases/juno).
	  If not in the list, add it.
	- Choose the EGit team provider
			* Collaboration > Eclipse EGit and
			* Collaboration > Eclipse JGit
	- Choose the C/C++ tooling (Programming Languages > C/C++ Development Tools)
	- Install the additional components and restart Eclipse

3. Import the code formatter settings
	- Window > Preferences > Java > Code Style > Formatter > Import...
	- Import from org.eclipse.tm.te.docs/team/CodeFormatterSettings.xml.
	
4. Import the team project set
	- Import the project set from org.eclipse.tm.te.docs/team/projectSets/projectSet.psf

5. Git setup for correct userid as per
        - http://wiki.eclipse.org/Platform-releng/Git_Workflows#Configure_the_workspace

6. Git setup the repo as per
        - http://wiki.eclipse.org/Platform-releng/Git_Workflows#Configuring_the_repo

Back to the top