-
-
Notifications
You must be signed in to change notification settings - Fork 130
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug #459 Add a target file for Embed CDT
Using a target file enables a way to share consistent plug-ins in the runtime Eclipse instance across developers and ensures that the target platform that Maven Tycho uses is the same as what is used in Eclipse. There is no requirement to use the target platform in the IDE, the current method of installing all the dependencies in the development Eclipse instance is ok.
- Loading branch information
1 parent
50e30b8
commit eea32dd
Showing
4 changed files
with
52 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
target-platform/org.eclipse.embedcdt.target-platform.target
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
<?pde version="3.8"?> | ||
<target name="embedcdt"> | ||
<locations> | ||
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit"> | ||
<repository location="https://download.eclipse.org/releases/2020-09/202009161000"/> | ||
<unit id="org.eclipse.cdt.feature.group" version="0.0.0"/> | ||
<unit id="org.eclipse.cdt.debug.gdbjtag.feature.group" version="0.0.0"/> | ||
</location> | ||
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit"> | ||
<repository location="http://download.eclipse.org/cbi/updates/license/"/> | ||
<unit id="org.eclipse.license.feature.group" version="0.0.0"/> | ||
</location> | ||
</locations> | ||
</target> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<!-- | ||
Copyright (c) 2021 Kichwa Coders Canada Inc. | ||
This program and the accompanying materials | ||
are made available under the terms of the Eclipse Public License 2.0 | ||
which accompanies this distribution, and is available at | ||
https://www.eclipse.org/legal/epl-2.0/ | ||
SPDX-License-Identifier: EPL-2.0 | ||
--> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<parent> | ||
<groupId>org.eclipse.embedcdt</groupId> | ||
<artifactId>org.eclipse.embedcdt.parent</artifactId> | ||
<version>6.1.0-SNAPSHOT</version> | ||
<relativePath>../parent/pom.xml</relativePath> | ||
</parent> | ||
|
||
<groupId>org.eclipse.embedcdt</groupId> | ||
<artifactId>org.eclipse.embedcdt.target-platform</artifactId> | ||
<version>6.1.0-SNAPSHOT</version> | ||
<packaging>eclipse-target-definition</packaging> | ||
|
||
</project> |