mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-25 01:45:33 +02:00
Merge ../org.eclipse.tm.terminal
This commit is contained in:
commit
d92fc5d1f0
607 changed files with 61733 additions and 0 deletions
17
terminal/.gitignore
vendored
Normal file
17
terminal/.gitignore
vendored
Normal file
|
@ -0,0 +1,17 @@
|
|||
# ignore various emacs droppings
|
||||
*~
|
||||
\#*\#
|
||||
|
||||
# .
|
||||
workspace
|
||||
debug-workspace
|
||||
|
||||
# Ignored throughout the whole tree
|
||||
bin/
|
||||
target/
|
||||
coverage/
|
||||
artifacts/
|
||||
/ManifestValidationResult.html
|
||||
|
||||
# MacOSX
|
||||
.DS_Store
|
50
terminal/CONTRIBUTING
Normal file
50
terminal/CONTRIBUTING
Normal file
|
@ -0,0 +1,50 @@
|
|||
Contributing to Target Management Terminal
|
||||
==========================================
|
||||
|
||||
Thanks for your interest in this project.
|
||||
|
||||
Project description:
|
||||
--------------------
|
||||
|
||||
The Target Management Terminal is a lightweight VT100 terminal implementation. The project provides a re-usable terminal widget,
|
||||
a set of predefined terminal connectors (i.e. SSH and local shell) and a view managing the terminal sessions.
|
||||
|
||||
Developer resources:
|
||||
--------------------
|
||||
|
||||
Source Repositories:
|
||||
|
||||
You can use the code from these repositories to experiment, test, build, create patches, issue pull requests, etc. This project uses Gerrit Code Review; please see contributing via Gerrit (https://wiki.eclipse.org/Gerrit).
|
||||
|
||||
tm/org.eclipse.tm.terminal - Target Management Terminal
|
||||
Clone: https://git.eclipse.org/r/tm/org.eclipse.tm.terminal
|
||||
Browse Repository: http://git.eclipse.org/c/tm/org.eclipse.tm.terminal.git
|
||||
Review with Gerrit: https://git.eclipse.org/r/p/tm/org.eclipse.tm.terminal
|
||||
|
||||
Contributor License Agreement:
|
||||
------------------------------
|
||||
|
||||
Before your contribution can be accepted by the project, you need to create and electronically sign the Eclipse Foundation Contributor License Agreement (CLA).
|
||||
|
||||
- http://www.eclipse.org/legal/CLA.php
|
||||
|
||||
Contact:
|
||||
--------
|
||||
|
||||
Contact the project developers via the project's "dev" list.
|
||||
|
||||
- https://dev.eclipse.org/mailman/listinfo/tm-dev
|
||||
|
||||
Search for bugs:
|
||||
----------------
|
||||
|
||||
This project uses Bugzilla to track ongoing development and issues.
|
||||
|
||||
- https://bugs.eclipse.org/bugs/buglist.cgi?bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&classification=Tools&component=Terminal&list_id=11564722&product=Target%20Management&query_format=advanced
|
||||
|
||||
Create a new bug:
|
||||
-----------------
|
||||
|
||||
Be sure to search for existing bugs before you create another one. Remember that contributions are always welcome!
|
||||
|
||||
- https://bugs.eclipse.org/bugs/enter_bug.cgi?product=Target%20Management&component=Terminal
|
1
terminal/admin/.gitignore
vendored
Normal file
1
terminal/admin/.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
/target
|
38
terminal/admin/.project
Normal file
38
terminal/admin/.project
Normal file
|
@ -0,0 +1,38 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<projectDescription>
|
||||
<name>Administration (TM Terminal)</name>
|
||||
<comment></comment>
|
||||
<projects>
|
||||
</projects>
|
||||
<buildSpec>
|
||||
</buildSpec>
|
||||
<natures>
|
||||
</natures>
|
||||
<linkedResources>
|
||||
<link>
|
||||
<name>CONTRIBUTING</name>
|
||||
<type>1</type>
|
||||
<locationURI>PARENT-1-PROJECT_LOC/CONTRIBUTING</locationURI>
|
||||
</link>
|
||||
<link>
|
||||
<name>pom.xml</name>
|
||||
<type>1</type>
|
||||
<locationURI>PARENT-1-PROJECT_LOC/pom.xml</locationURI>
|
||||
</link>
|
||||
<link>
|
||||
<name>readme.txt</name>
|
||||
<type>1</type>
|
||||
<locationURI>PARENT-1-PROJECT_LOC/readme.txt</locationURI>
|
||||
</link>
|
||||
<link>
|
||||
<name>terminals.psf</name>
|
||||
<type>1</type>
|
||||
<locationURI>PARENT-1-PROJECT_LOC/terminals.psf</locationURI>
|
||||
</link>
|
||||
<link>
|
||||
<name>toplevel.gitignore</name>
|
||||
<type>1</type>
|
||||
<locationURI>PARENT-1-PROJECT_LOC/.gitignore</locationURI>
|
||||
</link>
|
||||
</linkedResources>
|
||||
</projectDescription>
|
92
terminal/admin/findbugs-exclude.xml
Normal file
92
terminal/admin/findbugs-exclude.xml
Normal file
|
@ -0,0 +1,92 @@
|
|||
<FindBugsFilter>
|
||||
<!-- Ignore all Terminal Tests -->
|
||||
<Match>
|
||||
<Package name="~org\.eclipse\.tm\.internal\.terminal\.test..*"/>
|
||||
</Match>
|
||||
|
||||
<!-- Set maximum rank level to 16 -->
|
||||
<Match>
|
||||
<Rank value="17"/>
|
||||
</Match>
|
||||
|
||||
<!-- Ignore all I18N Internationalization bugs -->
|
||||
<Match>
|
||||
<Bug category="I18N"/>
|
||||
</Match>
|
||||
|
||||
<!-- Ignore all NM_SAME_SIMPLE_NAME_AS_SUPERCLASS or NM_SAME_SIMPLE_NAME_AS_INTERFACE violations -->
|
||||
<Match>
|
||||
<Bug pattern="NM_SAME_SIMPLE_NAME_AS_SUPERCLASS"/>
|
||||
</Match>
|
||||
<Match>
|
||||
<Bug pattern="NM_SAME_SIMPLE_NAME_AS_INTERFACE"/>
|
||||
</Match>
|
||||
|
||||
<!-- Ignore all SF_SWITCH_NO_DEFAULT violations -->
|
||||
<Match>
|
||||
<Bug pattern="SF_SWITCH_NO_DEFAULT"/>
|
||||
</Match>
|
||||
|
||||
<!-- Ignore all serialization violations -->
|
||||
<Match>
|
||||
<Or>
|
||||
<Bug pattern="SE_BAD_FIELD"/>
|
||||
<Bug pattern="SE_BAD_FIELD_INNER_CLASS"/>
|
||||
<Bug pattern="SE_COMPARATOR_SHOULD_BE_SERIALIZABLE"/>
|
||||
</Or>
|
||||
</Match>
|
||||
|
||||
<!-- Ignore all inner class should be static violations -->
|
||||
<Match>
|
||||
<Or>
|
||||
<Bug pattern="SIC_INNER_SHOULD_BE_STATIC"/>
|
||||
<Bug pattern="SIC_INNER_SHOULD_BE_STATIC_ANON"/>
|
||||
<Bug pattern="SIC_INNER_SHOULD_BE_STATIC_NEEDS_THIS"/>
|
||||
</Or>
|
||||
</Match>
|
||||
|
||||
<!-- Ignore all REC_CATCH_EXCEPTION -->
|
||||
<Match>
|
||||
<Bug pattern="REC_CATCH_EXCEPTION"/>
|
||||
</Match>
|
||||
|
||||
<!-- Ignore all STCAL_INVOKE_ON_STATIC_DATE_FORMAT_INSTANCE -->
|
||||
<Match>
|
||||
<Bug pattern="STCAL_INVOKE_ON_STATIC_DATE_FORMAT_INSTANCE"/>
|
||||
</Match>
|
||||
|
||||
<!-- Ignore ES_COMPARING_PARAMETER_STRING_WITH_EQ -->
|
||||
<Match>
|
||||
<Bug pattern="ES_COMPARING_PARAMETER_STRING_WITH_EQ"/>
|
||||
<Class name="org.eclipse.tm.terminal.view.ui.manager.ConsoleManager"/>
|
||||
</Match>
|
||||
|
||||
<!-- Ignore all ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD violations in bundle activators -->
|
||||
<Match>
|
||||
<Bug pattern="ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD"/>
|
||||
<Or>
|
||||
<Method name="start" params="org.osgi.framework.BundleContext" returns="void"/>
|
||||
<Method name="stop" params="org.osgi.framework.BundleContext" returns="void"/>
|
||||
<Class name="~.*\.Activator"/>
|
||||
<Class name="~.*\..*Plugin"/>
|
||||
</Or>
|
||||
</Match>
|
||||
|
||||
<!-- Ignore RV_RETURN_VALUE_IGNORED_BAD_PRACTICE -->
|
||||
<Match>
|
||||
<Bug pattern="RV_RETURN_VALUE_IGNORED_BAD_PRACTICE"/>
|
||||
<Class name="org.eclipse.tm.terminal.connector.local.showin.ExternalExecutablesManager"/>
|
||||
</Match>
|
||||
|
||||
<!-- Ignore RCN_REDUNDANT_NULLCHECK_OF_NONNULL_VALUE -->
|
||||
<Match>
|
||||
<Bug pattern="RCN_REDUNDANT_NULLCHECK_OF_NONNULL_VALUE"/>
|
||||
</Match>
|
||||
|
||||
<!-- Ignore NP_LOAD_OF_KNOWN_NULL_VALUE -->
|
||||
<Match>
|
||||
<Bug pattern="NP_LOAD_OF_KNOWN_NULL_VALUE"/>
|
||||
<Class name="org.eclipse.tm.terminal.connector.local.showin.ExternalExecutablesDialog"/>
|
||||
</Match>
|
||||
|
||||
</FindBugsFilter>
|
163
terminal/admin/pom-build.xml
Normal file
163
terminal/admin/pom-build.xml
Normal file
|
@ -0,0 +1,163 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
|
||||
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<groupId>org.eclipse.tm.terminal</groupId>
|
||||
<artifactId>org.eclipse.tm.terminal.maven-config</artifactId>
|
||||
<version>4.4.0-SNAPSHOT</version>
|
||||
<relativePath>pom-config.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
<groupId>org.eclipse.tm.terminal</groupId>
|
||||
<artifactId>org.eclipse.tm.terminal.maven-build</artifactId>
|
||||
<version>4.4.0-SNAPSHOT</version>
|
||||
<packaging>pom</packaging>
|
||||
<name>TM Terminal, Maven Build Master</name>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.eclipse.tycho</groupId>
|
||||
<artifactId>tycho-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.eclipse.tycho</groupId>
|
||||
<artifactId>target-platform-configuration</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.eclipse.tycho</groupId>
|
||||
<artifactId>tycho-source-plugin</artifactId>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>sign</id>
|
||||
<!-- Uses the new jarsigner from the CBI platform -->
|
||||
<!-- Works only if the build runs at a Eclipse build server -->
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.eclipse.tycho.extras</groupId>
|
||||
<artifactId>tycho-pack200a-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.eclipse.cbi.maven.plugins</groupId>
|
||||
<artifactId>eclipse-jarsigner-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.eclipse.tycho.extras</groupId>
|
||||
<artifactId>tycho-pack200b-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.eclipse.tycho</groupId>
|
||||
<artifactId>tycho-p2-plugin</artifactId>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
|
||||
<profile>
|
||||
<id>findbugs</id>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>findbugs-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>static-checks</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>findbugs-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-pmd-plugin</artifactId>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>tests</id>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.eclipse.tycho</groupId>
|
||||
<artifactId>target-platform-configuration</artifactId>
|
||||
<configuration>
|
||||
<dependency-resolution>
|
||||
<extraRequirements>
|
||||
<!-- product IU under test -->
|
||||
<requirement>
|
||||
<type>p2-installable-unit</type>
|
||||
<id>org.eclipse.platform.ide</id>
|
||||
<versionRange>0.0.0</versionRange>
|
||||
</requirement>
|
||||
<requirement>
|
||||
<type>eclipse-feature</type>
|
||||
<id>org.eclipse.sdk</id>
|
||||
<versionRange>0.0.0</versionRange>
|
||||
</requirement>
|
||||
<requirement>
|
||||
<type>eclipse-feature</type>
|
||||
<id>org.eclipse.cdt.platform</id>
|
||||
<versionRange>0.0.0</versionRange>
|
||||
</requirement>
|
||||
<requirement>
|
||||
<type>eclipse-feature</type>
|
||||
<id>org.eclipse.remote</id>
|
||||
<versionRange>0.0.0</versionRange>
|
||||
</requirement>
|
||||
<requirement>
|
||||
<type>eclipse-feature</type>
|
||||
<id>org.eclipse.swtbot.eclipse</id>
|
||||
<versionRange>0.0.0</versionRange>
|
||||
</requirement>
|
||||
</extraRequirements>
|
||||
</dependency-resolution>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.jacoco</groupId>
|
||||
<artifactId>jacoco-maven-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<goals>
|
||||
<goal>prepare-agent</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<includes>
|
||||
<include>org.eclipse.tm.terminal*</include>
|
||||
</includes>
|
||||
<!-- <excludes> <exclude>org.eclipse.tm.terminal.test.*</exclude>
|
||||
</excludes> -->
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<!-- <plugin> <groupId>org.eclipse.tycho</groupId> <artifactId>tycho-surefire-plugin</artifactId>
|
||||
<version>${tycho-version}</version> <configuration> <useUIHarness>true</useUIHarness>
|
||||
<useUIThread>true</useUIThread> <failIfNoTests>false</failIfNoTests> <dependencies>
|
||||
<dependency> <type>p2-installable-unit</type> <artifactId>org.eclipse.platform.feature.group</artifactId>
|
||||
<version>${sdk-version}</version> </dependency> </dependencies> <product>org.eclipse.platform.ide</product>
|
||||
<argLine>-Xms512m -Xmx1024m -XX:PermSize=256m -XX:MaxPermSize=256m -Drse.enableSecureStoreAccess=false
|
||||
-Dorg.eclipse.swt.browser.UseWebKitGTK=true</argLine> </configuration> </plugin> -->
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
|
||||
</profiles>
|
||||
</project>
|
518
terminal/admin/pom-config.xml
Normal file
518
terminal/admin/pom-config.xml
Normal file
|
@ -0,0 +1,518 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
|
||||
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<prerequisites>
|
||||
<maven>3.0</maven>
|
||||
</prerequisites>
|
||||
|
||||
<groupId>org.eclipse.tm.terminal</groupId>
|
||||
<artifactId>org.eclipse.tm.terminal.maven-config</artifactId>
|
||||
<version>4.4.0-SNAPSHOT</version>
|
||||
<packaging>pom</packaging>
|
||||
<name>TM Terminal, Maven Configuration Master</name>
|
||||
|
||||
<licenses>
|
||||
<license>
|
||||
<name>Eclipse Public License</name>
|
||||
<url>http://www.eclipse.org/legal/epl-v10.html</url>
|
||||
<distribution>repo</distribution>
|
||||
<comments>
|
||||
All rights reserved.
|
||||
|
||||
This program and the accompanying materials are made
|
||||
available under the terms of the Eclipse Public License v1.0
|
||||
which accompanies this distribution, and is available at
|
||||
http://www.eclipse.org/legal/epl-v10.htm
|
||||
</comments>
|
||||
</license>
|
||||
</licenses>
|
||||
|
||||
<organization>
|
||||
<name>Eclipse Foundation</name>
|
||||
<url>http://www.eclipse.org/</url>
|
||||
</organization>
|
||||
|
||||
<properties>
|
||||
<!-- Define version id's to be used in the plugins section -->
|
||||
<!-- We use tycho-0.23 for https://bugs.eclipse.org/bugs/show_bug.cgi?id=459873 -->
|
||||
<!-- We cannot use tycho-0.25 or later since it doesn't support Java 7
|
||||
for building -->
|
||||
<!-- Using Java 8 for Tycho with a Java 7 target should be possible but
|
||||
takes some config -->
|
||||
<!-- See https://bugs.eclipse.org/bugs/show_bug.cgi?id=518104 for reference -->
|
||||
<tycho-version>0.23.1</tycho-version>
|
||||
<tycho-extras-version>${tycho-version}</tycho-extras-version>
|
||||
<maven-resources-version>2.7</maven-resources-version>
|
||||
<maven-antrun-version>1.8</maven-antrun-version>
|
||||
<gmaven-version>1.5</gmaven-version>
|
||||
<findbugs-version>3.0.4</findbugs-version>
|
||||
<!-- Check available versions at https://repository.sonatype.org/content/repositories/public/org/jacoco/jacoco-maven-plugin -->
|
||||
<jacoco-version>0.7.9</jacoco-version>
|
||||
<!-- Note: jarsigner-1.1.4 fails with Java 7 so stick to 1.1.2 -->
|
||||
<eclipse-jarsigner-version>1.1.2</eclipse-jarsigner-version>
|
||||
|
||||
<!-- Common global properties -->
|
||||
<adminDir>${env.WORKSPACE}/admin</adminDir>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
|
||||
<!-- JaCoCo global properties -->
|
||||
<jacoco.skip>false</jacoco.skip>
|
||||
<jacoco.output>file</jacoco.output>
|
||||
<jacoco.dumpOnExit>true</jacoco.dumpOnExit>
|
||||
|
||||
<terminal-stream>development</terminal-stream>
|
||||
<terminal-zipfile>${project.artifactId}.zip</terminal-zipfile>
|
||||
<terminal-install>/home/data/httpd/download.eclipse.org/tm/terminal/builds/${terminal-stream}/nightly</terminal-install>
|
||||
<tycho.scmUrl>scm:git:git://git.eclipse.org/gitroot/tm/org.eclipse.tm.terminal.git</tycho.scmUrl>
|
||||
|
||||
<sdk-version>4.7</sdk-version>
|
||||
|
||||
<!-- Set up Mars as the default target platform to build against, -->
|
||||
<!-- Because it supports Java 7, but also already has the cdt.native.serial
|
||||
plugin. -->
|
||||
<!-- Also, PTP o.e.remote-2.0 from Mars is the oldest remote version that
|
||||
we can support. -->
|
||||
<platform-site>http://download.eclipse.org/eclipse/updates/4.5</platform-site>
|
||||
<platform-release-site>http://download.eclipse.org/releases/mars</platform-release-site>
|
||||
<license-site>http://download.eclipse.org/cbi/updates/license</license-site>
|
||||
<cdt-site>http://download.eclipse.org/tools/cdt/releases/8.8.1</cdt-site>
|
||||
<tm-site>http://download.eclipse.org/tm/updates/4.0</tm-site>
|
||||
<remote-site>http://download.eclipse.org/tools/ptp/builds/remote/2.0.0</remote-site>
|
||||
<rxtx-site>http://archive.eclipse.org/tm/updates/rxtx</rxtx-site>
|
||||
<!-- TCF needs gson-2.2.4 which was added to Orbit in Luna SR2 -->
|
||||
<orbit-site>http://download.eclipse.org/tools/orbit/downloads/drops/R20150124073747/repository/</orbit-site>
|
||||
<!-- SWTBot-2.4 and later require an e4-based Eclipse eg Juno or later: -->
|
||||
<!-- See http://wiki.eclipse.org/SWTBot/Releases -->
|
||||
<!-- Also, newer SWTBot needs JUnit 4.12 which is only in Orbit Mars and
|
||||
newer -->
|
||||
<swtbot-site>http://download.eclipse.org/technology/swtbot/releases/2.2.1/</swtbot-site>
|
||||
</properties>
|
||||
|
||||
<repositories>
|
||||
<repository>
|
||||
<id>license-feature</id>
|
||||
<url>${license-site}</url>
|
||||
<layout>p2</layout>
|
||||
</repository>
|
||||
<repository>
|
||||
<id>platform</id>
|
||||
<url>${platform-site}</url>
|
||||
<layout>p2</layout>
|
||||
</repository>
|
||||
<repository>
|
||||
<id>platform-release</id>
|
||||
<url>${platform-release-site}</url>
|
||||
<layout>p2</layout>
|
||||
</repository>
|
||||
<repository>
|
||||
<id>orbit</id>
|
||||
<url>${orbit-site}</url>
|
||||
<layout>p2</layout>
|
||||
</repository>
|
||||
<repository>
|
||||
<id>cdt</id>
|
||||
<url>${cdt-site}</url>
|
||||
<layout>p2</layout>
|
||||
</repository>
|
||||
<repository>
|
||||
<id>tm</id>
|
||||
<url>${tm-site}</url>
|
||||
<layout>p2</layout>
|
||||
</repository>
|
||||
<repository>
|
||||
<id>swtbot</id>
|
||||
<url>${swtbot-site}</url>
|
||||
<layout>p2</layout>
|
||||
</repository>
|
||||
<repository>
|
||||
<id>remote</id>
|
||||
<url>${remote-site}</url>
|
||||
<layout>p2</layout>
|
||||
</repository>
|
||||
<repository>
|
||||
<id>rxtx</id>
|
||||
<url>${rxtx-site}</url>
|
||||
<layout>p2</layout>
|
||||
</repository>
|
||||
</repositories>
|
||||
|
||||
<pluginRepositories>
|
||||
<pluginRepository>
|
||||
<id>sonatype</id>
|
||||
<url>https://oss.sonatype.org/content/repositories/public</url>
|
||||
<snapshots>
|
||||
<enabled>true</enabled>
|
||||
</snapshots>
|
||||
<releases>
|
||||
<enabled>true</enabled>
|
||||
</releases>
|
||||
</pluginRepository>
|
||||
<pluginRepository>
|
||||
<id>cbi</id>
|
||||
<url>https://repo.eclipse.org/content/repositories/cbi-releases/</url>
|
||||
</pluginRepository>
|
||||
<pluginRepository>
|
||||
<id>cbi-snapshots</id>
|
||||
<url>https://repo.eclipse.org/content/repositories/cbi-snapshots/</url>
|
||||
</pluginRepository>
|
||||
</pluginRepositories>
|
||||
|
||||
<profiles>
|
||||
<profile>
|
||||
<!-- Eclipse 3.8.2 (Juno), CDT 8.4.0 (Luna SR0) -->
|
||||
<id>juno</id>
|
||||
|
||||
<properties>
|
||||
<terminal-stream>juno</terminal-stream>
|
||||
<sdk-version>3.8</sdk-version>
|
||||
<platform-site>http://download.eclipse.org/eclipse/updates/3.8</platform-site>
|
||||
<platform-release-site>http://download.eclipse.org/releases/juno</platform-release-site>
|
||||
<!-- SWTBot needs JUnit 4.12 which is only in Orbit Mars and newer <orbit-site>http://download.eclipse.org/tools/orbit/downloads/drops/R20130118183705/repository/</orbit-site> -->
|
||||
<cdt-site>http://download.eclipse.org/tools/cdt/releases/8.4</cdt-site>
|
||||
</properties>
|
||||
</profile>
|
||||
<profile>
|
||||
<!-- Eclipse 4.3.2 (Kepler SR2), CDT 8.4.0 (Luna SR0) -->
|
||||
<id>kepler</id>
|
||||
|
||||
<properties>
|
||||
<terminal-stream>kepler</terminal-stream>
|
||||
<sdk-version>4.3</sdk-version>
|
||||
<platform-site>http://download.eclipse.org/eclipse/updates/4.3</platform-site>
|
||||
<platform-release-site>http://download.eclipse.org/releases/kepler</platform-release-site>
|
||||
<!-- SWTBot needs JUnit 4.12 which is only in Orbit Mars and newer <orbit-site>http://download.eclipse.org/tools/orbit/downloads/drops/R20140114142710/repository/</orbit-site> -->
|
||||
<cdt-site>http://download.eclipse.org/tools/cdt/releases/8.4</cdt-site>
|
||||
</properties>
|
||||
</profile>
|
||||
<profile>
|
||||
<!-- Eclipse 4.4.2 (Luna SR2), CDT 8.6.0 (Luna SR2) -->
|
||||
<id>luna</id>
|
||||
|
||||
<properties>
|
||||
<terminal-stream>luna</terminal-stream>
|
||||
<sdk-version>4.4</sdk-version>
|
||||
<platform-site>http://download.eclipse.org/eclipse/updates/4.4</platform-site>
|
||||
<platform-release-site>http://download.eclipse.org/releases/luna</platform-release-site>
|
||||
<!-- SWTBot needs JUnit 4.12 which is only in Orbit Mars and newer <orbit-site>http://download.eclipse.org/tools/orbit/downloads/drops/R20150124073747/repository/</orbit-site> -->
|
||||
<cdt-site>http://download.eclipse.org/tools/cdt/releases/8.6</cdt-site>
|
||||
</properties>
|
||||
</profile>
|
||||
<profile>
|
||||
<!-- Eclipse 4.5.2 (Mars.2), CDT 8.8.1 (Mars.2) -->
|
||||
<id>mars</id>
|
||||
|
||||
<properties>
|
||||
<terminal-stream>mars</terminal-stream>
|
||||
<sdk-version>4.5</sdk-version>
|
||||
<platform-site>http://download.eclipse.org/eclipse/updates/4.5</platform-site>
|
||||
<platform-release-site>http://download.eclipse.org/releases/mars</platform-release-site>
|
||||
<orbit-site>http://download.eclipse.org/tools/orbit/downloads/drops/R20160221192158/repository</orbit-site>
|
||||
<remote-site>http://download.eclipse.org/tools/ptp/builds/remote/2.0.2</remote-site>
|
||||
<cdt-site>http://download.eclipse.org/tools/cdt/releases/8.8.1</cdt-site>
|
||||
</properties>
|
||||
</profile>
|
||||
<profile>
|
||||
<!-- Eclipse 4.6.3 (Neon.3), CDT 9.2.1 (Neon.3) -->
|
||||
<id>neon</id>
|
||||
|
||||
<properties>
|
||||
<terminal-stream>neon</terminal-stream>
|
||||
<sdk-version>4.6</sdk-version>
|
||||
<platform-site>http://download.eclipse.org/eclipse/updates/4.6</platform-site>
|
||||
<platform-release-site>http://download.eclipse.org/releases/neon</platform-release-site>
|
||||
<orbit-site>http://download.eclipse.org/tools/orbit/R-builds/R20170307180635/repository</orbit-site>
|
||||
<tm-site>http://download.eclipse.org/tm/updates/4.2</tm-site>
|
||||
<remote-site>http://download.eclipse.org/tools/ptp/builds/remote/2.1.1</remote-site>
|
||||
<cdt-site>http://download.eclipse.org/tools/cdt/releases/9.2</cdt-site>
|
||||
</properties>
|
||||
</profile>
|
||||
<profile>
|
||||
<!-- Eclipse 4.7 (Oxygen), CDT 9.3 -->
|
||||
<id>oxygen</id>
|
||||
|
||||
<properties>
|
||||
<terminal-stream>oxygen</terminal-stream>
|
||||
<sdk-version>4.7</sdk-version>
|
||||
<platform-site>http://download.eclipse.org/eclipse/updates/4.7</platform-site>
|
||||
<platform-release-site>http://download.eclipse.org/releases/oxygen</platform-release-site>
|
||||
<orbit-site>http://download.eclipse.org/tools/orbit/downloads/drops/R20170919201930/repository</orbit-site>
|
||||
<tm-site>http://download.eclipse.org/tm/updates/4.3milestones</tm-site>
|
||||
<remote-site>http://download.eclipse.org/tools/ptp/builds/remote/oxygen/milestones</remote-site>
|
||||
<cdt-site>http://download.eclipse.org/tools/cdt/builds/oxygen/milestones</cdt-site>
|
||||
<swtbot-site>http://download.eclipse.org/technology/swtbot/releases/latest/</swtbot-site>
|
||||
</properties>
|
||||
</profile>
|
||||
<profile>
|
||||
<!-- Eclipse 4.8 (Photon), CDT 9.5 -->
|
||||
<id>photon</id>
|
||||
|
||||
<properties>
|
||||
<terminal-stream>photon</terminal-stream>
|
||||
<sdk-version>4.8</sdk-version>
|
||||
<platform-site>http://download.eclipse.org/eclipse/updates/4.8milestones/</platform-site>
|
||||
<platform-release-site>http://download.eclipse.org/staging/photon/</platform-release-site>
|
||||
<!-- <platform-release-site>http://download.eclipse.org/releases/photon/</platform-release-site> -->
|
||||
<orbit-site>http://download.eclipse.org/tools/orbit/downloads/drops/R20180606145124/repository/</orbit-site>
|
||||
<tm-site>http://download.eclipse.org/tm/updates/3.7.100-SNAPSHOT/repository/</tm-site>
|
||||
<!-- <tm-site>http://download.eclipse.org/tm/updates/3.7.100/repository/</tm-site> -->
|
||||
<remote-site>http://download.eclipse.org/tools/ptp/builds/remote/nightly/</remote-site>
|
||||
<!-- <remote-site>http://download.eclipse.org/tools/ptp/builds/remote/photon/milestones/</remote-site> -->
|
||||
<cdt-site>http://download.eclipse.org/tools/cdt/builds/9.4</cdt-site>
|
||||
<swtbot-site>http://download.eclipse.org/technology/swtbot/releases/latest/</swtbot-site>
|
||||
</properties>
|
||||
</profile>
|
||||
</profiles>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.eclipse.tycho</groupId>
|
||||
<artifactId>tycho-maven-plugin</artifactId>
|
||||
<version>${tycho-version}</version>
|
||||
<extensions>true</extensions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.eclipse.tycho</groupId>
|
||||
<artifactId>tycho-maven-plugin</artifactId>
|
||||
<version>${tycho-version}</version>
|
||||
<extensions>true</extensions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.eclipse.tycho</groupId>
|
||||
<artifactId>target-platform-configuration</artifactId>
|
||||
<version>${tycho-version}</version>
|
||||
<configuration>
|
||||
<environments>
|
||||
<environment>
|
||||
<os>linux</os>
|
||||
<ws>gtk</ws>
|
||||
<arch>x86</arch>
|
||||
</environment>
|
||||
<environment>
|
||||
<os>linux</os>
|
||||
<ws>gtk</ws>
|
||||
<arch>x86_64</arch>
|
||||
</environment>
|
||||
<environment>
|
||||
<os>win32</os>
|
||||
<ws>win32</ws>
|
||||
<arch>x86</arch>
|
||||
</environment>
|
||||
<environment>
|
||||
<os>win32</os>
|
||||
<ws>win32</ws>
|
||||
<arch>x86_64</arch>
|
||||
</environment>
|
||||
<environment>
|
||||
<os>macosx</os>
|
||||
<ws>cocoa</ws>
|
||||
<arch>x86_64</arch>
|
||||
</environment>
|
||||
</environments>
|
||||
<resolver>p2</resolver>
|
||||
<ignoreTychoRepositories>true</ignoreTychoRepositories>
|
||||
<includePackedArtifacts>true</includePackedArtifacts>
|
||||
<pomDependencies>consider</pomDependencies>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.eclipse.tycho</groupId>
|
||||
<artifactId>tycho-compiler-plugin</artifactId>
|
||||
<version>${tycho-version}</version>
|
||||
<configuration>
|
||||
<encoding>UTF-8</encoding>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.eclipse.tycho</groupId>
|
||||
<artifactId>tycho-source-plugin</artifactId>
|
||||
<version>${tycho-version}</version>
|
||||
<configuration>
|
||||
<encoding>UTF-8</encoding>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>plugin-source</id>
|
||||
<goals>
|
||||
<goal>plugin-source</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.eclipse.tycho</groupId>
|
||||
<artifactId>tycho-packaging-plugin</artifactId>
|
||||
<version>${tycho-version}</version>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.tycho.extras</groupId>
|
||||
<artifactId>tycho-buildtimestamp-jgit</artifactId>
|
||||
<version>${tycho-version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.tycho.extras</groupId>
|
||||
<artifactId>tycho-sourceref-jgit</artifactId>
|
||||
<version>${tycho-extras-version}</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
<configuration>
|
||||
<strictBinIncludes>false</strictBinIncludes>
|
||||
<timestampProvider>jgit</timestampProvider>
|
||||
<jgit.ignore>pom.xml</jgit.ignore>
|
||||
<jgit.dirtyWorkingTree>ignore</jgit.dirtyWorkingTree>
|
||||
<sourceReferences>
|
||||
<generate>true</generate>
|
||||
</sourceReferences>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.eclipse.tycho</groupId>
|
||||
<artifactId>tycho-p2-repository-plugin</artifactId>
|
||||
<version>${tycho-version}</version>
|
||||
<configuration>
|
||||
<finalName>${project.artifactId}</finalName>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-resources-plugin</artifactId>
|
||||
<version>${maven-resources-version}</version>
|
||||
<configuration>
|
||||
<encoding>UTF-8</encoding>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-antrun-plugin</artifactId>
|
||||
<version>${maven-antrun-version}</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.gmaven</groupId>
|
||||
<artifactId>gmaven-plugin</artifactId>
|
||||
<version>${gmaven-version}</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>findbugs-maven-plugin</artifactId>
|
||||
<version>${findbugs-version}</version>
|
||||
<configuration>
|
||||
<encoding>UTF-8</encoding>
|
||||
<effort>Max</effort>
|
||||
<threshold>Low</threshold>
|
||||
<xmlOutput>true</xmlOutput>
|
||||
<failOnError>false</failOnError>
|
||||
<excludeFilterFile>${adminDir}/findbugs-exclude.xml</excludeFilterFile>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<goals>
|
||||
<goal>check</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.jacoco</groupId>
|
||||
<artifactId>jacoco-maven-plugin</artifactId>
|
||||
<version>${jacoco-version}</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-pmd-plugin</artifactId>
|
||||
<version>3.8</version>
|
||||
<configuration>
|
||||
<sourceEncoding>utf-8</sourceEncoding>
|
||||
<minimumTokens>100</minimumTokens>
|
||||
<targetJdk>1.7</targetJdk>
|
||||
<format>xml</format>
|
||||
<failOnViolation>false</failOnViolation>
|
||||
<excludes>
|
||||
<exclude>**/UbcCheck.java</exclude>
|
||||
</excludes>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<goals>
|
||||
<goal>cpd-check</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
|
||||
<!-- Pack200 and Signing -->
|
||||
<plugin>
|
||||
<groupId>org.eclipse.tycho.extras</groupId>
|
||||
<artifactId>tycho-pack200a-plugin</artifactId>
|
||||
<version>${tycho-version}</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>pack200-normalize</id>
|
||||
<phase>verify</phase>
|
||||
<goals>
|
||||
<goal>normalize</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.eclipse.cbi.maven.plugins</groupId>
|
||||
<artifactId>eclipse-jarsigner-plugin</artifactId>
|
||||
<version>${eclipse-jarsigner-version}</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>sign</id>
|
||||
<phase>verify</phase>
|
||||
<goals>
|
||||
<goal>sign</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.eclipse.tycho.extras</groupId>
|
||||
<artifactId>tycho-pack200b-plugin</artifactId>
|
||||
<version>${tycho-version}</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>pack200-pack</id>
|
||||
<phase>verify</phase>
|
||||
<goals>
|
||||
<goal>pack</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<!-- Keep the tycho-p2-plugin after the tycho-pack200b-plugin -->
|
||||
<!-- Tycho p2 metadata generation shall happen _after_ the JAR has been
|
||||
packed. -->
|
||||
<plugin>
|
||||
<groupId>org.eclipse.tycho</groupId>
|
||||
<artifactId>tycho-p2-plugin</artifactId>
|
||||
<version>${tycho-version}</version>
|
||||
<!-- Signing appears to mess with the baseline repository logic. Disable
|
||||
the baseline repository until we've figured out what is going on. -->
|
||||
<!-- <configuration> <baselineRepositories> <repository> <url>http://download.eclipse.org/tools/tm/terminal/builds/${terminal-stream}/nightly</url>
|
||||
</repository> </baselineRepositories> </configuration> -->
|
||||
<executions>
|
||||
<execution>
|
||||
<id>p2-metadata</id>
|
||||
<phase>package</phase>
|
||||
<goals>
|
||||
<goal>p2-metadata</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
<configuration>
|
||||
<defaultP2Metadata>false</defaultP2Metadata>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
</build>
|
||||
</project>
|
10
terminal/admin/settings.xml
Normal file
10
terminal/admin/settings.xml
Normal file
|
@ -0,0 +1,10 @@
|
|||
<settings>
|
||||
<mirrors>
|
||||
<mirror>
|
||||
<id>eclipse-maven-central</id>
|
||||
<name>Eclipse Maven Central</name>
|
||||
<url>https://repo.eclipse.org/content/repositories/maven_central/</url>
|
||||
<mirrorOf>central</mirrorOf>
|
||||
</mirror>
|
||||
</mirrors>
|
||||
</settings>
|
49
terminal/admin/target-defs/eclipse-3.8.2-juno.target
Normal file
49
terminal/admin/target-defs/eclipse-3.8.2-juno.target
Normal file
|
@ -0,0 +1,49 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<?pde version="3.8"?><target name="Terminals Eclipse 3.8.x (Juno)" sequenceNumber="47">
|
||||
<locations>
|
||||
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
|
||||
<unit id="gnu.io.rxtx.sdk.feature.group" version="2.1.7.4_v20071016-417C7DP1Bh_eEaQJBrHBHg"/>
|
||||
<repository location="http://archive.eclipse.org/tm/updates/rxtx"/>
|
||||
</location>
|
||||
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
|
||||
<unit id="org.eclipse.license.feature.group" version="1.0.1.v20140414-1359"/>
|
||||
<repository location="http://download.eclipse.org/cbi/updates/license"/>
|
||||
</location>
|
||||
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
|
||||
<unit id="org.eclipse.platform.ide" version="3.8.2.M20130131-0800"/>
|
||||
<unit id="org.eclipse.test.feature.group" version="3.5.100.v20120528-1717-7R7dBhBgLiCViQnG8ITHM73701A1"/>
|
||||
<repository location="http://download.eclipse.org/eclipse/updates/3.8"/>
|
||||
</location>
|
||||
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
|
||||
<unit id="org.eclipse.egit.feature.group" version="2.2.0.201212191850-r"/>
|
||||
<repository location="http://download.eclipse.org/releases/juno"/>
|
||||
</location>
|
||||
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
|
||||
<unit id="org.apache.log4j" version="1.2.15.v201012070815"/>
|
||||
<unit id="org.eclipse.swtbot.eclipse.feature.group" version="2.2.1.201402241301"/>
|
||||
<unit id="org.eclipse.swtbot.feature.group" version="2.2.1.201402241301"/>
|
||||
<unit id="org.eclipse.swtbot.forms.feature.group" version="2.2.1.201402241301"/>
|
||||
<unit id="org.eclipse.swtbot.ide.feature.group" version="2.2.1.201402241301"/>
|
||||
<unit id="org.hamcrest.core" version="1.3.0.v201303031735"/>
|
||||
<unit id="org.hamcrest.library" version="1.3.0.v201505072020"/>
|
||||
<repository location="http://download.eclipse.org/technology/swtbot/releases/2.5.0"/>
|
||||
</location>
|
||||
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
|
||||
<unit id="org.eclipse.rse.feature.group" version="3.4.1.201302122026"/>
|
||||
<repository location="http://download.eclipse.org/tm/updates/3.4"/>
|
||||
</location>
|
||||
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
|
||||
<unit id="org.eclipse.cdt.feature.group" version="8.3.0.201402142303"/>
|
||||
<repository location="http://download.eclipse.org/tools/cdt/releases/kepler"/>
|
||||
</location>
|
||||
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
|
||||
<unit id="org.apache.commons.net" version="3.2.0.v201305141515"/>
|
||||
<unit id="org.hamcrest" version="1.1.0.v20090501071000"/>
|
||||
<repository location="http://download.eclipse.org/tools/orbit/downloads/drops/R20150124073747/repository/"/>
|
||||
</location>
|
||||
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
|
||||
<unit id="org.eclipse.remote.feature.group" version="2.0.0.201507010000"/>
|
||||
<repository location="http://download.eclipse.org/tools/ptp/builds/remote/2.0.0"/>
|
||||
</location>
|
||||
</locations>
|
||||
</target>
|
49
terminal/admin/target-defs/eclipse-4.3.x-kepler.target
Normal file
49
terminal/admin/target-defs/eclipse-4.3.x-kepler.target
Normal file
|
@ -0,0 +1,49 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<?pde version="3.8"?><target name="Terminals Eclipse 4.3.x (Kepler)" sequenceNumber="39">
|
||||
<locations>
|
||||
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
|
||||
<unit id="gnu.io.rxtx.sdk.feature.group" version="2.1.7.4_v20071016-417C7DP1Bh_eEaQJBrHBHg"/>
|
||||
<repository location="http://archive.eclipse.org/tm/updates/rxtx"/>
|
||||
</location>
|
||||
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
|
||||
<unit id="org.eclipse.license.feature.group" version="1.0.1.v20140414-1359"/>
|
||||
<repository location="http://download.eclipse.org/cbi/updates/license"/>
|
||||
</location>
|
||||
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
|
||||
<unit id="org.eclipse.platform.ide" version="4.3.2.M20140221-1700"/>
|
||||
<unit id="org.eclipse.test.feature.group" version="3.6.0.v20140203-1326"/>
|
||||
<repository location="http://download.eclipse.org/eclipse/updates/4.3"/>
|
||||
</location>
|
||||
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
|
||||
<unit id="org.eclipse.egit.feature.group" version="3.2.0.201312181205-r"/>
|
||||
<repository location="http://download.eclipse.org/releases/kepler"/>
|
||||
</location>
|
||||
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
|
||||
<unit id="org.apache.log4j" version="1.2.15.v201012070815"/>
|
||||
<unit id="org.eclipse.swtbot.eclipse.feature.group" version="2.5.0.201609021837"/>
|
||||
<unit id="org.eclipse.swtbot.feature.group" version="2.5.0.201609021837"/>
|
||||
<unit id="org.eclipse.swtbot.forms.feature.group" version="2.5.0.201609021837"/>
|
||||
<unit id="org.eclipse.swtbot.ide.feature.group" version="2.5.0.201609021837"/>
|
||||
<unit id="org.hamcrest.core" version="1.3.0.v201303031735"/>
|
||||
<unit id="org.hamcrest.library" version="1.3.0.v201505072020"/>
|
||||
<repository location="http://download.eclipse.org/technology/swtbot/releases/2.5.0"/>
|
||||
</location>
|
||||
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
|
||||
<unit id="org.eclipse.rse.feature.group" version="3.5.0.201305311734"/>
|
||||
<repository location="http://download.eclipse.org/tm/updates/3.5"/>
|
||||
</location>
|
||||
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
|
||||
<unit id="org.eclipse.cdt.feature.group" version="8.3.0.201402142303"/>
|
||||
<repository location="http://download.eclipse.org/tools/cdt/releases/kepler"/>
|
||||
</location>
|
||||
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
|
||||
<unit id="org.apache.commons.net" version="3.2.0.v201305141515"/>
|
||||
<unit id="org.hamcrest" version="1.1.0.v20090501071000"/>
|
||||
<repository location="http://download.eclipse.org/tools/orbit/downloads/drops/R20160221192158/repository/"/>
|
||||
</location>
|
||||
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
|
||||
<unit id="org.eclipse.remote.feature.group" version="2.0.0.201507010000"/>
|
||||
<repository location="http://download.eclipse.org/tools/ptp/builds/remote/2.0.0"/>
|
||||
</location>
|
||||
</locations>
|
||||
</target>
|
49
terminal/admin/target-defs/eclipse-4.4.x-luna.target
Normal file
49
terminal/admin/target-defs/eclipse-4.4.x-luna.target
Normal file
|
@ -0,0 +1,49 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<?pde version="3.8"?><target name="Terminals Eclipse 4.4.x (Luna)" sequenceNumber="76">
|
||||
<locations>
|
||||
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
|
||||
<unit id="gnu.io.rxtx.sdk.feature.group" version="2.1.7.4_v20071016-417C7DP1Bh_eEaQJBrHBHg"/>
|
||||
<repository location="http://archive.eclipse.org/tm/updates/rxtx"/>
|
||||
</location>
|
||||
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
|
||||
<unit id="org.eclipse.license.feature.group" version="1.0.1.v20140414-1359"/>
|
||||
<repository location="http://download.eclipse.org/cbi/updates/license"/>
|
||||
</location>
|
||||
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
|
||||
<unit id="org.eclipse.platform.ide" version="4.4.2.M20150204-1700"/>
|
||||
<unit id="org.eclipse.test.feature.group" version="3.6.101.v20150202-1306"/>
|
||||
<repository location="http://download.eclipse.org/eclipse/updates/4.4"/>
|
||||
</location>
|
||||
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
|
||||
<unit id="org.eclipse.egit.feature.group" version="3.4.2.201412180340-r"/>
|
||||
<repository location="http://download.eclipse.org/releases/luna"/>
|
||||
</location>
|
||||
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
|
||||
<unit id="org.apache.log4j" version="1.2.15.v201012070815"/>
|
||||
<unit id="org.eclipse.swtbot.eclipse.feature.group" version="2.5.0.201609021837"/>
|
||||
<unit id="org.eclipse.swtbot.feature.group" version="2.5.0.201609021837"/>
|
||||
<unit id="org.eclipse.swtbot.forms.feature.group" version="2.5.0.201609021837"/>
|
||||
<unit id="org.eclipse.swtbot.ide.feature.group" version="2.5.0.201609021837"/>
|
||||
<unit id="org.hamcrest.core" version="1.3.0.v201303031735"/>
|
||||
<unit id="org.hamcrest.library" version="1.3.0.v201505072020"/>
|
||||
<repository location="http://download.eclipse.org/technology/swtbot/releases/2.5.0"/>
|
||||
</location>
|
||||
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
|
||||
<unit id="org.eclipse.rse.feature.group" version="3.5.0.201406091451"/>
|
||||
<repository location="http://download.eclipse.org/tm/updates/3.6"/>
|
||||
</location>
|
||||
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
|
||||
<unit id="org.eclipse.cdt.native.feature.group" version="8.6.0.201502131403"/>
|
||||
<repository location="http://download.eclipse.org/tools/cdt/releases/8.6"/>
|
||||
</location>
|
||||
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
|
||||
<unit id="org.apache.commons.net" version="3.2.0.v201305141515"/>
|
||||
<unit id="org.hamcrest" version="1.1.0.v20090501071000"/>
|
||||
<repository location="http://download.eclipse.org/tools/orbit/downloads/drops/R20160221192158/repository/"/>
|
||||
</location>
|
||||
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
|
||||
<unit id="org.eclipse.remote.feature.group" version="2.0.0.201507010000"/>
|
||||
<repository location="http://download.eclipse.org/tools/ptp/builds/remote/2.0.0"/>
|
||||
</location>
|
||||
</locations>
|
||||
</target>
|
49
terminal/admin/target-defs/eclipse-4.5.x-mars.target
Normal file
49
terminal/admin/target-defs/eclipse-4.5.x-mars.target
Normal file
|
@ -0,0 +1,49 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<?pde version="3.8"?><target name="Terminals Eclipse 4.5.x (Mars)" sequenceNumber="97">
|
||||
<locations>
|
||||
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
|
||||
<unit id="gnu.io.rxtx.sdk.feature.group" version="2.1.7.4_v20071016-417C7DP1Bh_eEaQJBrHBHg"/>
|
||||
<repository location="http://archive.eclipse.org/tm/updates/rxtx"/>
|
||||
</location>
|
||||
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
|
||||
<unit id="org.eclipse.license.feature.group" version="1.0.1.v20140414-1359"/>
|
||||
<repository location="http://download.eclipse.org/cbi/updates/license"/>
|
||||
</location>
|
||||
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
|
||||
<unit id="org.eclipse.platform.ide" version="4.5.2.M20160212-1500"/>
|
||||
<unit id="org.eclipse.test.feature.group" version="3.7.0.v20150428-2048"/>
|
||||
<repository location="http://download.eclipse.org/eclipse/updates/4.5"/>
|
||||
</location>
|
||||
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
|
||||
<unit id="org.eclipse.egit.feature.group" version="4.1.1.201511131810-r"/>
|
||||
<repository location="http://download.eclipse.org/releases/mars"/>
|
||||
</location>
|
||||
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
|
||||
<unit id="org.apache.log4j" version="1.2.15.v201012070815"/>
|
||||
<unit id="org.eclipse.swtbot.eclipse.feature.group" version="2.5.0.201609021837"/>
|
||||
<unit id="org.eclipse.swtbot.feature.group" version="2.5.0.201609021837"/>
|
||||
<unit id="org.eclipse.swtbot.forms.feature.group" version="2.5.0.201609021837"/>
|
||||
<unit id="org.eclipse.swtbot.ide.feature.group" version="2.5.0.201609021837"/>
|
||||
<unit id="org.hamcrest.core" version="1.3.0.v201303031735"/>
|
||||
<unit id="org.hamcrest.library" version="1.3.0.v201505072020"/>
|
||||
<repository location="http://download.eclipse.org/technology/swtbot/releases/2.5.0"/>
|
||||
</location>
|
||||
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
|
||||
<unit id="org.eclipse.rse.feature.group" version="3.7.0.201505221634"/>
|
||||
<repository location="http://download.eclipse.org/tm/updates/4.0"/>
|
||||
</location>
|
||||
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
|
||||
<unit id="org.eclipse.cdt.native.feature.group" version="8.8.1.201602051005"/>
|
||||
<repository location="http://download.eclipse.org/tools/cdt/releases/8.8.1"/>
|
||||
</location>
|
||||
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
|
||||
<unit id="org.apache.commons.net" version="3.2.0.v201305141515"/>
|
||||
<unit id="org.hamcrest" version="1.1.0.v20090501071000"/>
|
||||
<repository location="http://download.eclipse.org/tools/orbit/downloads/drops/R20160221192158/repository/"/>
|
||||
</location>
|
||||
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
|
||||
<unit id="org.eclipse.remote.feature.group" version="2.0.2.201604010301"/>
|
||||
<repository location="http://download.eclipse.org/tools/ptp/builds/remote/2.0.2"/>
|
||||
</location>
|
||||
</locations>
|
||||
</target>
|
49
terminal/admin/target-defs/eclipse-4.6.x-neon.target
Normal file
49
terminal/admin/target-defs/eclipse-4.6.x-neon.target
Normal file
|
@ -0,0 +1,49 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<?pde version="3.8"?><target name="Terminals Eclipse 4.6.x (Neon)" sequenceNumber="112">
|
||||
<locations>
|
||||
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
|
||||
<unit id="gnu.io.rxtx.sdk.feature.group" version="2.1.7.4_v20071016-417C7DP1Bh_eEaQJBrHBHg"/>
|
||||
<repository location="http://archive.eclipse.org/tm/updates/rxtx"/>
|
||||
</location>
|
||||
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
|
||||
<unit id="org.eclipse.license.feature.group" version="1.0.1.v20140414-1359"/>
|
||||
<repository location="http://download.eclipse.org/cbi/updates/license"/>
|
||||
</location>
|
||||
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
|
||||
<unit id="org.eclipse.platform.ide" version="4.6.3.M20170301-0400"/>
|
||||
<unit id="org.eclipse.test.feature.group" version="3.7.100.v20170213-1316"/>
|
||||
<repository location="http://download.eclipse.org/eclipse/updates/4.6/"/>
|
||||
</location>
|
||||
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
|
||||
<unit id="org.eclipse.egit.feature.group" version="4.6.1.201703071140-r"/>
|
||||
<repository location="http://download.eclipse.org/releases/neon"/>
|
||||
</location>
|
||||
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
|
||||
<unit id="org.apache.log4j" version="1.2.15.v201012070815"/>
|
||||
<unit id="org.eclipse.swtbot.eclipse.feature.group" version="2.5.0.201609021837"/>
|
||||
<unit id="org.eclipse.swtbot.feature.group" version="2.5.0.201609021837"/>
|
||||
<unit id="org.eclipse.swtbot.forms.feature.group" version="2.5.0.201609021837"/>
|
||||
<unit id="org.eclipse.swtbot.ide.feature.group" version="2.5.0.201609021837"/>
|
||||
<unit id="org.hamcrest.core" version="1.3.0.v201303031735"/>
|
||||
<unit id="org.hamcrest.library" version="1.3.0.v201505072020"/>
|
||||
<repository location="http://download.eclipse.org/technology/swtbot/releases/2.5.0"/>
|
||||
</location>
|
||||
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
|
||||
<unit id="org.eclipse.rse.feature.group" version="3.7.2.201610260947"/>
|
||||
<repository location="http://download.eclipse.org/tm/updates/4.2"/>
|
||||
</location>
|
||||
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
|
||||
<unit id="org.eclipse.cdt.native.feature.group" version="9.2.2.201704050430"/>
|
||||
<repository location="http://download.eclipse.org/tools/cdt/releases/9.2"/>
|
||||
</location>
|
||||
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
|
||||
<unit id="org.apache.commons.net" version="3.2.0.v201305141515"/>
|
||||
<unit id="org.hamcrest" version="1.1.0.v20090501071000"/>
|
||||
<repository location="http://download.eclipse.org/tools/orbit/R-builds/R20170307180635/repository"/>
|
||||
</location>
|
||||
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
|
||||
<unit id="org.eclipse.remote.feature.group" version="2.1.1.201612062149"/>
|
||||
<repository location="http://download.eclipse.org/tools/ptp/builds/remote/2.1.1"/>
|
||||
</location>
|
||||
</locations>
|
||||
</target>
|
49
terminal/admin/target-defs/eclipse-4.7.x-oxygen.target
Normal file
49
terminal/admin/target-defs/eclipse-4.7.x-oxygen.target
Normal file
|
@ -0,0 +1,49 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<?pde version="3.8"?><target name="Terminals Eclipse 4.7.x (Oxygen)" sequenceNumber="30">
|
||||
<locations>
|
||||
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
|
||||
<unit id="gnu.io.rxtx.sdk.feature.group" version="2.1.7.4_v20071016-417C7DP1Bh_eEaQJBrHBHg"/>
|
||||
<repository location="http://archive.eclipse.org/tm/updates/rxtx"/>
|
||||
</location>
|
||||
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
|
||||
<unit id="org.eclipse.license.feature.group" version="1.0.1.v20140414-1359"/>
|
||||
<repository location="http://download.eclipse.org/cbi/updates/license"/>
|
||||
</location>
|
||||
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
|
||||
<unit id="org.eclipse.platform.ide" version="4.7.0.I20170612-0950"/>
|
||||
<unit id="org.eclipse.test.feature.group" version="3.7.200.v20170511-1043"/>
|
||||
<repository location="http://download.eclipse.org/eclipse/updates/4.7"/>
|
||||
</location>
|
||||
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
|
||||
<unit id="org.eclipse.egit.feature.group" version="4.9.2.201712150930-r"/>
|
||||
<repository location="http://download.eclipse.org/staging/oxygen"/>
|
||||
</location>
|
||||
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
|
||||
<unit id="org.apache.log4j" version="1.2.15.v201012070815"/>
|
||||
<unit id="org.eclipse.swtbot.eclipse.feature.group" version="2.6.0.201706141832"/>
|
||||
<unit id="org.eclipse.swtbot.feature.group" version="2.6.0.201706141832"/>
|
||||
<unit id="org.eclipse.swtbot.forms.feature.group" version="2.6.0.201706141832"/>
|
||||
<unit id="org.eclipse.swtbot.ide.feature.group" version="2.6.0.201706141832"/>
|
||||
<unit id="org.hamcrest.core" version="1.3.0.v201303031735"/>
|
||||
<unit id="org.hamcrest.library" version="1.3.0.v201505072020"/>
|
||||
<repository location="http://download.eclipse.org/technology/swtbot/releases/latest"/>
|
||||
</location>
|
||||
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
|
||||
<unit id="org.eclipse.rse.feature.group" version="3.7.3.201704251225"/>
|
||||
<repository location="http://download.eclipse.org/tm/updates/4.3milestones"/>
|
||||
</location>
|
||||
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
|
||||
<unit id="org.eclipse.cdt.native.feature.group" version="9.3.2.201709131603"/>
|
||||
<repository location="http://download.eclipse.org/tools/cdt/builds/oxygen/milestones"/>
|
||||
</location>
|
||||
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
|
||||
<unit id="org.eclipse.remote.feature.group" version="3.0.0.201706052031"/>
|
||||
<repository location="http://download.eclipse.org/tools/ptp/builds/remote/oxygen/milestones"/>
|
||||
</location>
|
||||
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
|
||||
<unit id="org.apache.commons.net" version="3.2.0.v201305141515"/>
|
||||
<unit id="org.hamcrest" version="1.1.0.v20090501071000"/>
|
||||
<repository location="http://download.eclipse.org/tools/orbit/downloads/drops/R20170919201930/repository"/>
|
||||
</location>
|
||||
</locations>
|
||||
</target>
|
49
terminal/admin/target-defs/eclipse-4.8.x-photon.target
Normal file
49
terminal/admin/target-defs/eclipse-4.8.x-photon.target
Normal file
|
@ -0,0 +1,49 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<?pde version="3.8"?><target name="Terminals Eclipse 4.8.x (Photon)" sequenceNumber="1">
|
||||
<locations>
|
||||
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
|
||||
<unit id="gnu.io.rxtx.sdk.feature.group" version="2.1.7.4_v20071016-417C7DP1Bh_eEaQJBrHBHg"/>
|
||||
<repository location="http://archive.eclipse.org/tm/updates/rxtx"/>
|
||||
</location>
|
||||
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
|
||||
<unit id="org.eclipse.license.feature.group" version="1.0.1.v20140414-1359"/>
|
||||
<repository location="http://download.eclipse.org/cbi/updates/license"/>
|
||||
</location>
|
||||
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
|
||||
<unit id="org.eclipse.platform.ide" version="4.8.0.I20171206-2000"/>
|
||||
<unit id="org.eclipse.test.feature.group" version="3.7.300.v20171130-1004"/>
|
||||
<repository location="http://download.eclipse.org/eclipse/updates/4.8milestones"/>
|
||||
</location>
|
||||
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
|
||||
<unit id="org.eclipse.egit.feature.group" version="4.9.1.201712030800-r"/>
|
||||
<repository location="http://download.eclipse.org/releases/photon"/>
|
||||
</location>
|
||||
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
|
||||
<unit id="org.apache.log4j" version="1.2.15.v201012070815"/>
|
||||
<unit id="org.eclipse.swtbot.eclipse.feature.group" version="2.6.0.201706141832"/>
|
||||
<unit id="org.eclipse.swtbot.feature.group" version="2.6.0.201706141832"/>
|
||||
<unit id="org.eclipse.swtbot.forms.feature.group" version="2.6.0.201706141832"/>
|
||||
<unit id="org.eclipse.swtbot.ide.feature.group" version="2.6.0.201706141832"/>
|
||||
<unit id="org.hamcrest.core" version="1.3.0.v201303031735"/>
|
||||
<unit id="org.hamcrest.library" version="1.3.0.v201505072020"/>
|
||||
<repository location="http://download.eclipse.org/technology/swtbot/releases/latest"/>
|
||||
</location>
|
||||
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
|
||||
<unit id="org.eclipse.rse.feature.group" version="3.7.3.201704251225"/>
|
||||
<repository location="http://download.eclipse.org/tm/updates/4.3milestones"/>
|
||||
</location>
|
||||
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
|
||||
<unit id="org.eclipse.cdt.native.feature.group" version="9.3.2.201709131603"/>
|
||||
<repository location="http://download.eclipse.org/tools/cdt/builds/oxygen/milestones"/>
|
||||
</location>
|
||||
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
|
||||
<unit id="org.eclipse.remote.feature.group" version="3.0.0.201706052031"/>
|
||||
<repository location="http://download.eclipse.org/tools/ptp/builds/remote/oxygen/milestones"/>
|
||||
</location>
|
||||
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
|
||||
<unit id="org.apache.commons.net" version="3.2.0.v201305141515"/>
|
||||
<unit id="org.hamcrest" version="1.1.0.v20090501071000"/>
|
||||
<repository location="http://download.eclipse.org/tools/orbit/downloads/drops/S20180119201206/repository"/>
|
||||
</location>
|
||||
</locations>
|
||||
</target>
|
21
terminal/admin/target-defs/tm-baseline.target
Normal file
21
terminal/admin/target-defs/tm-baseline.target
Normal file
|
@ -0,0 +1,21 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<?pde version="3.8"?><target name="tm-baseline" sequenceNumber="2">
|
||||
<locations>
|
||||
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
|
||||
<repository location="http://download.eclipse.org/releases/neon"/>
|
||||
</location>
|
||||
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
|
||||
<unit id="org.eclipse.tm.terminal.connector.local" version="0.0.0"/>
|
||||
<unit id="org.eclipse.tm.terminal.connector.process" version="0.0.0"/>
|
||||
<unit id="org.eclipse.tm.terminal.connector.remote" version="0.0.0"/>
|
||||
<unit id="org.eclipse.tm.terminal.connector.serial" version="0.0.0"/>
|
||||
<unit id="org.eclipse.tm.terminal.connector.ssh" version="0.0.0"/>
|
||||
<unit id="org.eclipse.tm.terminal.connector.telnet" version="0.0.0"/>
|
||||
<unit id="org.eclipse.tm.terminal.control" version="0.0.0"/>
|
||||
<unit id="org.eclipse.tm.terminal.view.core" version="0.0.0"/>
|
||||
<unit id="org.eclipse.tm.terminal.view.ui" version="0.0.0"/>
|
||||
<unit id="org.eclipse.tm.terminal.view.ui.rse" version="0.0.0"/>
|
||||
<repository location="http://download.eclipse.org/tm/terminal/updates/4.2"/>
|
||||
</location>
|
||||
</locations>
|
||||
</target>
|
|
@ -0,0 +1,17 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<projectDescription>
|
||||
<name>org.eclipse.tm.terminal.connector.cdtserial.feature</name>
|
||||
<comment></comment>
|
||||
<projects>
|
||||
</projects>
|
||||
<buildSpec>
|
||||
<buildCommand>
|
||||
<name>org.eclipse.pde.FeatureBuilder</name>
|
||||
<arguments>
|
||||
</arguments>
|
||||
</buildCommand>
|
||||
</buildSpec>
|
||||
<natures>
|
||||
<nature>org.eclipse.pde.FeatureNature</nature>
|
||||
</natures>
|
||||
</projectDescription>
|
|
@ -0,0 +1,13 @@
|
|||
################################################################################
|
||||
# Copyright (c) 2006, 2015 Wind River Systems, Inc. and others.
|
||||
# All rights reserved. This program and the accompanying materials
|
||||
# are made available under the terms of the Eclipse Public License v1.0
|
||||
# which accompanies this distribution, and is available at
|
||||
# http://www.eclipse.org/legal/epl-v10.html
|
||||
#
|
||||
# Contributors:
|
||||
# Michael Scharf (Wind River) - initial API and implementation
|
||||
# Uwe Stieber (Wind River) - Bug 434937 - Releng: The Terminal Features have an incorrect license
|
||||
################################################################################
|
||||
bin.includes = feature.xml,\
|
||||
feature.properties
|
|
@ -0,0 +1,36 @@
|
|||
###############################################################################
|
||||
# Copyright (c) 2017 QNX Software Systems and others.
|
||||
# All rights reserved. This program and the accompanying materials
|
||||
# are made available under the terms of the Eclipse Public License v1.0
|
||||
# which accompanies this distribution, and is available at
|
||||
# http://www.eclipse.org/legal/epl-v10.html
|
||||
#
|
||||
# Contributors:
|
||||
# QNX Software Systems - Initial API and implementation
|
||||
###############################################################################
|
||||
# feature.properties
|
||||
# contains externalized strings for feature.xml
|
||||
# "%foo" in feature.xml corresponds to the key "foo" in this file
|
||||
# java.io.Properties file (ISO 8859-1 with "\" escapes)
|
||||
# This file should be translated.
|
||||
|
||||
# "featureName" property - name of the feature
|
||||
featureName=TM Terminal Serial Connector Extensions
|
||||
|
||||
# "providerName" property - name of the company that provides the feature
|
||||
providerName=Eclipse.org - Target Management
|
||||
|
||||
# "updateSiteName" property - label for the update site
|
||||
updateSiteName=TM Terminal 4.3 Updates
|
||||
|
||||
# "description" property - description of the feature
|
||||
description=A serial line connector for the Terminal
|
||||
|
||||
# "copyright" property - text of the "Feature Update Copyright"
|
||||
copyright=\
|
||||
Copyright (c) 2017 QNX Software Systems and others.\
|
||||
All rights reserved. This program and the accompanying materials\
|
||||
are made available under the terms of the Eclipse Public License v1.0\
|
||||
which accompanies this distribution, and is available at\
|
||||
http://www.eclipse.org/legal/epl-v10.html
|
||||
################ end of copyright property ####################################
|
|
@ -0,0 +1,44 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
Copyright (c) 2006 - 2015 Wind River Systems, Inc. and others.
|
||||
All rights reserved. This program and the accompanying materials
|
||||
are made available under the terms of the Eclipse Public License v1.0
|
||||
which accompanies this distribution, and is available at
|
||||
http://www.eclipse.org/legal/epl-v10.html
|
||||
|
||||
Contributors:
|
||||
Wind River - initial API and implementation
|
||||
Uwe Stieber (Wind River) - Bug 434937 - Releng: The Terminal Features have an incorrect license
|
||||
-->
|
||||
<feature
|
||||
id="org.eclipse.tm.terminal.connector.cdtserial.feature"
|
||||
label="%featureName"
|
||||
version="4.3.0.qualifier"
|
||||
provider-name="%providerName"
|
||||
license-feature="org.eclipse.license"
|
||||
license-feature-version="1.0.1.qualifier">
|
||||
|
||||
<description>
|
||||
%description
|
||||
</description>
|
||||
|
||||
<copyright>
|
||||
%copyright
|
||||
</copyright>
|
||||
|
||||
<license url="%licenseURL">
|
||||
%license
|
||||
</license>
|
||||
|
||||
<url>
|
||||
<update label="%updateSiteName" url="http://download.eclipse.org/tm/terminal/updates/4.3"/>
|
||||
</url>
|
||||
|
||||
<plugin
|
||||
id="org.eclipse.tm.terminal.connector.cdtserial"
|
||||
download-size="0"
|
||||
install-size="0"
|
||||
version="0.0.0"
|
||||
unpack="false"/>
|
||||
|
||||
</feature>
|
|
@ -0,0 +1,36 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
|
||||
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<groupId>org.eclipse.tm.terminal</groupId>
|
||||
<artifactId>org.eclipse.tm.terminal.maven-build</artifactId>
|
||||
<version>4.4.0-SNAPSHOT</version>
|
||||
<relativePath>../../admin/pom-build.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
<version>4.3.0-SNAPSHOT</version>
|
||||
<artifactId>org.eclipse.tm.terminal.connector.cdtserial.feature</artifactId>
|
||||
<packaging>eclipse-feature</packaging>
|
||||
|
||||
<properties>
|
||||
<jacoco.skip>true</jacoco.skip>
|
||||
</properties>
|
||||
|
||||
<build>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.eclipse.tycho</groupId>
|
||||
<artifactId>tycho-packaging-plugin</artifactId>
|
||||
<version>${tycho-version}</version>
|
||||
<configuration>
|
||||
<timestampProvider>default</timestampProvider>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
</build>
|
||||
</project>
|
|
@ -0,0 +1,17 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<projectDescription>
|
||||
<name>org.eclipse.tm.terminal.connector.cdtserial.sdk.feature</name>
|
||||
<comment></comment>
|
||||
<projects>
|
||||
</projects>
|
||||
<buildSpec>
|
||||
<buildCommand>
|
||||
<name>org.eclipse.pde.FeatureBuilder</name>
|
||||
<arguments>
|
||||
</arguments>
|
||||
</buildCommand>
|
||||
</buildSpec>
|
||||
<natures>
|
||||
<nature>org.eclipse.pde.FeatureNature</nature>
|
||||
</natures>
|
||||
</projectDescription>
|
|
@ -0,0 +1,13 @@
|
|||
################################################################################
|
||||
# Copyright (c) 2006, 2015 Wind River Systems, Inc. and others.
|
||||
# All rights reserved. This program and the accompanying materials
|
||||
# are made available under the terms of the Eclipse Public License v1.0
|
||||
# which accompanies this distribution, and is available at
|
||||
# http://www.eclipse.org/legal/epl-v10.html
|
||||
#
|
||||
# Contributors:
|
||||
# Michael Scharf (Wind River) - initial API and implementation
|
||||
# Uwe Stieber (Wind River) - Bug 434937 - Releng: The Terminal Features have an incorrect license
|
||||
################################################################################
|
||||
bin.includes = feature.xml,\
|
||||
feature.properties
|
|
@ -0,0 +1,36 @@
|
|||
###############################################################################
|
||||
# Copyright (c) 2017 QNX Software Systems and others.
|
||||
# All rights reserved. This program and the accompanying materials
|
||||
# are made available under the terms of the Eclipse Public License v1.0
|
||||
# which accompanies this distribution, and is available at
|
||||
# http://www.eclipse.org/legal/epl-v10.html
|
||||
#
|
||||
# Contributors:
|
||||
# QNX Software Systems - Initial API and implementation
|
||||
###############################################################################
|
||||
# feature.properties
|
||||
# contains externalized strings for feature.xml
|
||||
# "%foo" in feature.xml corresponds to the key "foo" in this file
|
||||
# java.io.Properties file (ISO 8859-1 with "\" escapes)
|
||||
# This file should be translated.
|
||||
|
||||
# "featureName" property - name of the feature
|
||||
featureName=TM Terminal Serial Connector Extensions, SDK
|
||||
|
||||
# "providerName" property - name of the company that provides the feature
|
||||
providerName=Eclipse.org - Target Management
|
||||
|
||||
# "updateSiteName" property - label for the update site
|
||||
updateSiteName=TM Terminal 4.3 Updates
|
||||
|
||||
# "description" property - description of the feature
|
||||
description=A serial line connector for the Terminal
|
||||
|
||||
# "copyright" property - text of the "Feature Update Copyright"
|
||||
copyright=\
|
||||
Copyright (c) 2017 QNX Software Systems and others.\
|
||||
All rights reserved. This program and the accompanying materials\
|
||||
are made available under the terms of the Eclipse Public License v1.0\
|
||||
which accompanies this distribution, and is available at\
|
||||
http://www.eclipse.org/legal/epl-v10.html
|
||||
################ end of copyright property ####################################
|
|
@ -0,0 +1,52 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
Copyright (c) 2006, 2014 Wind River Systems, Inc. and others.
|
||||
All rights reserved. This program and the accompanying materials
|
||||
are made available under the terms of the Eclipse Public License v1.0
|
||||
which accompanies this distribution, and is available at
|
||||
http://www.eclipse.org/legal/epl-v10.html
|
||||
|
||||
Contributors:
|
||||
Wind River - initial API and implementation
|
||||
Uwe Stieber (Wind River) - Bug 434937 - Releng: The Terminal Features have an incorrect license
|
||||
-->
|
||||
<feature
|
||||
id="org.eclipse.tm.terminal.connector.cdtserial.sdk.feature"
|
||||
label="%featureName"
|
||||
version="4.3.0.qualifier"
|
||||
provider-name="%providerName"
|
||||
license-feature="org.eclipse.license"
|
||||
license-feature-version="1.0.1.qualifier">
|
||||
|
||||
<description>
|
||||
%description
|
||||
</description>
|
||||
|
||||
<copyright>
|
||||
%copyright
|
||||
</copyright>
|
||||
|
||||
<license url="%licenseURL">
|
||||
%license
|
||||
</license>
|
||||
|
||||
<url>
|
||||
<update label="%updateSiteName" url="http://download.eclipse.org/tm/terminal/updates/4.3"/>
|
||||
</url>
|
||||
|
||||
<includes
|
||||
id="org.eclipse.tm.terminal.connector.cdtserial.feature"
|
||||
version="0.0.0"/>
|
||||
|
||||
<requires>
|
||||
<import feature="org.eclipse.tm.terminal.control.sdk.feature" version="4.0.0" match="compatible"/>
|
||||
</requires>
|
||||
|
||||
<plugin
|
||||
id="org.eclipse.tm.terminal.connector.cdtserial.source"
|
||||
download-size="0"
|
||||
install-size="0"
|
||||
version="0.0.0"
|
||||
unpack="false"/>
|
||||
|
||||
</feature>
|
|
@ -0,0 +1,36 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
|
||||
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<groupId>org.eclipse.tm.terminal</groupId>
|
||||
<artifactId>org.eclipse.tm.terminal.maven-build</artifactId>
|
||||
<version>4.4.0-SNAPSHOT</version>
|
||||
<relativePath>../../admin/pom-build.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
<version>4.3.0-SNAPSHOT</version>
|
||||
<artifactId>org.eclipse.tm.terminal.connector.cdtserial.sdk.feature</artifactId>
|
||||
<packaging>eclipse-feature</packaging>
|
||||
|
||||
<properties>
|
||||
<jacoco.skip>true</jacoco.skip>
|
||||
</properties>
|
||||
|
||||
<build>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.eclipse.tycho</groupId>
|
||||
<artifactId>tycho-packaging-plugin</artifactId>
|
||||
<version>${tycho-version}</version>
|
||||
<configuration>
|
||||
<timestampProvider>default</timestampProvider>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
</build>
|
||||
</project>
|
|
@ -0,0 +1,17 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<projectDescription>
|
||||
<name>org.eclipse.tm.terminal.connector.local.feature</name>
|
||||
<comment></comment>
|
||||
<projects>
|
||||
</projects>
|
||||
<buildSpec>
|
||||
<buildCommand>
|
||||
<name>org.eclipse.pde.FeatureBuilder</name>
|
||||
<arguments>
|
||||
</arguments>
|
||||
</buildCommand>
|
||||
</buildSpec>
|
||||
<natures>
|
||||
<nature>org.eclipse.pde.FeatureNature</nature>
|
||||
</natures>
|
||||
</projectDescription>
|
|
@ -0,0 +1,13 @@
|
|||
################################################################################
|
||||
# Copyright (c) 2006, 2015 Wind River Systems, Inc. and others.
|
||||
# All rights reserved. This program and the accompanying materials
|
||||
# are made available under the terms of the Eclipse Public License v1.0
|
||||
# which accompanies this distribution, and is available at
|
||||
# http://www.eclipse.org/legal/epl-v10.html
|
||||
#
|
||||
# Contributors:
|
||||
# Michael Scharf (Wind River) - initial API and implementation
|
||||
# Uwe Stieber (Wind River) - Bug 434937 - Releng: The Terminal Features have an incorrect license
|
||||
################################################################################
|
||||
bin.includes = feature.xml,\
|
||||
feature.properties
|
|
@ -0,0 +1,36 @@
|
|||
###############################################################################
|
||||
# Copyright (c) 2006, 2017 Wind River Systems, Inc. and others.
|
||||
# All rights reserved. This program and the accompanying materials
|
||||
# are made available under the terms of the Eclipse Public License v1.0
|
||||
# which accompanies this distribution, and is available at
|
||||
# http://www.eclipse.org/legal/epl-v10.html
|
||||
#
|
||||
# Contributors:
|
||||
# Martin Oberhuber (Wind River) - initial API and implementation
|
||||
###############################################################################
|
||||
# feature.properties
|
||||
# contains externalized strings for feature.xml
|
||||
# "%foo" in feature.xml corresponds to the key "foo" in this file
|
||||
# java.io.Properties file (ISO 8859-1 with "\" escapes)
|
||||
# This file should be translated.
|
||||
|
||||
# "featureName" property - name of the feature
|
||||
featureName=TM Terminal Local Connector Extensions
|
||||
|
||||
# "providerName" property - name of the company that provides the feature
|
||||
providerName=Eclipse.org - Target Management
|
||||
|
||||
# "updateSiteName" property - label for the update site
|
||||
updateSiteName=TM Terminal 4.3 Updates
|
||||
|
||||
# "description" property - description of the feature
|
||||
description=A connector implementation for the Local Terminal.
|
||||
|
||||
# "copyright" property - text of the "Feature Update Copyright"
|
||||
copyright=\
|
||||
Copyright (c) 2003, 2017 Wind River Systems, Inc. and others.\n\
|
||||
All rights reserved. This program and the accompanying materials\n\
|
||||
are made available under the terms of the Eclipse Public License v1.0\n\
|
||||
which accompanies this distribution, and is available at\n\
|
||||
http://www.eclipse.org/legal/epl-v10.html
|
||||
################ end of copyright property ####################################
|
|
@ -0,0 +1,60 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
Copyright (c) 2015, 2017 Wind River Systems, Inc. and others.
|
||||
All rights reserved. This program and the accompanying materials
|
||||
are made available under the terms of the Eclipse Public License v1.0
|
||||
which accompanies this distribution, and is available at
|
||||
http://www.eclipse.org/legal/epl-v10.html
|
||||
|
||||
Contributors:
|
||||
Wind River - initial API and implementation
|
||||
-->
|
||||
<feature
|
||||
id="org.eclipse.tm.terminal.connector.local.feature"
|
||||
label="%featureName"
|
||||
version="4.3.0.qualifier"
|
||||
provider-name="%providerName"
|
||||
license-feature="org.eclipse.license"
|
||||
license-feature-version="1.0.1.qualifier">
|
||||
|
||||
<description>
|
||||
%description
|
||||
</description>
|
||||
|
||||
<copyright>
|
||||
%copyright
|
||||
</copyright>
|
||||
|
||||
<license url="%licenseURL">
|
||||
%license
|
||||
</license>
|
||||
|
||||
<url>
|
||||
<update label="%updateSiteName" url="http://download.eclipse.org/tm/terminal/updates/4.3"/>
|
||||
</url>
|
||||
|
||||
<requires>
|
||||
<import plugin="org.eclipse.core.expressions" version="3.4.400" match="greaterOrEqual"/>
|
||||
<import plugin="org.eclipse.core.runtime" version="3.8.0" match="greaterOrEqual"/>
|
||||
<import plugin="org.eclipse.core.variables" version="3.2.600" match="greaterOrEqual"/>
|
||||
<import plugin="org.eclipse.tm.terminal.connector.process" version="4.0.0" match="greaterOrEqual"/>
|
||||
<import plugin="org.eclipse.tm.terminal.control" version="4.0.0" match="greaterOrEqual"/>
|
||||
<import plugin="org.eclipse.ui" version="3.8.0" match="greaterOrEqual"/>
|
||||
<import feature="org.eclipse.tm.terminal.control.feature" version="4.0.0" match="compatible"/>
|
||||
</requires>
|
||||
|
||||
<plugin
|
||||
id="org.eclipse.tm.terminal.connector.local"
|
||||
download-size="0"
|
||||
install-size="0"
|
||||
version="0.0.0"
|
||||
unpack="false"/>
|
||||
|
||||
<plugin
|
||||
id="org.eclipse.tm.terminal.connector.process"
|
||||
download-size="0"
|
||||
install-size="0"
|
||||
version="0.0.0"
|
||||
unpack="false"/>
|
||||
|
||||
</feature>
|
|
@ -0,0 +1,22 @@
|
|||
###############################################################################
|
||||
# Copyright (c) 2014, 2015 Wind River Systems, Inc. and others. All rights reserved.
|
||||
# This program and the accompanying materials are made available under the terms
|
||||
# of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||
# available at http://www.eclipse.org/legal/epl-v10.html
|
||||
#
|
||||
# Contributors:
|
||||
# Wind River Systems - initial API and implementation
|
||||
###############################################################################
|
||||
|
||||
# Make the org.eclipse.cdt.native feature dependency "optional" since it didn't
|
||||
# exist in CDT 8.3 and we can also work on top of CDT 8.3.
|
||||
|
||||
# The real dependencies are all properly managed via p2.inf in the
|
||||
# org.eclipse.tm.terminal.connector.process/META-INF/p2.inf file.
|
||||
# The only benefit of requesting the feature here is that it allow pulling in
|
||||
# additional fragments that we are not aware of in the bundle's p2.inf.
|
||||
|
||||
requires.0.namespace = org.eclipse.equinox.p2.iu
|
||||
requires.0.name = org.eclipse.cdt.native.feature.group
|
||||
requires.0.greedy = true
|
||||
requires.0.optional = true
|
|
@ -0,0 +1,36 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
|
||||
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<groupId>org.eclipse.tm.terminal</groupId>
|
||||
<artifactId>org.eclipse.tm.terminal.maven-build</artifactId>
|
||||
<version>4.4.0-SNAPSHOT</version>
|
||||
<relativePath>../../admin/pom-build.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
<version>4.3.0-SNAPSHOT</version>
|
||||
<artifactId>org.eclipse.tm.terminal.connector.local.feature</artifactId>
|
||||
<packaging>eclipse-feature</packaging>
|
||||
|
||||
<properties>
|
||||
<jacoco.skip>true</jacoco.skip>
|
||||
</properties>
|
||||
|
||||
<build>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.eclipse.tycho</groupId>
|
||||
<artifactId>tycho-packaging-plugin</artifactId>
|
||||
<version>${tycho-version}</version>
|
||||
<configuration>
|
||||
<timestampProvider>default</timestampProvider>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
</build>
|
||||
</project>
|
|
@ -0,0 +1,17 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<projectDescription>
|
||||
<name>org.eclipse.tm.terminal.connector.local.sdk.feature</name>
|
||||
<comment></comment>
|
||||
<projects>
|
||||
</projects>
|
||||
<buildSpec>
|
||||
<buildCommand>
|
||||
<name>org.eclipse.pde.FeatureBuilder</name>
|
||||
<arguments>
|
||||
</arguments>
|
||||
</buildCommand>
|
||||
</buildSpec>
|
||||
<natures>
|
||||
<nature>org.eclipse.pde.FeatureNature</nature>
|
||||
</natures>
|
||||
</projectDescription>
|
|
@ -0,0 +1,13 @@
|
|||
################################################################################
|
||||
# Copyright (c) 2006, 2015 Wind River Systems, Inc. and others.
|
||||
# All rights reserved. This program and the accompanying materials
|
||||
# are made available under the terms of the Eclipse Public License v1.0
|
||||
# which accompanies this distribution, and is available at
|
||||
# http://www.eclipse.org/legal/epl-v10.html
|
||||
#
|
||||
# Contributors:
|
||||
# Michael Scharf (Wind River) - initial API and implementation
|
||||
# Uwe Stieber (Wind River) - Bug 434937 - Releng: The Terminal Features have an incorrect license
|
||||
################################################################################
|
||||
bin.includes = feature.xml,\
|
||||
feature.properties
|
|
@ -0,0 +1,36 @@
|
|||
###############################################################################
|
||||
# Copyright (c) 2006, 2017 Wind River Systems, Inc. and others.
|
||||
# All rights reserved. This program and the accompanying materials
|
||||
# are made available under the terms of the Eclipse Public License v1.0
|
||||
# which accompanies this distribution, and is available at
|
||||
# http://www.eclipse.org/legal/epl-v10.html
|
||||
#
|
||||
# Contributors:
|
||||
# Martin Oberhuber (Wind River) - initial API and implementation
|
||||
###############################################################################
|
||||
# feature.properties
|
||||
# contains externalized strings for feature.xml
|
||||
# "%foo" in feature.xml corresponds to the key "foo" in this file
|
||||
# java.io.Properties file (ISO 8859-1 with "\" escapes)
|
||||
# This file should be translated.
|
||||
|
||||
# "featureName" property - name of the feature
|
||||
featureName=TM Terminal Local Connector Extensions, SDK
|
||||
|
||||
# "providerName" property - name of the company that provides the feature
|
||||
providerName=Eclipse.org - Target Management
|
||||
|
||||
# "updateSiteName" property - label for the update site
|
||||
updateSiteName=TM Terminal 4.3 Updates
|
||||
|
||||
# "description" property - description of the feature
|
||||
description=A connector implementation for the Local Terminal.
|
||||
|
||||
# "copyright" property - text of the "Feature Update Copyright"
|
||||
copyright=\
|
||||
Copyright (c) 2003, 2017 Wind River Systems, Inc. and others.\n\
|
||||
All rights reserved. This program and the accompanying materials\n\
|
||||
are made available under the terms of the Eclipse Public License v1.0\n\
|
||||
which accompanies this distribution, and is available at\n\
|
||||
http://www.eclipse.org/legal/epl-v10.html
|
||||
################ end of copyright property ####################################
|
|
@ -0,0 +1,58 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
Copyright (c) 2015, 2017 Wind River Systems, Inc. and others.
|
||||
All rights reserved. This program and the accompanying materials
|
||||
are made available under the terms of the Eclipse Public License v1.0
|
||||
which accompanies this distribution, and is available at
|
||||
http://www.eclipse.org/legal/epl-v10.html
|
||||
|
||||
Contributors:
|
||||
Wind River - initial API and implementation
|
||||
-->
|
||||
<feature
|
||||
id="org.eclipse.tm.terminal.connector.local.sdk.feature"
|
||||
label="%featureName"
|
||||
version="4.3.0.qualifier"
|
||||
provider-name="%providerName"
|
||||
license-feature="org.eclipse.license"
|
||||
license-feature-version="1.0.1.qualifier">
|
||||
|
||||
<description>
|
||||
%description
|
||||
</description>
|
||||
|
||||
<copyright>
|
||||
%copyright
|
||||
</copyright>
|
||||
|
||||
<license url="%licenseURL">
|
||||
%license
|
||||
</license>
|
||||
|
||||
<url>
|
||||
<update label="%updateSiteName" url="http://download.eclipse.org/tm/terminal/updates/4.3"/>
|
||||
</url>
|
||||
|
||||
<includes
|
||||
id="org.eclipse.tm.terminal.connector.local.feature"
|
||||
version="0.0.0"/>
|
||||
|
||||
<requires>
|
||||
<import feature="org.eclipse.tm.terminal.control.sdk.feature" version="4.0.0" match="compatible"/>
|
||||
</requires>
|
||||
|
||||
<plugin
|
||||
id="org.eclipse.tm.terminal.connector.local.source"
|
||||
download-size="0"
|
||||
install-size="0"
|
||||
version="0.0.0"
|
||||
unpack="false"/>
|
||||
|
||||
<plugin
|
||||
id="org.eclipse.tm.terminal.connector.process.source"
|
||||
download-size="0"
|
||||
install-size="0"
|
||||
version="0.0.0"
|
||||
unpack="false"/>
|
||||
|
||||
</feature>
|
|
@ -0,0 +1,36 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
|
||||
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<groupId>org.eclipse.tm.terminal</groupId>
|
||||
<artifactId>org.eclipse.tm.terminal.maven-build</artifactId>
|
||||
<version>4.4.0-SNAPSHOT</version>
|
||||
<relativePath>../../admin/pom-build.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
<version>4.3.0-SNAPSHOT</version>
|
||||
<artifactId>org.eclipse.tm.terminal.connector.local.sdk.feature</artifactId>
|
||||
<packaging>eclipse-feature</packaging>
|
||||
|
||||
<properties>
|
||||
<jacoco.skip>true</jacoco.skip>
|
||||
</properties>
|
||||
|
||||
<build>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.eclipse.tycho</groupId>
|
||||
<artifactId>tycho-packaging-plugin</artifactId>
|
||||
<version>${tycho-version}</version>
|
||||
<configuration>
|
||||
<timestampProvider>default</timestampProvider>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
</build>
|
||||
</project>
|
|
@ -0,0 +1,17 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<projectDescription>
|
||||
<name>org.eclipse.tm.terminal.connector.remote.feature</name>
|
||||
<comment></comment>
|
||||
<projects>
|
||||
</projects>
|
||||
<buildSpec>
|
||||
<buildCommand>
|
||||
<name>org.eclipse.pde.FeatureBuilder</name>
|
||||
<arguments>
|
||||
</arguments>
|
||||
</buildCommand>
|
||||
</buildSpec>
|
||||
<natures>
|
||||
<nature>org.eclipse.pde.FeatureNature</nature>
|
||||
</natures>
|
||||
</projectDescription>
|
|
@ -0,0 +1,9 @@
|
|||
###############################################################################
|
||||
# Copyright (c) 2015 IBM Corp. and others.
|
||||
# All rights reserved. This program and the accompanying materials
|
||||
# are made available under the terms of the Eclipse Public License v1.0
|
||||
# which accompanies this distribution, and is available at
|
||||
# http://www.eclipse.org/legal/epl-v10.html
|
||||
###############################################################################
|
||||
bin.includes = feature.xml,\
|
||||
feature.properties
|
|
@ -0,0 +1,33 @@
|
|||
###############################################################################
|
||||
# Copyright (c) 2015, 2017 IBM Corporation and others.
|
||||
# All rights reserved. This program and the accompanying materials
|
||||
# are made available under the terms of the Eclipse Public License v1.0
|
||||
# which accompanies this distribution, and is available at
|
||||
# http://www.eclipse.org/legal/epl-v10.html
|
||||
###############################################################################
|
||||
# feature.properties
|
||||
# contains externalized strings for feature.xml
|
||||
# "%foo" in feature.xml corresponds to the key "foo" in this file
|
||||
# java.io.Properties file (ISO 8859-1 with "\" escapes)
|
||||
# This file should be translated.
|
||||
|
||||
# "featureName" property - name of the feature
|
||||
featureName=TM Terminal via Remote API Connector Extensions
|
||||
|
||||
# "providerName" property - name of the company that provides the feature
|
||||
providerName=Eclipse.org - Target Management
|
||||
|
||||
# "updateSiteName" property - label for the update site
|
||||
updateSiteName=TM Terminal 4.3 Updates
|
||||
|
||||
# "description" property - description of the feature
|
||||
description=A Terminal Connector using the org.eclipse.remote API.
|
||||
|
||||
# "copyright" property - text of the "Feature Update Copyright"
|
||||
copyright=\
|
||||
Copyright (c) 2015, 2017 IBM Corporation and others.\n\
|
||||
All rights reserved. This program and the accompanying materials\n\
|
||||
are made available under the terms of the Eclipse Public License v1.0\n\
|
||||
which accompanies this distribution, and is available at\n\
|
||||
http://www.eclipse.org/legal/epl-v10.html
|
||||
################ end of copyright property ####################################
|
|
@ -0,0 +1,57 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
Copyright (c) 2015 IBM Corporation and others.
|
||||
All rights reserved. This program and the accompanying materials
|
||||
are made available under the terms of the Eclipse Public License v1.0
|
||||
which accompanies this distribution, and is available at
|
||||
http://www.eclipse.org/legal/epl-v10.html
|
||||
|
||||
Contributors:
|
||||
IBM Corporation - initial API and implementation
|
||||
-->
|
||||
<feature
|
||||
id="org.eclipse.tm.terminal.connector.remote.feature"
|
||||
label="%featureName"
|
||||
version="4.3.0.qualifier"
|
||||
provider-name="%providerName"
|
||||
license-feature="org.eclipse.license"
|
||||
license-feature-version="1.0.1.qualifier">
|
||||
|
||||
<description>
|
||||
%description
|
||||
</description>
|
||||
|
||||
<copyright>
|
||||
%copyright
|
||||
</copyright>
|
||||
|
||||
<license url="%licenseURL">
|
||||
%license
|
||||
</license>
|
||||
|
||||
<url>
|
||||
<update label="%updateSiteName" url="http://download.eclipse.org/tm/terminal/updates/4.3"/>
|
||||
</url>
|
||||
|
||||
<requires>
|
||||
<import plugin="org.eclipse.ui"/>
|
||||
<import plugin="org.eclipse.core.runtime"/>
|
||||
<import plugin="org.eclipse.tm.terminal.control"/>
|
||||
<import plugin="org.eclipse.remote.core"/>
|
||||
<import plugin="org.eclipse.remote.ui"/>
|
||||
<import plugin="org.eclipse.core.resources"/>
|
||||
<import plugin="org.eclipse.swt"/>
|
||||
<import plugin="org.eclipse.jface"/>
|
||||
<import plugin="org.eclipse.ui.ide"/>
|
||||
<import feature="org.eclipse.tm.terminal.control.feature" version="4.0.0" match="compatible"/>
|
||||
<import plugin="org.eclipse.core.expressions"/>
|
||||
</requires>
|
||||
|
||||
<plugin
|
||||
id="org.eclipse.tm.terminal.connector.remote"
|
||||
download-size="0"
|
||||
install-size="0"
|
||||
version="0.0.0"
|
||||
unpack="false"/>
|
||||
|
||||
</feature>
|
|
@ -0,0 +1,36 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
|
||||
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<groupId>org.eclipse.tm.terminal</groupId>
|
||||
<artifactId>org.eclipse.tm.terminal.maven-build</artifactId>
|
||||
<version>4.4.0-SNAPSHOT</version>
|
||||
<relativePath>../../admin/pom-build.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
<version>4.3.0-SNAPSHOT</version>
|
||||
<artifactId>org.eclipse.tm.terminal.connector.remote.feature</artifactId>
|
||||
<packaging>eclipse-feature</packaging>
|
||||
|
||||
<properties>
|
||||
<jacoco.skip>true</jacoco.skip>
|
||||
</properties>
|
||||
|
||||
<build>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.eclipse.tycho</groupId>
|
||||
<artifactId>tycho-packaging-plugin</artifactId>
|
||||
<version>${tycho-version}</version>
|
||||
<configuration>
|
||||
<timestampProvider>default</timestampProvider>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
</build>
|
||||
</project>
|
|
@ -0,0 +1,17 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<projectDescription>
|
||||
<name>org.eclipse.tm.terminal.connector.remote.sdk.feature</name>
|
||||
<comment></comment>
|
||||
<projects>
|
||||
</projects>
|
||||
<buildSpec>
|
||||
<buildCommand>
|
||||
<name>org.eclipse.pde.FeatureBuilder</name>
|
||||
<arguments>
|
||||
</arguments>
|
||||
</buildCommand>
|
||||
</buildSpec>
|
||||
<natures>
|
||||
<nature>org.eclipse.pde.FeatureNature</nature>
|
||||
</natures>
|
||||
</projectDescription>
|
|
@ -0,0 +1,12 @@
|
|||
###############################################################################
|
||||
# Copyright (c) 2015 IBM Corp. and others.
|
||||
# All rights reserved. This program and the accompanying materials
|
||||
# are made available under the terms of the Eclipse Public License v1.0
|
||||
# which accompanies this distribution, and is available at
|
||||
# http://www.eclipse.org/legal/epl-v10.html
|
||||
###############################################################################
|
||||
|
||||
bin.includes = feature.xml,\
|
||||
feature.properties
|
||||
|
||||
generate.plugin@org.eclipse.tm.terminal.remote.source=org.eclipse.tm.terminal.remote
|
|
@ -0,0 +1,33 @@
|
|||
###############################################################################
|
||||
# Copyright (c) 2015, 2017 IBM Corporation and others.
|
||||
# All rights reserved. This program and the accompanying materials
|
||||
# are made available under the terms of the Eclipse Public License v1.0
|
||||
# which accompanies this distribution, and is available at
|
||||
# http://www.eclipse.org/legal/epl-v10.html
|
||||
###############################################################################
|
||||
# feature.properties
|
||||
# contains externalized strings for feature.xml
|
||||
# "%foo" in feature.xml corresponds to the key "foo" in this file
|
||||
# java.io.Properties file (ISO 8859-1 with "\" escapes)
|
||||
# This file should be translated.
|
||||
|
||||
# "featureName" property - name of the feature
|
||||
featureName=TM Terminal via Remote API Connector Extensions, SDK
|
||||
|
||||
# "providerName" property - name of the company that provides the feature
|
||||
providerName=Eclipse.org - Target Management
|
||||
|
||||
# "updateSiteName" property - label for the update site
|
||||
updateSiteName=TM Terminal 4.3 Updates
|
||||
|
||||
# "description" property - description of the feature
|
||||
description=An remote connector implementation for the Terminal.
|
||||
|
||||
# "copyright" property - text of the "Feature Update Copyright"
|
||||
copyright=\
|
||||
Copyright (c) 2015, 2017 IBM Corporation and others.\n\
|
||||
All rights reserved. This program and the accompanying materials\n\
|
||||
are made available under the terms of the Eclipse Public License v1.0\n\
|
||||
which accompanies this distribution, and is available at\n\
|
||||
http://www.eclipse.org/legal/epl-v10.html
|
||||
################ end of copyright property ####################################
|
|
@ -0,0 +1,51 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
Copyright (c) 2015 IBM Corporation and others.
|
||||
All rights reserved. This program and the accompanying materials
|
||||
are made available under the terms of the Eclipse Public License v1.0
|
||||
which accompanies this distribution, and is available at
|
||||
http://www.eclipse.org/legal/epl-v10.html
|
||||
|
||||
Contributors:
|
||||
IBM Corporation - initial API and implementation
|
||||
-->
|
||||
<feature
|
||||
id="org.eclipse.tm.terminal.connector.remote.sdk.feature"
|
||||
label="%featureName"
|
||||
version="4.3.0.qualifier"
|
||||
provider-name="%providerName"
|
||||
license-feature="org.eclipse.license"
|
||||
license-feature-version="1.0.1.qualifier">
|
||||
|
||||
<description>
|
||||
%description
|
||||
</description>
|
||||
|
||||
<copyright>
|
||||
%copyright
|
||||
</copyright>
|
||||
|
||||
<license url="%licenseURL">
|
||||
%license
|
||||
</license>
|
||||
|
||||
<url>
|
||||
<update label="%updateSiteName" url="http://download.eclipse.org/tm/terminal/updates/4.3"/>
|
||||
</url>
|
||||
|
||||
<includes
|
||||
id="org.eclipse.tm.terminal.connector.remote.feature"
|
||||
version="0.0.0"/>
|
||||
|
||||
<requires>
|
||||
<import feature="org.eclipse.tm.terminal.control.sdk.feature" version="4.0.0" match="compatible"/>
|
||||
</requires>
|
||||
|
||||
<plugin
|
||||
id="org.eclipse.tm.terminal.connector.remote.source"
|
||||
download-size="0"
|
||||
install-size="0"
|
||||
version="0.0.0"
|
||||
unpack="false"/>
|
||||
|
||||
</feature>
|
|
@ -0,0 +1,36 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
|
||||
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<groupId>org.eclipse.tm.terminal</groupId>
|
||||
<artifactId>org.eclipse.tm.terminal.maven-build</artifactId>
|
||||
<version>4.4.0-SNAPSHOT</version>
|
||||
<relativePath>../../admin/pom-build.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
<version>4.3.0-SNAPSHOT</version>
|
||||
<artifactId>org.eclipse.tm.terminal.connector.remote.sdk.feature</artifactId>
|
||||
<packaging>eclipse-feature</packaging>
|
||||
|
||||
<properties>
|
||||
<jacoco.skip>true</jacoco.skip>
|
||||
</properties>
|
||||
|
||||
<build>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.eclipse.tycho</groupId>
|
||||
<artifactId>tycho-packaging-plugin</artifactId>
|
||||
<version>${tycho-version}</version>
|
||||
<configuration>
|
||||
<timestampProvider>default</timestampProvider>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
</build>
|
||||
</project>
|
|
@ -0,0 +1,17 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<projectDescription>
|
||||
<name>org.eclipse.tm.terminal.connector.serial.feature</name>
|
||||
<comment></comment>
|
||||
<projects>
|
||||
</projects>
|
||||
<buildSpec>
|
||||
<buildCommand>
|
||||
<name>org.eclipse.pde.FeatureBuilder</name>
|
||||
<arguments>
|
||||
</arguments>
|
||||
</buildCommand>
|
||||
</buildSpec>
|
||||
<natures>
|
||||
<nature>org.eclipse.pde.FeatureNature</nature>
|
||||
</natures>
|
||||
</projectDescription>
|
|
@ -0,0 +1,13 @@
|
|||
################################################################################
|
||||
# Copyright (c) 2006, 2015 Wind River Systems, Inc. and others.
|
||||
# All rights reserved. This program and the accompanying materials
|
||||
# are made available under the terms of the Eclipse Public License v1.0
|
||||
# which accompanies this distribution, and is available at
|
||||
# http://www.eclipse.org/legal/epl-v10.html
|
||||
#
|
||||
# Contributors:
|
||||
# Michael Scharf (Wind River) - initial API and implementation
|
||||
# Uwe Stieber (Wind River) - Bug 434937 - Releng: The Terminal Features have an incorrect license
|
||||
################################################################################
|
||||
bin.includes = feature.xml,\
|
||||
feature.properties
|
|
@ -0,0 +1,36 @@
|
|||
###############################################################################
|
||||
# Copyright (c) 2006, 2017 Wind River Systems, Inc. and others.
|
||||
# All rights reserved. This program and the accompanying materials
|
||||
# are made available under the terms of the Eclipse Public License v1.0
|
||||
# which accompanies this distribution, and is available at
|
||||
# http://www.eclipse.org/legal/epl-v10.html
|
||||
#
|
||||
# Contributors:
|
||||
# Martin Oberhuber (Wind River) - initial API and implementation
|
||||
###############################################################################
|
||||
# feature.properties
|
||||
# contains externalized strings for feature.xml
|
||||
# "%foo" in feature.xml corresponds to the key "foo" in this file
|
||||
# java.io.Properties file (ISO 8859-1 with "\" escapes)
|
||||
# This file should be translated.
|
||||
|
||||
# "featureName" property - name of the feature
|
||||
featureName=TM Terminal RXTX Serial Connector Extensions
|
||||
|
||||
# "providerName" property - name of the company that provides the feature
|
||||
providerName=Eclipse.org - Target Management
|
||||
|
||||
# "updateSiteName" property - label for the update site
|
||||
updateSiteName=TM Terminal 4.3 Updates
|
||||
|
||||
# "description" property - description of the feature
|
||||
description=A serial line connector for the Terminal using RXTX API
|
||||
|
||||
# "copyright" property - text of the "Feature Update Copyright"
|
||||
copyright=\
|
||||
Copyright (c) 2003, 2017 Wind River Systems, Inc. and others.\n\
|
||||
All rights reserved. This program and the accompanying materials\n\
|
||||
are made available under the terms of the Eclipse Public License v1.0\n\
|
||||
which accompanies this distribution, and is available at\n\
|
||||
http://www.eclipse.org/legal/epl-v10.html
|
||||
################ end of copyright property ####################################
|
|
@ -0,0 +1,53 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
Copyright (c) 2006 - 2015 Wind River Systems, Inc. and others.
|
||||
All rights reserved. This program and the accompanying materials
|
||||
are made available under the terms of the Eclipse Public License v1.0
|
||||
which accompanies this distribution, and is available at
|
||||
http://www.eclipse.org/legal/epl-v10.html
|
||||
|
||||
Contributors:
|
||||
Wind River - initial API and implementation
|
||||
Uwe Stieber (Wind River) - Bug 434937 - Releng: The Terminal Features have an incorrect license
|
||||
-->
|
||||
<feature
|
||||
id="org.eclipse.tm.terminal.connector.serial.feature"
|
||||
label="%featureName"
|
||||
version="4.3.0.qualifier"
|
||||
provider-name="%providerName"
|
||||
license-feature="org.eclipse.license"
|
||||
license-feature-version="1.0.1.qualifier">
|
||||
|
||||
<description>
|
||||
%description
|
||||
</description>
|
||||
|
||||
<copyright>
|
||||
%copyright
|
||||
</copyright>
|
||||
|
||||
<license url="%licenseURL">
|
||||
%license
|
||||
</license>
|
||||
|
||||
<url>
|
||||
<update label="%updateSiteName" url="http://download.eclipse.org/tm/terminal/updates/4.3"/>
|
||||
</url>
|
||||
|
||||
<requires>
|
||||
<import plugin="org.eclipse.tm.terminal.control" version="4.0.0" match="greaterOrEqual"/>
|
||||
<import feature="org.eclipse.tm.terminal.control.feature" version="4.0.0" match="compatible"/>
|
||||
<import plugin="org.eclipse.core.expressions" version="3.4.400" match="greaterOrEqual"/>
|
||||
<import plugin="org.eclipse.core.runtime" version="3.8.0" match="greaterOrEqual"/>
|
||||
<import plugin="org.eclipse.equinox.security" version="1.1.100" match="greaterOrEqual"/>
|
||||
<import plugin="org.eclipse.ui" version="3.8.0" match="greaterOrEqual"/>
|
||||
</requires>
|
||||
|
||||
<plugin
|
||||
id="org.eclipse.tm.terminal.connector.serial"
|
||||
download-size="0"
|
||||
install-size="0"
|
||||
version="0.0.0"
|
||||
unpack="false"/>
|
||||
|
||||
</feature>
|
|
@ -0,0 +1,36 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
|
||||
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<groupId>org.eclipse.tm.terminal</groupId>
|
||||
<artifactId>org.eclipse.tm.terminal.maven-build</artifactId>
|
||||
<version>4.4.0-SNAPSHOT</version>
|
||||
<relativePath>../../admin/pom-build.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
<version>4.3.0-SNAPSHOT</version>
|
||||
<artifactId>org.eclipse.tm.terminal.connector.serial.feature</artifactId>
|
||||
<packaging>eclipse-feature</packaging>
|
||||
|
||||
<properties>
|
||||
<jacoco.skip>true</jacoco.skip>
|
||||
</properties>
|
||||
|
||||
<build>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.eclipse.tycho</groupId>
|
||||
<artifactId>tycho-packaging-plugin</artifactId>
|
||||
<version>${tycho-version}</version>
|
||||
<configuration>
|
||||
<timestampProvider>default</timestampProvider>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
</build>
|
||||
</project>
|
|
@ -0,0 +1,17 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<projectDescription>
|
||||
<name>org.eclipse.tm.terminal.connector.serial.sdk.feature</name>
|
||||
<comment></comment>
|
||||
<projects>
|
||||
</projects>
|
||||
<buildSpec>
|
||||
<buildCommand>
|
||||
<name>org.eclipse.pde.FeatureBuilder</name>
|
||||
<arguments>
|
||||
</arguments>
|
||||
</buildCommand>
|
||||
</buildSpec>
|
||||
<natures>
|
||||
<nature>org.eclipse.pde.FeatureNature</nature>
|
||||
</natures>
|
||||
</projectDescription>
|
|
@ -0,0 +1,13 @@
|
|||
################################################################################
|
||||
# Copyright (c) 2006, 2015 Wind River Systems, Inc. and others.
|
||||
# All rights reserved. This program and the accompanying materials
|
||||
# are made available under the terms of the Eclipse Public License v1.0
|
||||
# which accompanies this distribution, and is available at
|
||||
# http://www.eclipse.org/legal/epl-v10.html
|
||||
#
|
||||
# Contributors:
|
||||
# Michael Scharf (Wind River) - initial API and implementation
|
||||
# Uwe Stieber (Wind River) - Bug 434937 - Releng: The Terminal Features have an incorrect license
|
||||
################################################################################
|
||||
bin.includes = feature.xml,\
|
||||
feature.properties
|
|
@ -0,0 +1,36 @@
|
|||
###############################################################################
|
||||
# Copyright (c) 2006, 2017 Wind River Systems, Inc. and others.
|
||||
# All rights reserved. This program and the accompanying materials
|
||||
# are made available under the terms of the Eclipse Public License v1.0
|
||||
# which accompanies this distribution, and is available at
|
||||
# http://www.eclipse.org/legal/epl-v10.html
|
||||
#
|
||||
# Contributors:
|
||||
# Martin Oberhuber (Wind River) - initial API and implementation
|
||||
###############################################################################
|
||||
# feature.properties
|
||||
# contains externalized strings for feature.xml
|
||||
# "%foo" in feature.xml corresponds to the key "foo" in this file
|
||||
# java.io.Properties file (ISO 8859-1 with "\" escapes)
|
||||
# This file should be translated.
|
||||
|
||||
# "featureName" property - name of the feature
|
||||
featureName=TM Terminal RXTX Serial Connector Extensions, SDK
|
||||
|
||||
# "providerName" property - name of the company that provides the feature
|
||||
providerName=Eclipse.org - Target Management
|
||||
|
||||
# "updateSiteName" property - label for the update site
|
||||
updateSiteName=TM Terminal 4.3 Updates
|
||||
|
||||
# "description" property - description of the feature
|
||||
description=A serial line connector for the Terminal using RXTX API
|
||||
|
||||
# "copyright" property - text of the "Feature Update Copyright"
|
||||
copyright=\
|
||||
Copyright (c) 2003, 2017 Wind River Systems, Inc. and others.\n\
|
||||
All rights reserved. This program and the accompanying materials\n\
|
||||
are made available under the terms of the Eclipse Public License v1.0\n\
|
||||
which accompanies this distribution, and is available at\n\
|
||||
http://www.eclipse.org/legal/epl-v10.html
|
||||
################ end of copyright property ####################################
|
|
@ -0,0 +1,52 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
Copyright (c) 2006, 2014 Wind River Systems, Inc. and others.
|
||||
All rights reserved. This program and the accompanying materials
|
||||
are made available under the terms of the Eclipse Public License v1.0
|
||||
which accompanies this distribution, and is available at
|
||||
http://www.eclipse.org/legal/epl-v10.html
|
||||
|
||||
Contributors:
|
||||
Wind River - initial API and implementation
|
||||
Uwe Stieber (Wind River) - Bug 434937 - Releng: The Terminal Features have an incorrect license
|
||||
-->
|
||||
<feature
|
||||
id="org.eclipse.tm.terminal.connector.serial.sdk.feature"
|
||||
label="%featureName"
|
||||
version="4.3.0.qualifier"
|
||||
provider-name="%providerName"
|
||||
license-feature="org.eclipse.license"
|
||||
license-feature-version="1.0.1.qualifier">
|
||||
|
||||
<description>
|
||||
%description
|
||||
</description>
|
||||
|
||||
<copyright>
|
||||
%copyright
|
||||
</copyright>
|
||||
|
||||
<license url="%licenseURL">
|
||||
%license
|
||||
</license>
|
||||
|
||||
<url>
|
||||
<update label="%updateSiteName" url="http://download.eclipse.org/tm/terminal/updates/4.3"/>
|
||||
</url>
|
||||
|
||||
<includes
|
||||
id="org.eclipse.tm.terminal.connector.serial.feature"
|
||||
version="0.0.0"/>
|
||||
|
||||
<requires>
|
||||
<import feature="org.eclipse.tm.terminal.control.sdk.feature" version="4.0.0" match="compatible"/>
|
||||
</requires>
|
||||
|
||||
<plugin
|
||||
id="org.eclipse.tm.terminal.connector.serial.source"
|
||||
download-size="0"
|
||||
install-size="0"
|
||||
version="0.0.0"
|
||||
unpack="false"/>
|
||||
|
||||
</feature>
|
|
@ -0,0 +1,36 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
|
||||
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<groupId>org.eclipse.tm.terminal</groupId>
|
||||
<artifactId>org.eclipse.tm.terminal.maven-build</artifactId>
|
||||
<version>4.4.0-SNAPSHOT</version>
|
||||
<relativePath>../../admin/pom-build.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
<version>4.3.0-SNAPSHOT</version>
|
||||
<artifactId>org.eclipse.tm.terminal.connector.serial.sdk.feature</artifactId>
|
||||
<packaging>eclipse-feature</packaging>
|
||||
|
||||
<properties>
|
||||
<jacoco.skip>true</jacoco.skip>
|
||||
</properties>
|
||||
|
||||
<build>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.eclipse.tycho</groupId>
|
||||
<artifactId>tycho-packaging-plugin</artifactId>
|
||||
<version>${tycho-version}</version>
|
||||
<configuration>
|
||||
<timestampProvider>default</timestampProvider>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
</build>
|
||||
</project>
|
|
@ -0,0 +1,17 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<projectDescription>
|
||||
<name>org.eclipse.tm.terminal.connector.ssh.feature</name>
|
||||
<comment></comment>
|
||||
<projects>
|
||||
</projects>
|
||||
<buildSpec>
|
||||
<buildCommand>
|
||||
<name>org.eclipse.pde.FeatureBuilder</name>
|
||||
<arguments>
|
||||
</arguments>
|
||||
</buildCommand>
|
||||
</buildSpec>
|
||||
<natures>
|
||||
<nature>org.eclipse.pde.FeatureNature</nature>
|
||||
</natures>
|
||||
</projectDescription>
|
|
@ -0,0 +1,13 @@
|
|||
###############################################################################
|
||||
# Copyright (c) 2006, 2015 Wind River Systems, Inc. and others.
|
||||
# All rights reserved. This program and the accompanying materials
|
||||
# are made available under the terms of the Eclipse Public License v1.0
|
||||
# which accompanies this distribution, and is available at
|
||||
# http://www.eclipse.org/legal/epl-v10.html
|
||||
#
|
||||
# Contributors:
|
||||
# Michael Scharf (Wind River) - initial API and implementation
|
||||
# Uwe Stieber (Wind River) - Bug 434937 - Releng: The Terminal Features have an incorrect license
|
||||
###############################################################################
|
||||
bin.includes = feature.xml,\
|
||||
feature.properties
|
|
@ -0,0 +1,36 @@
|
|||
###############################################################################
|
||||
# Copyright (c) 2006, 2017 Wind River Systems, Inc. and others.
|
||||
# All rights reserved. This program and the accompanying materials
|
||||
# are made available under the terms of the Eclipse Public License v1.0
|
||||
# which accompanies this distribution, and is available at
|
||||
# http://www.eclipse.org/legal/epl-v10.html
|
||||
#
|
||||
# Contributors:
|
||||
# Martin Oberhuber (Wind River) - initial API and implementation
|
||||
###############################################################################
|
||||
# feature.properties
|
||||
# contains externalized strings for feature.xml
|
||||
# "%foo" in feature.xml corresponds to the key "foo" in this file
|
||||
# java.io.Properties file (ISO 8859-1 with "\" escapes)
|
||||
# This file should be translated.
|
||||
|
||||
# "featureName" property - name of the feature
|
||||
featureName=TM Terminal SSH Connector Extensions
|
||||
|
||||
# "providerName" property - name of the company that provides the feature
|
||||
providerName=Eclipse.org - Target Management
|
||||
|
||||
# "updateSiteName" property - label for the update site
|
||||
updateSiteName=TM Terminal 4.3 Updates
|
||||
|
||||
# "description" property - description of the feature
|
||||
description=An SSH connector implementation for the Terminal.
|
||||
|
||||
# "copyright" property - text of the "Feature Update Copyright"
|
||||
copyright=\
|
||||
Copyright (c) 2000, 2017 Wind River Systems, Inc. and others.\n\
|
||||
All rights reserved. This program and the accompanying materials\n\
|
||||
are made available under the terms of the Eclipse Public License v1.0\n\
|
||||
which accompanies this distribution, and is available at\n\
|
||||
http://www.eclipse.org/legal/epl-v10.html
|
||||
################ end of copyright property ####################################
|
|
@ -0,0 +1,56 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
Copyright (c) 2005, 2014 IBM Corporation and others.
|
||||
All rights reserved. This program and the accompanying materials
|
||||
are made available under the terms of the Eclipse Public License v1.0
|
||||
which accompanies this distribution, and is available at
|
||||
http://www.eclipse.org/legal/epl-v10.html
|
||||
|
||||
Contributors:
|
||||
IBM Corporation - initial API and implementation
|
||||
Uwe Stieber (Wind River) - Bug 434937 - Releng: The Terminal Features have an incorrect license
|
||||
-->
|
||||
<feature
|
||||
id="org.eclipse.tm.terminal.connector.ssh.feature"
|
||||
label="%featureName"
|
||||
version="4.3.0.qualifier"
|
||||
provider-name="%providerName"
|
||||
plugin="org.eclipse.tm.terminal.ssh"
|
||||
license-feature="org.eclipse.license"
|
||||
license-feature-version="1.0.1.qualifier">
|
||||
|
||||
<description>
|
||||
%description
|
||||
</description>
|
||||
|
||||
<copyright>
|
||||
%copyright
|
||||
</copyright>
|
||||
|
||||
<license url="%licenseURL">
|
||||
%license
|
||||
</license>
|
||||
|
||||
<url>
|
||||
<update label="%updateSiteName" url="http://download.eclipse.org/tm/terminal/updates/4.3"/>
|
||||
</url>
|
||||
|
||||
<requires>
|
||||
<import plugin="org.eclipse.tm.terminal.control" version="4.0.0" match="greaterOrEqual"/>
|
||||
<import plugin="com.jcraft.jsch" version="0.1.31" match="compatible"/>
|
||||
<import plugin="org.eclipse.jsch.core" version="1.0.0" match="compatible"/>
|
||||
<import feature="org.eclipse.tm.terminal.control.feature" version="4.0.0" match="compatible"/>
|
||||
<import plugin="org.eclipse.core.expressions" version="3.4.400" match="greaterOrEqual"/>
|
||||
<import plugin="org.eclipse.core.runtime" version="3.8.0" match="greaterOrEqual"/>
|
||||
<import plugin="org.eclipse.equinox.security" version="1.1.100" match="greaterOrEqual"/>
|
||||
<import plugin="org.eclipse.ui" version="3.8.0" match="greaterOrEqual"/>
|
||||
</requires>
|
||||
|
||||
<plugin
|
||||
id="org.eclipse.tm.terminal.connector.ssh"
|
||||
download-size="0"
|
||||
install-size="0"
|
||||
version="0.0.0"
|
||||
unpack="false"/>
|
||||
|
||||
</feature>
|
|
@ -0,0 +1,36 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
|
||||
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<groupId>org.eclipse.tm.terminal</groupId>
|
||||
<artifactId>org.eclipse.tm.terminal.maven-build</artifactId>
|
||||
<version>4.4.0-SNAPSHOT</version>
|
||||
<relativePath>../../admin/pom-build.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
<version>4.3.0-SNAPSHOT</version>
|
||||
<artifactId>org.eclipse.tm.terminal.connector.ssh.feature</artifactId>
|
||||
<packaging>eclipse-feature</packaging>
|
||||
|
||||
<properties>
|
||||
<jacoco.skip>true</jacoco.skip>
|
||||
</properties>
|
||||
|
||||
<build>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.eclipse.tycho</groupId>
|
||||
<artifactId>tycho-packaging-plugin</artifactId>
|
||||
<version>${tycho-version}</version>
|
||||
<configuration>
|
||||
<timestampProvider>default</timestampProvider>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
</build>
|
||||
</project>
|
|
@ -0,0 +1,17 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<projectDescription>
|
||||
<name>org.eclipse.tm.terminal.connector.ssh.sdk.feature</name>
|
||||
<comment></comment>
|
||||
<projects>
|
||||
</projects>
|
||||
<buildSpec>
|
||||
<buildCommand>
|
||||
<name>org.eclipse.pde.FeatureBuilder</name>
|
||||
<arguments>
|
||||
</arguments>
|
||||
</buildCommand>
|
||||
</buildSpec>
|
||||
<natures>
|
||||
<nature>org.eclipse.pde.FeatureNature</nature>
|
||||
</natures>
|
||||
</projectDescription>
|
|
@ -0,0 +1,13 @@
|
|||
###############################################################################
|
||||
# Copyright (c) 2006, 2015 Wind River Systems, Inc. and others.
|
||||
# All rights reserved. This program and the accompanying materials
|
||||
# are made available under the terms of the Eclipse Public License v1.0
|
||||
# which accompanies this distribution, and is available at
|
||||
# http://www.eclipse.org/legal/epl-v10.html
|
||||
#
|
||||
# Contributors:
|
||||
# Michael Scharf (Wind River) - initial API and implementation
|
||||
# Uwe Stieber (Wind River) - Bug 434937 - Releng: The Terminal Features have an incorrect license
|
||||
###############################################################################
|
||||
bin.includes = feature.xml,\
|
||||
feature.properties
|
|
@ -0,0 +1,36 @@
|
|||
###############################################################################
|
||||
# Copyright (c) 2006, 2017 Wind River Systems, Inc. and others.
|
||||
# All rights reserved. This program and the accompanying materials
|
||||
# are made available under the terms of the Eclipse Public License v1.0
|
||||
# which accompanies this distribution, and is available at
|
||||
# http://www.eclipse.org/legal/epl-v10.html
|
||||
#
|
||||
# Contributors:
|
||||
# Martin Oberhuber (Wind River) - initial API and implementation
|
||||
###############################################################################
|
||||
# feature.properties
|
||||
# contains externalized strings for feature.xml
|
||||
# "%foo" in feature.xml corresponds to the key "foo" in this file
|
||||
# java.io.Properties file (ISO 8859-1 with "\" escapes)
|
||||
# This file should be translated.
|
||||
|
||||
# "featureName" property - name of the feature
|
||||
featureName=TM Terminal SSH Connector Extensions, SDK
|
||||
|
||||
# "providerName" property - name of the company that provides the feature
|
||||
providerName=Eclipse.org - Target Management
|
||||
|
||||
# "updateSiteName" property - label for the update site
|
||||
updateSiteName=TM Terminal 4.3 Updates
|
||||
|
||||
# "description" property - description of the feature
|
||||
description=An SSH connector implementation for the Terminal.
|
||||
|
||||
# "copyright" property - text of the "Feature Update Copyright"
|
||||
copyright=\
|
||||
Copyright (c) 2000, 2017 Wind River Systems, Inc. and others.\n\
|
||||
All rights reserved. This program and the accompanying materials\n\
|
||||
are made available under the terms of the Eclipse Public License v1.0\n\
|
||||
which accompanies this distribution, and is available at\n\
|
||||
http://www.eclipse.org/legal/epl-v10.html
|
||||
################ end of copyright property ####################################
|
|
@ -0,0 +1,52 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
Copyright (c) 2005 - 2015 IBM Corporation and others.
|
||||
All rights reserved. This program and the accompanying materials
|
||||
are made available under the terms of the Eclipse Public License v1.0
|
||||
which accompanies this distribution, and is available at
|
||||
http://www.eclipse.org/legal/epl-v10.html
|
||||
|
||||
Contributors:
|
||||
IBM Corporation - initial API and implementation
|
||||
Uwe Stieber (Wind River) - Bug 434937 - Releng: The Terminal Features have an incorrect license
|
||||
-->
|
||||
<feature
|
||||
id="org.eclipse.tm.terminal.connector.ssh.sdk.feature"
|
||||
label="%featureName"
|
||||
version="4.3.0.qualifier"
|
||||
provider-name="%providerName"
|
||||
license-feature="org.eclipse.license"
|
||||
license-feature-version="1.0.1.qualifier">
|
||||
|
||||
<description>
|
||||
%description
|
||||
</description>
|
||||
|
||||
<copyright>
|
||||
%copyright
|
||||
</copyright>
|
||||
|
||||
<license url="%licenseURL">
|
||||
%license
|
||||
</license>
|
||||
|
||||
<url>
|
||||
<update label="%updateSiteName" url="http://download.eclipse.org/tm/terminal/updates/4.3"/>
|
||||
</url>
|
||||
|
||||
<includes
|
||||
id="org.eclipse.tm.terminal.connector.ssh.feature"
|
||||
version="0.0.0"/>
|
||||
|
||||
<requires>
|
||||
<import feature="org.eclipse.tm.terminal.control.sdk.feature" version="4.0.0" match="compatible"/>
|
||||
</requires>
|
||||
|
||||
<plugin
|
||||
id="org.eclipse.tm.terminal.connector.ssh.source"
|
||||
download-size="0"
|
||||
install-size="0"
|
||||
version="0.0.0"
|
||||
unpack="false"/>
|
||||
|
||||
</feature>
|
|
@ -0,0 +1,36 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
|
||||
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<groupId>org.eclipse.tm.terminal</groupId>
|
||||
<artifactId>org.eclipse.tm.terminal.maven-build</artifactId>
|
||||
<version>4.4.0-SNAPSHOT</version>
|
||||
<relativePath>../../admin/pom-build.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
<version>4.3.0-SNAPSHOT</version>
|
||||
<artifactId>org.eclipse.tm.terminal.connector.ssh.sdk.feature</artifactId>
|
||||
<packaging>eclipse-feature</packaging>
|
||||
|
||||
<properties>
|
||||
<jacoco.skip>true</jacoco.skip>
|
||||
</properties>
|
||||
|
||||
<build>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.eclipse.tycho</groupId>
|
||||
<artifactId>tycho-packaging-plugin</artifactId>
|
||||
<version>${tycho-version}</version>
|
||||
<configuration>
|
||||
<timestampProvider>default</timestampProvider>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
</build>
|
||||
</project>
|
|
@ -0,0 +1,17 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<projectDescription>
|
||||
<name>org.eclipse.tm.terminal.connector.telnet.feature</name>
|
||||
<comment></comment>
|
||||
<projects>
|
||||
</projects>
|
||||
<buildSpec>
|
||||
<buildCommand>
|
||||
<name>org.eclipse.pde.FeatureBuilder</name>
|
||||
<arguments>
|
||||
</arguments>
|
||||
</buildCommand>
|
||||
</buildSpec>
|
||||
<natures>
|
||||
<nature>org.eclipse.pde.FeatureNature</nature>
|
||||
</natures>
|
||||
</projectDescription>
|
|
@ -0,0 +1,13 @@
|
|||
################################################################################
|
||||
# Copyright (c) 2006, 2015 Wind River Systems, Inc. and others.
|
||||
# All rights reserved. This program and the accompanying materials
|
||||
# are made available under the terms of the Eclipse Public License v1.0
|
||||
# which accompanies this distribution, and is available at
|
||||
# http://www.eclipse.org/legal/epl-v10.html
|
||||
#
|
||||
# Contributors:
|
||||
# Michael Scharf (Wind River) - initial API and implementation
|
||||
# Uwe Stieber (Wind River) - Bug 434937 - Releng: The Terminal Features have an incorrect license
|
||||
################################################################################
|
||||
bin.includes = feature.xml,\
|
||||
feature.properties
|
|
@ -0,0 +1,36 @@
|
|||
###############################################################################
|
||||
# Copyright (c) 2006, 2017 Wind River Systems, Inc. and others.
|
||||
# All rights reserved. This program and the accompanying materials
|
||||
# are made available under the terms of the Eclipse Public License v1.0
|
||||
# which accompanies this distribution, and is available at
|
||||
# http://www.eclipse.org/legal/epl-v10.html
|
||||
#
|
||||
# Contributors:
|
||||
# Martin Oberhuber (Wind River) - initial API and implementation
|
||||
###############################################################################
|
||||
# feature.properties
|
||||
# contains externalized strings for feature.xml
|
||||
# "%foo" in feature.xml corresponds to the key "foo" in this file
|
||||
# java.io.Properties file (ISO 8859-1 with "\" escapes)
|
||||
# This file should be translated.
|
||||
|
||||
# "featureName" property - name of the feature
|
||||
featureName=TM Terminal Telnet Connector Extensions
|
||||
|
||||
# "providerName" property - name of the company that provides the feature
|
||||
providerName=Eclipse.org - Target Management
|
||||
|
||||
# "updateSiteName" property - label for the update site
|
||||
updateSiteName=TM Terminal 4.3 Updates
|
||||
|
||||
# "description" property - description of the feature
|
||||
description=A Telnet connector implementation for the Terminal.
|
||||
|
||||
# "copyright" property - text of the "Feature Update Copyright"
|
||||
copyright=\
|
||||
Copyright (c) 2003, 2017 Wind River Systems, Inc. and others.\n\
|
||||
All rights reserved. This program and the accompanying materials\n\
|
||||
are made available under the terms of the Eclipse Public License v1.0\n\
|
||||
which accompanies this distribution, and is available at\n\
|
||||
http://www.eclipse.org/legal/epl-v10.html
|
||||
################ end of copyright property ####################################
|
|
@ -0,0 +1,53 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
Copyright (c) 2007 - 2015 Wind River Systems, Inc. and others.
|
||||
All rights reserved. This program and the accompanying materials
|
||||
are made available under the terms of the Eclipse Public License v1.0
|
||||
which accompanies this distribution, and is available at
|
||||
http://www.eclipse.org/legal/epl-v10.html
|
||||
|
||||
Contributors:
|
||||
Wind River - initial API and implementation
|
||||
Uwe Stieber (Wind River) - Bug 434937 - Releng: The Terminal Features have an incorrect license
|
||||
-->
|
||||
<feature
|
||||
id="org.eclipse.tm.terminal.connector.telnet.feature"
|
||||
label="%featureName"
|
||||
version="4.3.0.qualifier"
|
||||
provider-name="%providerName"
|
||||
license-feature="org.eclipse.license"
|
||||
license-feature-version="1.0.1.qualifier">
|
||||
|
||||
<description>
|
||||
%description
|
||||
</description>
|
||||
|
||||
<copyright>
|
||||
%copyright
|
||||
</copyright>
|
||||
|
||||
<license url="%licenseURL">
|
||||
%license
|
||||
</license>
|
||||
|
||||
<url>
|
||||
<update label="%updateSiteName" url="http://download.eclipse.org/tm/terminal/updates/4.3"/>
|
||||
</url>
|
||||
|
||||
<requires>
|
||||
<import plugin="org.eclipse.tm.terminal.control" version="4.0.0" match="greaterOrEqual"/>
|
||||
<import feature="org.eclipse.tm.terminal.control.feature" version="4.0.0" match="compatible"/>
|
||||
<import plugin="org.eclipse.core.expressions" version="3.4.400" match="greaterOrEqual"/>
|
||||
<import plugin="org.eclipse.core.runtime" version="3.8.0" match="greaterOrEqual"/>
|
||||
<import plugin="org.eclipse.equinox.security" version="1.1.100" match="greaterOrEqual"/>
|
||||
<import plugin="org.eclipse.ui" version="3.8.0" match="greaterOrEqual"/>
|
||||
</requires>
|
||||
|
||||
<plugin
|
||||
id="org.eclipse.tm.terminal.connector.telnet"
|
||||
download-size="0"
|
||||
install-size="0"
|
||||
version="0.0.0"
|
||||
unpack="false"/>
|
||||
|
||||
</feature>
|
|
@ -0,0 +1,36 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
|
||||
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<groupId>org.eclipse.tm.terminal</groupId>
|
||||
<artifactId>org.eclipse.tm.terminal.maven-build</artifactId>
|
||||
<version>4.4.0-SNAPSHOT</version>
|
||||
<relativePath>../../admin/pom-build.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
<version>4.3.0-SNAPSHOT</version>
|
||||
<artifactId>org.eclipse.tm.terminal.connector.telnet.feature</artifactId>
|
||||
<packaging>eclipse-feature</packaging>
|
||||
|
||||
<properties>
|
||||
<jacoco.skip>true</jacoco.skip>
|
||||
</properties>
|
||||
|
||||
<build>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.eclipse.tycho</groupId>
|
||||
<artifactId>tycho-packaging-plugin</artifactId>
|
||||
<version>${tycho-version}</version>
|
||||
<configuration>
|
||||
<timestampProvider>default</timestampProvider>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
</build>
|
||||
</project>
|
|
@ -0,0 +1,17 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<projectDescription>
|
||||
<name>org.eclipse.tm.terminal.connector.telnet.sdk.feature</name>
|
||||
<comment></comment>
|
||||
<projects>
|
||||
</projects>
|
||||
<buildSpec>
|
||||
<buildCommand>
|
||||
<name>org.eclipse.pde.FeatureBuilder</name>
|
||||
<arguments>
|
||||
</arguments>
|
||||
</buildCommand>
|
||||
</buildSpec>
|
||||
<natures>
|
||||
<nature>org.eclipse.pde.FeatureNature</nature>
|
||||
</natures>
|
||||
</projectDescription>
|
|
@ -0,0 +1,13 @@
|
|||
################################################################################
|
||||
# Copyright (c) 2006, 2015 Wind River Systems, Inc. and others.
|
||||
# All rights reserved. This program and the accompanying materials
|
||||
# are made available under the terms of the Eclipse Public License v1.0
|
||||
# which accompanies this distribution, and is available at
|
||||
# http://www.eclipse.org/legal/epl-v10.html
|
||||
#
|
||||
# Contributors:
|
||||
# Michael Scharf (Wind River) - initial API and implementation
|
||||
# Uwe Stieber (Wind River) - Bug 434937 - Releng: The Terminal Features have an incorrect license
|
||||
################################################################################
|
||||
bin.includes = feature.xml,\
|
||||
feature.properties
|
|
@ -0,0 +1,36 @@
|
|||
###############################################################################
|
||||
# Copyright (c) 2006, 2017 Wind River Systems, Inc. and others.
|
||||
# All rights reserved. This program and the accompanying materials
|
||||
# are made available under the terms of the Eclipse Public License v1.0
|
||||
# which accompanies this distribution, and is available at
|
||||
# http://www.eclipse.org/legal/epl-v10.html
|
||||
#
|
||||
# Contributors:
|
||||
# Martin Oberhuber (Wind River) - initial API and implementation
|
||||
###############################################################################
|
||||
# feature.properties
|
||||
# contains externalized strings for feature.xml
|
||||
# "%foo" in feature.xml corresponds to the key "foo" in this file
|
||||
# java.io.Properties file (ISO 8859-1 with "\" escapes)
|
||||
# This file should be translated.
|
||||
|
||||
# "featureName" property - name of the feature
|
||||
featureName=TM Terminal Telnet Connector Extensions, SDK
|
||||
|
||||
# "providerName" property - name of the company that provides the feature
|
||||
providerName=Eclipse.org - Target Management
|
||||
|
||||
# "updateSiteName" property - label for the update site
|
||||
updateSiteName=TM Terminal 4.3 Updates
|
||||
|
||||
# "description" property - description of the feature
|
||||
description=A Telnet connector implementation for the Terminal.
|
||||
|
||||
# "copyright" property - text of the "Feature Update Copyright"
|
||||
copyright=\
|
||||
Copyright (c) 2003, 2017 Wind River Systems, Inc. and others.\n\
|
||||
All rights reserved. This program and the accompanying materials\n\
|
||||
are made available under the terms of the Eclipse Public License v1.0\n\
|
||||
which accompanies this distribution, and is available at\n\
|
||||
http://www.eclipse.org/legal/epl-v10.html
|
||||
################ end of copyright property ####################################
|
|
@ -0,0 +1,52 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
Copyright (c) 2007 - 2015 Wind River Systems, Inc. and others.
|
||||
All rights reserved. This program and the accompanying materials
|
||||
are made available under the terms of the Eclipse Public License v1.0
|
||||
which accompanies this distribution, and is available at
|
||||
http://www.eclipse.org/legal/epl-v10.html
|
||||
|
||||
Contributors:
|
||||
Wind River - initial API and implementation
|
||||
Uwe Stieber (Wind River) - Bug 434937 - Releng: The Terminal Features have an incorrect license
|
||||
-->
|
||||
<feature
|
||||
id="org.eclipse.tm.terminal.connector.telnet.sdk.feature"
|
||||
label="%featureName"
|
||||
version="4.3.0.qualifier"
|
||||
provider-name="%providerName"
|
||||
license-feature="org.eclipse.license"
|
||||
license-feature-version="1.0.1.qualifier">
|
||||
|
||||
<description>
|
||||
%description
|
||||
</description>
|
||||
|
||||
<copyright>
|
||||
%copyright
|
||||
</copyright>
|
||||
|
||||
<license url="%licenseURL">
|
||||
%license
|
||||
</license>
|
||||
|
||||
<url>
|
||||
<update label="%updateSiteName" url="http://download.eclipse.org/tm/terminal/updates/4.3"/>
|
||||
</url>
|
||||
|
||||
<includes
|
||||
id="org.eclipse.tm.terminal.connector.telnet.feature"
|
||||
version="0.0.0"/>
|
||||
|
||||
<requires>
|
||||
<import feature="org.eclipse.tm.terminal.control.sdk.feature" version="4.0.0" match="compatible"/>
|
||||
</requires>
|
||||
|
||||
<plugin
|
||||
id="org.eclipse.tm.terminal.connector.telnet.source"
|
||||
download-size="0"
|
||||
install-size="0"
|
||||
version="0.0.0"
|
||||
unpack="false"/>
|
||||
|
||||
</feature>
|
|
@ -0,0 +1,36 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
|
||||
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<groupId>org.eclipse.tm.terminal</groupId>
|
||||
<artifactId>org.eclipse.tm.terminal.maven-build</artifactId>
|
||||
<version>4.4.0-SNAPSHOT</version>
|
||||
<relativePath>../../admin/pom-build.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
<version>4.3.0-SNAPSHOT</version>
|
||||
<artifactId>org.eclipse.tm.terminal.connector.telnet.sdk.feature</artifactId>
|
||||
<packaging>eclipse-feature</packaging>
|
||||
|
||||
<properties>
|
||||
<jacoco.skip>true</jacoco.skip>
|
||||
</properties>
|
||||
|
||||
<build>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.eclipse.tycho</groupId>
|
||||
<artifactId>tycho-packaging-plugin</artifactId>
|
||||
<version>${tycho-version}</version>
|
||||
<configuration>
|
||||
<timestampProvider>default</timestampProvider>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
</build>
|
||||
</project>
|
|
@ -0,0 +1,17 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<projectDescription>
|
||||
<name>org.eclipse.tm.terminal.control.feature</name>
|
||||
<comment></comment>
|
||||
<projects>
|
||||
</projects>
|
||||
<buildSpec>
|
||||
<buildCommand>
|
||||
<name>org.eclipse.pde.FeatureBuilder</name>
|
||||
<arguments>
|
||||
</arguments>
|
||||
</buildCommand>
|
||||
</buildSpec>
|
||||
<natures>
|
||||
<nature>org.eclipse.pde.FeatureNature</nature>
|
||||
</natures>
|
||||
</projectDescription>
|
|
@ -0,0 +1,13 @@
|
|||
################################################################################
|
||||
# Copyright (c) 2006, 2015 Wind River Systems, Inc. and others.
|
||||
# All rights reserved. This program and the accompanying materials
|
||||
# are made available under the terms of the Eclipse Public License v1.0
|
||||
# which accompanies this distribution, and is available at
|
||||
# http://www.eclipse.org/legal/epl-v10.html
|
||||
#
|
||||
# Contributors:
|
||||
# Michael Scharf (Wind River) - initial API and implementation
|
||||
# Uwe Stieber (Wind River) - Bug 434937 - Releng: The Terminal Features have an incorrect license
|
||||
################################################################################
|
||||
bin.includes = feature.xml,\
|
||||
feature.properties
|
|
@ -0,0 +1,37 @@
|
|||
###############################################################################
|
||||
# Copyright (c) 2006, 2018 Wind River Systems, Inc. and others.
|
||||
# All rights reserved. This program and the accompanying materials
|
||||
# are made available under the terms of the Eclipse Public License v1.0
|
||||
# which accompanies this distribution, and is available at
|
||||
# http://www.eclipse.org/legal/epl-v10.html
|
||||
#
|
||||
# Contributors:
|
||||
# Martin Oberhuber (Wind River) - initial API and implementation
|
||||
###############################################################################
|
||||
# feature.properties
|
||||
# contains externalized strings for feature.xml
|
||||
# "%foo" in feature.xml corresponds to the key "foo" in this file
|
||||
# java.io.Properties file (ISO 8859-1 with "\" escapes)
|
||||
# This file should be translated.
|
||||
|
||||
# "featureName" property - name of the feature
|
||||
featureName=TM Terminal Control
|
||||
|
||||
# "providerName" property - name of the company that provides the feature
|
||||
providerName=Eclipse.org - Target Management
|
||||
|
||||
# "updateSiteName" property - label for the update site
|
||||
updateSiteName=TM Terminal 4.4 Updates
|
||||
|
||||
# "description" property - description of the feature
|
||||
description=An ANSI (vt102) compatible Terminal widget \
|
||||
with RCP-only dependencies.
|
||||
|
||||
# "copyright" property - text of the "Feature Update Copyright"
|
||||
copyright=\
|
||||
Copyright (c) 2003, 2018 Wind River Systems, Inc. and others.\n\
|
||||
All rights reserved. This program and the accompanying materials\n\
|
||||
are made available under the terms of the Eclipse Public License v1.0\n\
|
||||
which accompanies this distribution, and is available at\n\
|
||||
http://www.eclipse.org/legal/epl-v10.html
|
||||
################ end of copyright property ####################################
|
|
@ -0,0 +1,51 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
Copyright (c) 2006, 2018 Wind River Systems, Inc. and others.
|
||||
All rights reserved. This program and the accompanying materials
|
||||
are made available under the terms of the Eclipse Public License v1.0
|
||||
which accompanies this distribution, and is available at
|
||||
http://www.eclipse.org/legal/epl-v10.html
|
||||
|
||||
Contributors:
|
||||
Wind River - initial API and implementation
|
||||
Uwe Stieber (Wind River) - [282996] [terminal][api] Add "hidden" attribute to terminal connector extension point
|
||||
Uwe Stieber (Wind River) - Bug 434937 - Releng: The Terminal Features have an incorrect license
|
||||
-->
|
||||
<feature
|
||||
id="org.eclipse.tm.terminal.control.feature"
|
||||
label="%featureName"
|
||||
version="4.4.0.qualifier"
|
||||
provider-name="%providerName"
|
||||
plugin="org.eclipse.tm.terminal.control"
|
||||
license-feature="org.eclipse.license"
|
||||
license-feature-version="1.0.1.qualifier">
|
||||
|
||||
<description>
|
||||
%description
|
||||
</description>
|
||||
|
||||
<copyright>
|
||||
%copyright
|
||||
</copyright>
|
||||
|
||||
<license url="%licenseURL">
|
||||
%license
|
||||
</license>
|
||||
|
||||
<url>
|
||||
<update label="%updateSiteName" url="http://download.eclipse.org/tm/terminal/updates/4.4"/>
|
||||
</url>
|
||||
|
||||
<requires>
|
||||
<import plugin="org.eclipse.core.runtime"/>
|
||||
<import plugin="org.eclipse.ui"/>
|
||||
</requires>
|
||||
|
||||
<plugin
|
||||
id="org.eclipse.tm.terminal.control"
|
||||
download-size="0"
|
||||
install-size="0"
|
||||
version="0.0.0"
|
||||
unpack="false"/>
|
||||
|
||||
</feature>
|
|
@ -0,0 +1,36 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
|
||||
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<groupId>org.eclipse.tm.terminal</groupId>
|
||||
<artifactId>org.eclipse.tm.terminal.maven-build</artifactId>
|
||||
<version>4.4.0-SNAPSHOT</version>
|
||||
<relativePath>../../admin/pom-build.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
<version>4.4.0-SNAPSHOT</version>
|
||||
<artifactId>org.eclipse.tm.terminal.control.feature</artifactId>
|
||||
<packaging>eclipse-feature</packaging>
|
||||
|
||||
<properties>
|
||||
<jacoco.skip>true</jacoco.skip>
|
||||
</properties>
|
||||
|
||||
<build>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.eclipse.tycho</groupId>
|
||||
<artifactId>tycho-packaging-plugin</artifactId>
|
||||
<version>${tycho-version}</version>
|
||||
<configuration>
|
||||
<timestampProvider>default</timestampProvider>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
</build>
|
||||
</project>
|
|
@ -0,0 +1,17 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<projectDescription>
|
||||
<name>org.eclipse.tm.terminal.control.sdk.feature</name>
|
||||
<comment></comment>
|
||||
<projects>
|
||||
</projects>
|
||||
<buildSpec>
|
||||
<buildCommand>
|
||||
<name>org.eclipse.pde.FeatureBuilder</name>
|
||||
<arguments>
|
||||
</arguments>
|
||||
</buildCommand>
|
||||
</buildSpec>
|
||||
<natures>
|
||||
<nature>org.eclipse.pde.FeatureNature</nature>
|
||||
</natures>
|
||||
</projectDescription>
|
|
@ -0,0 +1,13 @@
|
|||
################################################################################
|
||||
# Copyright (c) 2006, 2015 Wind River Systems, Inc. and others.
|
||||
# All rights reserved. This program and the accompanying materials
|
||||
# are made available under the terms of the Eclipse Public License v1.0
|
||||
# which accompanies this distribution, and is available at
|
||||
# http://www.eclipse.org/legal/epl-v10.html
|
||||
#
|
||||
# Contributors:
|
||||
# Michael Scharf (Wind River) - initial API and implementation
|
||||
# Uwe Stieber (Wind River) - Bug 434937 - Releng: The Terminal Features have an incorrect license
|
||||
################################################################################
|
||||
bin.includes = feature.xml,\
|
||||
feature.properties
|
|
@ -0,0 +1,37 @@
|
|||
###############################################################################
|
||||
# Copyright (c) 2006, 2018 Wind River Systems, Inc. and others.
|
||||
# All rights reserved. This program and the accompanying materials
|
||||
# are made available under the terms of the Eclipse Public License v1.0
|
||||
# which accompanies this distribution, and is available at
|
||||
# http://www.eclipse.org/legal/epl-v10.html
|
||||
#
|
||||
# Contributors:
|
||||
# Martin Oberhuber (Wind River) - initial API and implementation
|
||||
###############################################################################
|
||||
# feature.properties
|
||||
# contains externalized strings for feature.xml
|
||||
# "%foo" in feature.xml corresponds to the key "foo" in this file
|
||||
# java.io.Properties file (ISO 8859-1 with "\" escapes)
|
||||
# This file should be translated.
|
||||
|
||||
# "featureName" property - name of the feature
|
||||
featureName=TM Terminal Control, SDK
|
||||
|
||||
# "providerName" property - name of the company that provides the feature
|
||||
providerName=Eclipse.org - Target Management
|
||||
|
||||
# "updateSiteName" property - label for the update site
|
||||
updateSiteName=TM Terminal 4.4 Updates
|
||||
|
||||
# "description" property - description of the feature
|
||||
description=An ANSI (vt102) compatible Terminal widget \
|
||||
with RCP-only dependencies.
|
||||
|
||||
# "copyright" property - text of the "Feature Update Copyright"
|
||||
copyright=\
|
||||
Copyright (c) 2003, 2018 Wind River Systems, Inc. and others.\n\
|
||||
All rights reserved. This program and the accompanying materials\n\
|
||||
are made available under the terms of the Eclipse Public License v1.0\n\
|
||||
which accompanies this distribution, and is available at\n\
|
||||
http://www.eclipse.org/legal/epl-v10.html
|
||||
################ end of copyright property ####################################
|
|
@ -0,0 +1,49 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
Copyright (c) 2006, 2018 Wind River Systems, Inc. and others.
|
||||
All rights reserved. This program and the accompanying materials
|
||||
are made available under the terms of the Eclipse Public License v1.0
|
||||
which accompanies this distribution, and is available at
|
||||
http://www.eclipse.org/legal/epl-v10.html
|
||||
|
||||
Contributors:
|
||||
Wind River - initial API and implementation
|
||||
Uwe Stieber (Wind River) - [282996] [terminal][api] Add "hidden" attribute to terminal connector extension point
|
||||
Uwe Stieber (Wind River) - Bug 434937 - Releng: The Terminal Features have an incorrect license
|
||||
-->
|
||||
<feature
|
||||
id="org.eclipse.tm.terminal.control.sdk.feature"
|
||||
label="%featureName"
|
||||
version="4.4.0.qualifier"
|
||||
provider-name="%providerName"
|
||||
license-feature="org.eclipse.license"
|
||||
license-feature-version="1.0.1.qualifier">
|
||||
|
||||
<description>
|
||||
%description
|
||||
</description>
|
||||
|
||||
<copyright>
|
||||
%copyright
|
||||
</copyright>
|
||||
|
||||
<license url="%licenseURL">
|
||||
%license
|
||||
</license>
|
||||
|
||||
<url>
|
||||
<update label="%updateSiteName" url="http://download.eclipse.org/tm/terminal/updates/4.4"/>
|
||||
</url>
|
||||
|
||||
<includes
|
||||
id="org.eclipse.tm.terminal.control.feature"
|
||||
version="0.0.0"/>
|
||||
|
||||
<plugin
|
||||
id="org.eclipse.tm.terminal.control.source"
|
||||
download-size="0"
|
||||
install-size="0"
|
||||
version="0.0.0"
|
||||
unpack="false"/>
|
||||
|
||||
</feature>
|
|
@ -0,0 +1,36 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
|
||||
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<groupId>org.eclipse.tm.terminal</groupId>
|
||||
<artifactId>org.eclipse.tm.terminal.maven-build</artifactId>
|
||||
<version>4.4.0-SNAPSHOT</version>
|
||||
<relativePath>../../admin/pom-build.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
<version>4.4.0-SNAPSHOT</version>
|
||||
<artifactId>org.eclipse.tm.terminal.control.sdk.feature</artifactId>
|
||||
<packaging>eclipse-feature</packaging>
|
||||
|
||||
<properties>
|
||||
<jacoco.skip>true</jacoco.skip>
|
||||
</properties>
|
||||
|
||||
<build>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.eclipse.tycho</groupId>
|
||||
<artifactId>tycho-packaging-plugin</artifactId>
|
||||
<version>${tycho-version}</version>
|
||||
<configuration>
|
||||
<timestampProvider>default</timestampProvider>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
</build>
|
||||
</project>
|
28
terminal/features/org.eclipse.tm.terminal.feature/.project
Normal file
28
terminal/features/org.eclipse.tm.terminal.feature/.project
Normal file
|
@ -0,0 +1,28 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<projectDescription>
|
||||
<name>org.eclipse.tm.terminal.feature</name>
|
||||
<comment></comment>
|
||||
<projects>
|
||||
</projects>
|
||||
<buildSpec>
|
||||
<buildCommand>
|
||||
<name>org.eclipse.pde.FeatureBuilder</name>
|
||||
<arguments>
|
||||
</arguments>
|
||||
</buildCommand>
|
||||
</buildSpec>
|
||||
<natures>
|
||||
<nature>org.eclipse.pde.FeatureNature</nature>
|
||||
</natures>
|
||||
<filteredResources>
|
||||
<filter>
|
||||
<id>1311579318584</id>
|
||||
<name></name>
|
||||
<type>10</type>
|
||||
<matcher>
|
||||
<id>org.eclipse.ui.ide.multiFilter</id>
|
||||
<arguments>1.0-name-matches-false-false-target</arguments>
|
||||
</matcher>
|
||||
</filter>
|
||||
</filteredResources>
|
||||
</projectDescription>
|
|
@ -0,0 +1,13 @@
|
|||
###############################################################################
|
||||
# Copyright (c) 2012, 2015 Wind River Systems, Inc. and others. All rights reserved.
|
||||
# This program and the accompanying materials are made available under the terms
|
||||
# of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||
# available at http://www.eclipse.org/legal/epl-v10.html
|
||||
#
|
||||
# Contributors:
|
||||
# Wind River Systems - initial API and implementation
|
||||
###############################################################################
|
||||
bin.includes = feature.xml,\
|
||||
feature.properties,\
|
||||
p2.inf
|
||||
src.includes = feature.properties
|
|
@ -0,0 +1,38 @@
|
|||
##################################################################################
|
||||
# Copyright (c) 2015, 2018 Wind River Systems, Inc. and others. All rights reserved.
|
||||
# This program and the accompanying materials are made available under the terms
|
||||
# of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||
# available at http://www.eclipse.org/legal/epl-v10.html
|
||||
#
|
||||
# Contributors:
|
||||
# Wind River Systems - initial API and implementation
|
||||
##################################################################################
|
||||
# feature.properties
|
||||
# contains externalized strings for feature.xml
|
||||
# "%foo" in feature.xml corresponds to the key "foo" in this file
|
||||
# java.io.Properties file (ISO 8859-1 with "\" escapes)
|
||||
# This file should be translated.
|
||||
|
||||
# "featureName" property - name of the feature
|
||||
featureName=TM Terminal
|
||||
|
||||
# "providerName" property - name of the company that provides the feature
|
||||
providerName=Eclipse.org - Target Management
|
||||
|
||||
# "updateSiteName" property - label for the update site
|
||||
updateSiteName=TM Terminal 4.4 Updates
|
||||
|
||||
# "description" property - description of the feature
|
||||
description=An integrated Eclipse View for the local command prompt (console) or \
|
||||
remote hosts (SSH, Telnet, Serial). Works on Windows, Linux, Mac and Solaris. \
|
||||
Requires Eclipse 3.8.2 or newer and a Java 6 or newer JRE.
|
||||
|
||||
# "copyright" property - text of the "Feature Update Copyright"
|
||||
copyright=\
|
||||
Copyright (c) 2011 - 2018 Wind River Systems, Inc. and others.\n\
|
||||
All rights reserved. This program and the accompanying materials\n\
|
||||
are made available under the terms of the Eclipse Public License v1.0\n\
|
||||
which accompanies this distribution, and is available at\n\
|
||||
http://www.eclipse.org/legal/epl-v10.html
|
||||
|
||||
################ end of copyright property ####################################
|
|
@ -0,0 +1,35 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<feature
|
||||
id="org.eclipse.tm.terminal.feature"
|
||||
label="%featureName"
|
||||
version="4.4.0.qualifier"
|
||||
provider-name="%providerName"
|
||||
plugin="org.eclipse.tm.terminal.view.core"
|
||||
license-feature="org.eclipse.license"
|
||||
license-feature-version="1.0.1.qualifier">
|
||||
|
||||
<description>
|
||||
%description
|
||||
</description>
|
||||
|
||||
<copyright>
|
||||
%copyright
|
||||
</copyright>
|
||||
|
||||
<license url="%licenseURL">
|
||||
%license
|
||||
</license>
|
||||
|
||||
<url>
|
||||
<update label="%updateSiteName" url="http://download.eclipse.org/tm/terminal/updates/4.4"/>
|
||||
</url>
|
||||
|
||||
<requires>
|
||||
<import feature="org.eclipse.tm.terminal.connector.local.feature" version="4.3.0" match="greaterOrEqual"/>
|
||||
<import feature="org.eclipse.tm.terminal.connector.ssh.feature" version="4.3.0" match="greaterOrEqual"/>
|
||||
<import feature="org.eclipse.tm.terminal.connector.telnet.feature" version="4.3.0" match="greaterOrEqual"/>
|
||||
<import feature="org.eclipse.tm.terminal.control.feature" version="4.4.0" match="greaterOrEqual"/>
|
||||
<import feature="org.eclipse.tm.terminal.view.feature" version="4.3.0" match="greaterOrEqual"/>
|
||||
</requires>
|
||||
|
||||
</feature>
|
5
terminal/features/org.eclipse.tm.terminal.feature/p2.inf
Normal file
5
terminal/features/org.eclipse.tm.terminal.feature/p2.inf
Normal file
|
@ -0,0 +1,5 @@
|
|||
update.id=org.eclipse.tcf.te.terminals.feature.feature.group
|
||||
update.range=(0,$version$)
|
||||
provides.99.namespace=org.eclipse.equinox.p2.iu
|
||||
provides.99.name=org.eclipse.tcf.te.terminals.feature.feature.group
|
||||
provides.99.version=$version$
|
36
terminal/features/org.eclipse.tm.terminal.feature/pom.xml
Normal file
36
terminal/features/org.eclipse.tm.terminal.feature/pom.xml
Normal file
|
@ -0,0 +1,36 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
|
||||
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<groupId>org.eclipse.tm.terminal</groupId>
|
||||
<artifactId>org.eclipse.tm.terminal.maven-build</artifactId>
|
||||
<version>4.4.0-SNAPSHOT</version>
|
||||
<relativePath>../../admin/pom-build.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
<version>4.4.0-SNAPSHOT</version>
|
||||
<artifactId>org.eclipse.tm.terminal.feature</artifactId>
|
||||
<packaging>eclipse-feature</packaging>
|
||||
|
||||
<properties>
|
||||
<jacoco.skip>true</jacoco.skip>
|
||||
</properties>
|
||||
|
||||
<build>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.eclipse.tycho</groupId>
|
||||
<artifactId>tycho-packaging-plugin</artifactId>
|
||||
<version>${tycho-version}</version>
|
||||
<configuration>
|
||||
<timestampProvider>default</timestampProvider>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
</build>
|
||||
</project>
|
|
@ -0,0 +1,33 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<projectDescription>
|
||||
<name>org.eclipse.tm.terminal.sdk.feature</name>
|
||||
<comment></comment>
|
||||
<projects>
|
||||
</projects>
|
||||
<buildSpec>
|
||||
<buildCommand>
|
||||
<name>org.eclipse.pde.FeatureBuilder</name>
|
||||
<arguments>
|
||||
</arguments>
|
||||
</buildCommand>
|
||||
<buildCommand>
|
||||
<name>org.eclipse.pde.ds.core.builder</name>
|
||||
<arguments>
|
||||
</arguments>
|
||||
</buildCommand>
|
||||
</buildSpec>
|
||||
<natures>
|
||||
<nature>org.eclipse.pde.FeatureNature</nature>
|
||||
</natures>
|
||||
<filteredResources>
|
||||
<filter>
|
||||
<id>1311579318584</id>
|
||||
<name></name>
|
||||
<type>10</type>
|
||||
<matcher>
|
||||
<id>org.eclipse.ui.ide.multiFilter</id>
|
||||
<arguments>1.0-name-matches-false-false-target</arguments>
|
||||
</matcher>
|
||||
</filter>
|
||||
</filteredResources>
|
||||
</projectDescription>
|
|
@ -0,0 +1,12 @@
|
|||
###############################################################################
|
||||
# Copyright (c) 2012, 2015 Wind River Systems, Inc. and others. All rights reserved.
|
||||
# This program and the accompanying materials are made available under the terms
|
||||
# of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||
# available at http://www.eclipse.org/legal/epl-v10.html
|
||||
#
|
||||
# Contributors:
|
||||
# Wind River Systems - initial API and implementation
|
||||
###############################################################################
|
||||
bin.includes = feature.xml,\
|
||||
feature.properties
|
||||
src.includes = feature.properties
|
|
@ -0,0 +1,38 @@
|
|||
##################################################################################
|
||||
# Copyright (c) 2015, 2018 Wind River Systems, Inc. and others. All rights reserved.
|
||||
# This program and the accompanying materials are made available under the terms
|
||||
# of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||
# available at http://www.eclipse.org/legal/epl-v10.html
|
||||
#
|
||||
# Contributors:
|
||||
# Wind River Systems - initial API and implementation
|
||||
##################################################################################
|
||||
# feature.properties
|
||||
# contains externalized strings for feature.xml
|
||||
# "%foo" in feature.xml corresponds to the key "foo" in this file
|
||||
# java.io.Properties file (ISO 8859-1 with "\" escapes)
|
||||
# This file should be translated.
|
||||
|
||||
# "featureName" property - name of the feature
|
||||
featureName=TM Terminal, SDK
|
||||
|
||||
# "providerName" property - name of the company that provides the feature
|
||||
providerName=Eclipse.org - Target Management
|
||||
|
||||
# "updateSiteName" property - label for the update site
|
||||
updateSiteName=TM Terminal 4.4 Updates
|
||||
|
||||
# "description" property - description of the feature
|
||||
description=An integrated Eclipse View for the local command prompt (console) or \
|
||||
remote hosts via (SSH, Telnet, Serial). Works on Windows, Linux, Mac and Solaris. \
|
||||
Requires Eclipse 3.8.2 or newer and a Java 6 or newer JRE.
|
||||
|
||||
# "copyright" property - text of the "Feature Update Copyright"
|
||||
copyright=\
|
||||
Copyright (c) 2011 - 2018 Wind River Systems, Inc. and others.\n\
|
||||
All rights reserved. This program and the accompanying materials\n\
|
||||
are made available under the terms of the Eclipse Public License v1.0\n\
|
||||
which accompanies this distribution, and is available at\n\
|
||||
http://www.eclipse.org/legal/epl-v10.html
|
||||
|
||||
################ end of copyright property ####################################
|
|
@ -0,0 +1,38 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<feature
|
||||
id="org.eclipse.tm.terminal.sdk.feature"
|
||||
label="%featureName"
|
||||
version="4.4.0.qualifier"
|
||||
provider-name="%providerName"
|
||||
license-feature="org.eclipse.license"
|
||||
license-feature-version="1.0.1.qualifier">
|
||||
|
||||
<description>
|
||||
%description
|
||||
</description>
|
||||
|
||||
<copyright>
|
||||
%copyright
|
||||
</copyright>
|
||||
|
||||
<license url="%licenseURL">
|
||||
%license
|
||||
</license>
|
||||
|
||||
<url>
|
||||
<update label="%updateSiteName" url="http://download.eclipse.org/tm/terminal/updates/4.4"/>
|
||||
</url>
|
||||
|
||||
<includes
|
||||
id="org.eclipse.tm.terminal.feature"
|
||||
version="0.0.0"/>
|
||||
|
||||
<requires>
|
||||
<import feature="org.eclipse.tm.terminal.connector.local.sdk.feature" version="4.3.0" match="greaterOrEqual"/>
|
||||
<import feature="org.eclipse.tm.terminal.connector.ssh.sdk.feature" version="4.3.0" match="greaterOrEqual"/>
|
||||
<import feature="org.eclipse.tm.terminal.connector.telnet.sdk.feature" version="4.3.0" match="greaterOrEqual"/>
|
||||
<import feature="org.eclipse.tm.terminal.control.sdk.feature" version="4.4.0" match="greaterOrEqual"/>
|
||||
<import feature="org.eclipse.tm.terminal.view.sdk.feature" version="4.3.0" match="greaterOrEqual"/>
|
||||
</requires>
|
||||
|
||||
</feature>
|
|
@ -0,0 +1,5 @@
|
|||
update.id=org.eclipse.tcf.te.terminals.sdk.feature.feature.group
|
||||
update.range=(0,$version$)
|
||||
provides.99.namespace=org.eclipse.equinox.p2.iu
|
||||
provides.99.name=org.eclipse.tcf.te.terminals.sdk.feature.feature.group
|
||||
provides.99.version=$version$
|
|
@ -0,0 +1,36 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
|
||||
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<groupId>org.eclipse.tm.terminal</groupId>
|
||||
<artifactId>org.eclipse.tm.terminal.maven-build</artifactId>
|
||||
<version>4.4.0-SNAPSHOT</version>
|
||||
<relativePath>../../admin/pom-build.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
<version>4.4.0-SNAPSHOT</version>
|
||||
<artifactId>org.eclipse.tm.terminal.sdk.feature</artifactId>
|
||||
<packaging>eclipse-feature</packaging>
|
||||
|
||||
<properties>
|
||||
<jacoco.skip>true</jacoco.skip>
|
||||
</properties>
|
||||
|
||||
<build>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.eclipse.tycho</groupId>
|
||||
<artifactId>tycho-packaging-plugin</artifactId>
|
||||
<version>${tycho-version}</version>
|
||||
<configuration>
|
||||
<timestampProvider>default</timestampProvider>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</pluginManagement>
|
||||
</build>
|
||||
</project>
|
|
@ -0,0 +1,28 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<projectDescription>
|
||||
<name>org.eclipse.tm.terminal.view.feature</name>
|
||||
<comment></comment>
|
||||
<projects>
|
||||
</projects>
|
||||
<buildSpec>
|
||||
<buildCommand>
|
||||
<name>org.eclipse.pde.FeatureBuilder</name>
|
||||
<arguments>
|
||||
</arguments>
|
||||
</buildCommand>
|
||||
</buildSpec>
|
||||
<natures>
|
||||
<nature>org.eclipse.pde.FeatureNature</nature>
|
||||
</natures>
|
||||
<filteredResources>
|
||||
<filter>
|
||||
<id>1311579318584</id>
|
||||
<name></name>
|
||||
<type>10</type>
|
||||
<matcher>
|
||||
<id>org.eclipse.ui.ide.multiFilter</id>
|
||||
<arguments>1.0-name-matches-false-false-target</arguments>
|
||||
</matcher>
|
||||
</filter>
|
||||
</filteredResources>
|
||||
</projectDescription>
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue