mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-09 10:46:02 +02:00
Terminal: Change name space of Terminals View plug-ins and features from TCF to TM
This commit is contained in:
parent
cb34c361b0
commit
ff66d2ba1a
316 changed files with 2060 additions and 1240 deletions
10
.gitignore
vendored
Normal file
10
.gitignore
vendored
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
bin/
|
||||||
|
target/
|
||||||
|
workspace/
|
||||||
|
debug-workspace/
|
||||||
|
|
||||||
|
# ignore various emacs droppings
|
||||||
|
*~
|
||||||
|
\#*\#
|
||||||
|
|
||||||
|
|
1
admin/.gitignore
vendored
Normal file
1
admin/.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
/target
|
11
admin/.project
Normal file
11
admin/.project
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<projectDescription>
|
||||||
|
<name>Administration (TM Terminal)</name>
|
||||||
|
<comment></comment>
|
||||||
|
<projects>
|
||||||
|
</projects>
|
||||||
|
<buildSpec>
|
||||||
|
</buildSpec>
|
||||||
|
<natures>
|
||||||
|
</natures>
|
||||||
|
</projectDescription>
|
74
admin/findbugs-exclude.xml
Normal file
74
admin/findbugs-exclude.xml
Normal file
|
@ -0,0 +1,74 @@
|
||||||
|
<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 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 RCN_REDUNDANT_NULLCHECK_OF_NONNULL_VALUE -->
|
||||||
|
<Match>
|
||||||
|
<Bug pattern="RCN_REDUNDANT_NULLCHECK_OF_NONNULL_VALUE"/>
|
||||||
|
</Match>
|
||||||
|
|
||||||
|
</FindBugsFilter>
|
107
admin/pom-build.xml
Normal file
107
admin/pom-build.xml
Normal file
|
@ -0,0 +1,107 @@
|
||||||
|
<?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.0.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.0.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>tests</id>
|
||||||
|
|
||||||
|
<build>
|
||||||
|
<plugins>
|
||||||
|
<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.sdk.feature.group</artifactId>
|
||||||
|
<version>${sdk-version}</version>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
<product>org.eclipse.sdk.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>
|
394
admin/pom-config.xml
Normal file
394
admin/pom-config.xml
Normal file
|
@ -0,0 +1,394 @@
|
||||||
|
<?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.0.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 -->
|
||||||
|
<tycho-version>0.20.0</tycho-version>
|
||||||
|
<tycho-extras-version>0.20.0</tycho-extras-version>
|
||||||
|
<maven-resources-version>2.6</maven-resources-version>
|
||||||
|
<maven-antrun-version>1.7</maven-antrun-version>
|
||||||
|
<gmaven-version>1.5</gmaven-version>
|
||||||
|
<!-- Stick to Findbugs 2.5.2 until newer versions are supported by hudson.eclipse.org -->
|
||||||
|
<findbugs-version>2.5.2</findbugs-version>
|
||||||
|
<eclipse-jarsigner-version>1.1.1</eclipse-jarsigner-version>
|
||||||
|
|
||||||
|
<!-- Common global properties -->
|
||||||
|
<adminDir>${env.WORKSPACE}/admin</adminDir>
|
||||||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
|
|
||||||
|
<tycho.scmUrl>scm:git:git://git.eclipse.org/gitroot/tm/org.eclipse.tm.terminal.git</tycho.scmUrl>
|
||||||
|
|
||||||
|
<terminal-stream>mars</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>
|
||||||
|
<sdk-version>4.5</sdk-version>
|
||||||
|
|
||||||
|
<!-- Set up the default target platform to build against -->
|
||||||
|
<license-site>http://download.eclipse.org/cbi/updates/license</license-site>
|
||||||
|
<platform-site>http://download.eclipse.org/eclipse/updates/${sdk-version}milestones</platform-site>
|
||||||
|
<orbit-site>http://download.eclipse.org/tools/orbit/downloads/drops/S20150316021154/repository/</orbit-site>
|
||||||
|
<cdt-site>http://download.eclipse.org/tools/cdt/releases/8.6</cdt-site>
|
||||||
|
<rse-site>http://download.eclipse.org/tm/updates/4.0milestones</rse-site>
|
||||||
|
<remote-site>http://download.eclipse.org/tools/ptp/builds/remote/mars/milestones</remote-site>
|
||||||
|
<swtbot-site>http://download.eclipse.org/technology/swtbot/releases/latest/</swtbot-site>
|
||||||
|
<rxtx-site>http://archive.eclipse.org/tm/updates/rxtx</rxtx-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>orbit</id>
|
||||||
|
<url>${orbit-site}</url>
|
||||||
|
<layout>p2</layout>
|
||||||
|
</repository>
|
||||||
|
<repository>
|
||||||
|
<id>cdt</id>
|
||||||
|
<url>${cdt-site}</url>
|
||||||
|
<layout>p2</layout>
|
||||||
|
</repository>
|
||||||
|
<repository>
|
||||||
|
<id>rse</id>
|
||||||
|
<url>${rse-site}</url>
|
||||||
|
<layout>p2</layout>
|
||||||
|
</repository>
|
||||||
|
<repository>
|
||||||
|
<id>remote</id>
|
||||||
|
<url>${remote-site}</url>
|
||||||
|
<layout>p2</layout>
|
||||||
|
</repository>
|
||||||
|
<repository>
|
||||||
|
<id>swtbot</id>
|
||||||
|
<url>${swtbot-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>
|
||||||
|
</pluginRepositories>
|
||||||
|
|
||||||
|
<profiles>
|
||||||
|
<profile>
|
||||||
|
<!-- Eclipse 4.3.x (Kepler) -->
|
||||||
|
<id>kepler</id>
|
||||||
|
|
||||||
|
<properties>
|
||||||
|
<tm-stream>kepler</tm-stream>
|
||||||
|
<sdk-version>4.3</sdk-version>
|
||||||
|
<platform-site>http://download.eclipse.org/eclipse/updates/${sdk-version}</platform-site>
|
||||||
|
<cdt-site>http://download.eclipse.org/tools/cdt/releases/8.4</cdt-site>
|
||||||
|
</properties>
|
||||||
|
</profile>
|
||||||
|
<profile>
|
||||||
|
<!-- Eclipse 4.4.x (Luna) -->
|
||||||
|
<id>luna</id>
|
||||||
|
|
||||||
|
<properties>
|
||||||
|
<tm-stream>luna</tm-stream>
|
||||||
|
<sdk-version>4.4</sdk-version>
|
||||||
|
<platform-site>http://download.eclipse.org/eclipse/updates/${sdk-version}</platform-site>
|
||||||
|
<cdt-site>http://download.eclipse.org/tools/cdt/releases/8.5</cdt-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</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>
|
||||||
|
|
||||||
|
<!-- 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>
|
|
@ -1,16 +1,18 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?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"
|
<project
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
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>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
<groupId>org.eclipse.tm.terminal</groupId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<artifactId>org.eclipse.tm.terminal.maven-build</artifactId>
|
||||||
<version>4.0.0-SNAPSHOT</version>
|
<version>4.0.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
<relativePath>../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm.features</groupId>
|
|
||||||
<artifactId>org.eclipse.tm.terminal.feature</artifactId>
|
|
||||||
<version>4.0.0.qualifier</version>
|
<version>4.0.0.qualifier</version>
|
||||||
|
<artifactId>org.eclipse.tm.terminal.feature</artifactId>
|
||||||
<packaging>eclipse-feature</packaging>
|
<packaging>eclipse-feature</packaging>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
|
|
|
@ -37,7 +37,7 @@
|
||||||
<requires>
|
<requires>
|
||||||
<import plugin="org.eclipse.ui"/>
|
<import plugin="org.eclipse.ui"/>
|
||||||
<import plugin="org.eclipse.core.runtime"/>
|
<import plugin="org.eclipse.core.runtime"/>
|
||||||
<import plugin="org.eclipse.tm.terminal" version="3.3.0" match="equivalent"/>
|
<import plugin="org.eclipse.tm.terminal"/>
|
||||||
<import plugin="org.eclipse.remote.core"/>
|
<import plugin="org.eclipse.remote.core"/>
|
||||||
<import plugin="org.eclipse.remote.ui"/>
|
<import plugin="org.eclipse.remote.ui"/>
|
||||||
<import plugin="org.eclipse.core.resources"/>
|
<import plugin="org.eclipse.core.resources"/>
|
||||||
|
|
|
@ -1,16 +1,18 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?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"
|
<project
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
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>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
<groupId>org.eclipse.tm.terminal</groupId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<artifactId>org.eclipse.tm.terminal.maven-build</artifactId>
|
||||||
<version>4.0.0-SNAPSHOT</version>
|
<version>4.0.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
<relativePath>../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm.features</groupId>
|
|
||||||
<artifactId>org.eclipse.tm.terminal.remote.feature</artifactId>
|
|
||||||
<version>4.0.0.qualifier</version>
|
<version>4.0.0.qualifier</version>
|
||||||
|
<artifactId>org.eclipse.tm.terminal.remote.feature</artifactId>
|
||||||
<packaging>eclipse-feature</packaging>
|
<packaging>eclipse-feature</packaging>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
|
|
|
@ -1,16 +1,18 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?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"
|
<project
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
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>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
<groupId>org.eclipse.tm.terminal</groupId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<artifactId>org.eclipse.tm.terminal.maven-build</artifactId>
|
||||||
<version>4.0.0-SNAPSHOT</version>
|
<version>4.0.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
<relativePath>../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm.features</groupId>
|
|
||||||
<artifactId>org.eclipse.tm.terminal.remote.sdk.feature</artifactId>
|
|
||||||
<version>4.0.0.qualifier</version>
|
<version>4.0.0.qualifier</version>
|
||||||
|
<artifactId>org.eclipse.tm.terminal.remote.sdk.feature</artifactId>
|
||||||
<packaging>eclipse-feature</packaging>
|
<packaging>eclipse-feature</packaging>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
|
|
|
@ -1,16 +1,18 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?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"
|
<project
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
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>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
<groupId>org.eclipse.tm.terminal</groupId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<artifactId>org.eclipse.tm.terminal.maven-build</artifactId>
|
||||||
<version>4.0.0-SNAPSHOT</version>
|
<version>4.0.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
<relativePath>../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm.features</groupId>
|
|
||||||
<artifactId>org.eclipse.tm.terminal.sdk.feature</artifactId>
|
|
||||||
<version>4.0.0.qualifier</version>
|
<version>4.0.0.qualifier</version>
|
||||||
|
<artifactId>org.eclipse.tm.terminal.sdk.feature</artifactId>
|
||||||
<packaging>eclipse-feature</packaging>
|
<packaging>eclipse-feature</packaging>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
|
|
|
@ -1,16 +1,18 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?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"
|
<project
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
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>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
<groupId>org.eclipse.tm.terminal</groupId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<artifactId>org.eclipse.tm.terminal.maven-build</artifactId>
|
||||||
<version>4.0.0-SNAPSHOT</version>
|
<version>4.0.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
<relativePath>../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm.features</groupId>
|
|
||||||
<artifactId>org.eclipse.tm.terminal.serial.feature</artifactId>
|
|
||||||
<version>4.0.0.qualifier</version>
|
<version>4.0.0.qualifier</version>
|
||||||
|
<artifactId>org.eclipse.tm.terminal.serial.feature</artifactId>
|
||||||
<packaging>eclipse-feature</packaging>
|
<packaging>eclipse-feature</packaging>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
|
|
|
@ -1,16 +1,18 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?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"
|
<project
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
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>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
<groupId>org.eclipse.tm.terminal</groupId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<artifactId>org.eclipse.tm.terminal.maven-build</artifactId>
|
||||||
<version>4.0.0-SNAPSHOT</version>
|
<version>4.0.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
<relativePath>../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm.features</groupId>
|
|
||||||
<artifactId>org.eclipse.tm.terminal.serial.sdk.feature</artifactId>
|
|
||||||
<version>4.0.0.qualifier</version>
|
<version>4.0.0.qualifier</version>
|
||||||
|
<artifactId>org.eclipse.tm.terminal.serial.sdk.feature</artifactId>
|
||||||
<packaging>eclipse-feature</packaging>
|
<packaging>eclipse-feature</packaging>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
|
|
|
@ -1,16 +1,18 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?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"
|
<project
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
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>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
<groupId>org.eclipse.tm.terminal</groupId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<artifactId>org.eclipse.tm.terminal.maven-build</artifactId>
|
||||||
<version>4.0.0-SNAPSHOT</version>
|
<version>4.0.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
<relativePath>../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm.features</groupId>
|
|
||||||
<artifactId>org.eclipse.tm.terminal.ssh.feature</artifactId>
|
|
||||||
<version>4.0.0.qualifier</version>
|
<version>4.0.0.qualifier</version>
|
||||||
|
<artifactId>org.eclipse.tm.terminal.ssh.feature</artifactId>
|
||||||
<packaging>eclipse-feature</packaging>
|
<packaging>eclipse-feature</packaging>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
|
|
|
@ -1,16 +1,18 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?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"
|
<project
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
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>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
<groupId>org.eclipse.tm.terminal</groupId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<artifactId>org.eclipse.tm.terminal.maven-build</artifactId>
|
||||||
<version>4.0.0-SNAPSHOT</version>
|
<version>4.0.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
<relativePath>../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm.features</groupId>
|
|
||||||
<artifactId>org.eclipse.tm.terminal.ssh.sdk.feature</artifactId>
|
|
||||||
<version>4.0.0.qualifier</version>
|
<version>4.0.0.qualifier</version>
|
||||||
|
<artifactId>org.eclipse.tm.terminal.ssh.sdk.feature</artifactId>
|
||||||
<packaging>eclipse-feature</packaging>
|
<packaging>eclipse-feature</packaging>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
|
|
|
@ -1,16 +1,18 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?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"
|
<project
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
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>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
<groupId>org.eclipse.tm.terminal</groupId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<artifactId>org.eclipse.tm.terminal.maven-build</artifactId>
|
||||||
<version>4.0.0-SNAPSHOT</version>
|
<version>4.0.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
<relativePath>../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm.features</groupId>
|
|
||||||
<artifactId>org.eclipse.tm.terminal.telnet.feature</artifactId>
|
|
||||||
<version>4.0.0.qualifier</version>
|
<version>4.0.0.qualifier</version>
|
||||||
|
<artifactId>org.eclipse.tm.terminal.telnet.feature</artifactId>
|
||||||
<packaging>eclipse-feature</packaging>
|
<packaging>eclipse-feature</packaging>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
|
|
|
@ -1,16 +1,18 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?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"
|
<project
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
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>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
<groupId>org.eclipse.tm.terminal</groupId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<artifactId>org.eclipse.tm.terminal.maven-build</artifactId>
|
||||||
<version>4.0.0-SNAPSHOT</version>
|
<version>4.0.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
<relativePath>../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm.features</groupId>
|
|
||||||
<artifactId>org.eclipse.tm.terminal.telnet.sdk.feature</artifactId>
|
|
||||||
<version>4.0.0.qualifier</version>
|
<version>4.0.0.qualifier</version>
|
||||||
|
<artifactId>org.eclipse.tm.terminal.telnet.sdk.feature</artifactId>
|
||||||
<packaging>eclipse-feature</packaging>
|
<packaging>eclipse-feature</packaging>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<projectDescription>
|
<projectDescription>
|
||||||
<name>org.eclipse.tcf.te.terminals.feature</name>
|
<name>org.eclipse.tm.terminal.view.feature</name>
|
||||||
<comment></comment>
|
<comment></comment>
|
||||||
<projects>
|
<projects>
|
||||||
</projects>
|
</projects>
|
|
@ -24,12 +24,12 @@ updateSiteName=Eclipse Update Site
|
||||||
|
|
||||||
# "description" property - description of the feature
|
# "description" property - description of the feature
|
||||||
description=An integrated Eclipse View for the local command prompt (console) or \
|
description=An integrated Eclipse View for the local command prompt (console) or \
|
||||||
remote hosts (SSH, Telnet, Serial, TCF). Works on Windows, Linux, Mac and Solaris. \
|
remote hosts (SSH, Telnet, Serial). Works on Windows, Linux, Mac and Solaris. \
|
||||||
Requires Eclipse 3.8.2 or newer and a Java 7 or newer JRE.
|
Requires Eclipse 3.8.2 or newer and a Java 6 or newer JRE.
|
||||||
|
|
||||||
# "copyright" property - text of the "Feature Update Copyright"
|
# "copyright" property - text of the "Feature Update Copyright"
|
||||||
copyright=\
|
copyright=\
|
||||||
Copyright (c) 2011, 2015 Wind River Systems, Inc. and others.\n\
|
Copyright (c) 2011 - 2015 Wind River Systems, Inc. and others.\n\
|
||||||
All rights reserved. This program and the accompanying materials\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\
|
are made available under the terms of the Eclipse Public License v1.0\n\
|
||||||
which accompanies this distribution, and is available at\n\
|
which accompanies this distribution, and is available at\n\
|
|
@ -1,10 +1,10 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<feature
|
<feature
|
||||||
id="org.eclipse.tcf.te.terminals.feature"
|
id="org.eclipse.tm.terminal.view.feature"
|
||||||
label="%featureName"
|
label="%featureName"
|
||||||
version="1.3.0.qualifier"
|
version="4.0.0.qualifier"
|
||||||
provider-name="%providerName"
|
provider-name="%providerName"
|
||||||
plugin="org.eclipse.tcf.te.core.terminals"
|
plugin="org.eclipse.tm.terminal.view.core"
|
||||||
license-feature="org.eclipse.license"
|
license-feature="org.eclipse.license"
|
||||||
license-feature-version="1.0.1.qualifier">
|
license-feature-version="1.0.1.qualifier">
|
||||||
|
|
||||||
|
@ -21,68 +21,69 @@
|
||||||
</license>
|
</license>
|
||||||
|
|
||||||
<url>
|
<url>
|
||||||
<update label="%updateSiteName" url="http://download.eclipse.org/releases/luna"/>
|
<update label="%updateSiteName" url="http://download.eclipse.org/releases/mars"/>
|
||||||
</url>
|
</url>
|
||||||
|
|
||||||
<requires>
|
<requires>
|
||||||
<import plugin="org.eclipse.core.expressions" version="3.4.400" match="greaterOrEqual"/>
|
<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.runtime" version="3.8.0" match="greaterOrEqual"/>
|
||||||
<import plugin="org.eclipse.tcf.te.core.terminals" version="1.3.0" match="greaterOrEqual"/>
|
<import plugin="org.eclipse.tm.terminal.view.core" version="4.0.0" match="greaterOrEqual"/>
|
||||||
<import plugin="org.eclipse.tm.terminal" version="3.3.1" match="greaterOrEqual"/>
|
|
||||||
<import plugin="org.eclipse.ui" version="3.8.0" match="greaterOrEqual"/>
|
<import plugin="org.eclipse.ui" version="3.8.0" match="greaterOrEqual"/>
|
||||||
<import plugin="org.eclipse.core.variables" version="3.2.600" match="greaterOrEqual"/>
|
<import plugin="org.eclipse.core.variables" version="3.2.600" match="greaterOrEqual"/>
|
||||||
<import plugin="org.eclipse.tcf.te.ui.terminals" version="1.3.0" match="greaterOrEqual"/>
|
<import plugin="org.eclipse.tm.terminal.view.ui" version="4.0.0" match="greaterOrEqual"/>
|
||||||
<import plugin="org.eclipse.tcf.te.ui.terminals.process" version="1.3.0" match="greaterOrEqual"/>
|
<import plugin="org.eclipse.tm.terminal.view.ui.process" version="4.0.0" match="greaterOrEqual"/>
|
||||||
<import plugin="org.eclipse.equinox.security" version="1.1.100" match="greaterOrEqual"/>
|
<import plugin="org.eclipse.equinox.security" version="1.1.100" match="greaterOrEqual"/>
|
||||||
<import plugin="org.eclipse.tm.terminal.serial" version="2.1.400" match="greaterOrEqual"/>
|
<import plugin="org.eclipse.tm.terminal.serial" version="4.0.0" match="greaterOrEqual"/>
|
||||||
<import plugin="org.eclipse.tm.terminal.ssh" version="2.1.400" match="greaterOrEqual"/>
|
<import plugin="org.eclipse.tm.terminal.ssh" version="4.0.0" match="greaterOrEqual"/>
|
||||||
<import plugin="org.eclipse.tm.terminal.telnet" version="2.1.400" match="greaterOrEqual"/>
|
<import plugin="org.eclipse.tm.terminal.telnet" version="4.0.0" match="greaterOrEqual"/>
|
||||||
|
<import plugin="org.eclipse.tm.terminal" version="4.0.0" match="greaterOrEqual"/>
|
||||||
|
<import plugin="org.eclipse.cdt.core.native"/>
|
||||||
</requires>
|
</requires>
|
||||||
|
|
||||||
<plugin
|
<plugin
|
||||||
id="org.eclipse.tcf.te.core.terminals"
|
id="org.eclipse.tm.terminal.view.core"
|
||||||
download-size="0"
|
download-size="0"
|
||||||
install-size="0"
|
install-size="0"
|
||||||
version="0.0.0"
|
version="0.0.0"
|
||||||
unpack="false"/>
|
unpack="false"/>
|
||||||
|
|
||||||
<plugin
|
<plugin
|
||||||
id="org.eclipse.tcf.te.ui.terminals"
|
id="org.eclipse.tm.terminal.view.ui"
|
||||||
download-size="0"
|
download-size="0"
|
||||||
install-size="0"
|
install-size="0"
|
||||||
version="0.0.0"
|
version="0.0.0"
|
||||||
unpack="false"/>
|
unpack="false"/>
|
||||||
|
|
||||||
<plugin
|
<plugin
|
||||||
id="org.eclipse.tcf.te.ui.terminals.local"
|
id="org.eclipse.tm.terminal.view.ui.local"
|
||||||
download-size="0"
|
download-size="0"
|
||||||
install-size="0"
|
install-size="0"
|
||||||
version="0.0.0"
|
version="0.0.0"
|
||||||
unpack="false"/>
|
unpack="false"/>
|
||||||
|
|
||||||
<plugin
|
<plugin
|
||||||
id="org.eclipse.tcf.te.ui.terminals.process"
|
id="org.eclipse.tm.terminal.view.ui.process"
|
||||||
download-size="0"
|
download-size="0"
|
||||||
install-size="0"
|
install-size="0"
|
||||||
version="0.0.0"
|
version="0.0.0"
|
||||||
unpack="false"/>
|
unpack="false"/>
|
||||||
|
|
||||||
<plugin
|
<plugin
|
||||||
id="org.eclipse.tcf.te.ui.terminals.serial"
|
id="org.eclipse.tm.terminal.view.ui.serial"
|
||||||
download-size="0"
|
download-size="0"
|
||||||
install-size="0"
|
install-size="0"
|
||||||
version="0.0.0"
|
version="0.0.0"
|
||||||
unpack="false"/>
|
unpack="false"/>
|
||||||
|
|
||||||
<plugin
|
<plugin
|
||||||
id="org.eclipse.tcf.te.ui.terminals.ssh"
|
id="org.eclipse.tm.terminal.view.ui.ssh"
|
||||||
download-size="0"
|
download-size="0"
|
||||||
install-size="0"
|
install-size="0"
|
||||||
version="0.0.0"
|
version="0.0.0"
|
||||||
unpack="false"/>
|
unpack="false"/>
|
||||||
|
|
||||||
<plugin
|
<plugin
|
||||||
id="org.eclipse.tcf.te.ui.terminals.telnet"
|
id="org.eclipse.tm.terminal.view.ui.telnet"
|
||||||
download-size="0"
|
download-size="0"
|
||||||
install-size="0"
|
install-size="0"
|
||||||
version="0.0.0"
|
version="0.0.0"
|
|
@ -5,14 +5,14 @@
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.tcf</groupId>
|
<groupId>org.eclipse.tm.terminal</groupId>
|
||||||
<artifactId>org.eclipse.tcf.maven-build</artifactId>
|
<artifactId>org.eclipse.tm.terminal.maven-build</artifactId>
|
||||||
<version>1.3.0-SNAPSHOT</version>
|
<version>4.0.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
<relativePath>../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<version>1.3.0.qualifier</version>
|
<version>4.0.0.qualifier</version>
|
||||||
<artifactId>org.eclipse.tcf.te.terminals.feature</artifactId>
|
<artifactId>org.eclipse.tm.terminal.view.feature</artifactId>
|
||||||
<packaging>eclipse-feature</packaging>
|
<packaging>eclipse-feature</packaging>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<projectDescription>
|
<projectDescription>
|
||||||
<name>org.eclipse.tcf.te.terminals.rse.feature</name>
|
<name>org.eclipse.tm.terminal.view.rse.feature</name>
|
||||||
<comment></comment>
|
<comment></comment>
|
||||||
<projects>
|
<projects>
|
||||||
</projects>
|
</projects>
|
|
@ -1,10 +1,10 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<feature
|
<feature
|
||||||
id="org.eclipse.tcf.te.terminals.rse.feature"
|
id="org.eclipse.tm.terminal.view.rse.feature"
|
||||||
label="%featureName"
|
label="%featureName"
|
||||||
version="1.3.0.qualifier"
|
version="4.0.0.qualifier"
|
||||||
provider-name="%providerName"
|
provider-name="%providerName"
|
||||||
plugin="org.eclipse.tcf.te.core.terminals"
|
plugin="org.eclipse.tm.terminal.view.core"
|
||||||
license-feature="org.eclipse.license"
|
license-feature="org.eclipse.license"
|
||||||
license-feature-version="1.0.1.qualifier">
|
license-feature-version="1.0.1.qualifier">
|
||||||
|
|
||||||
|
@ -21,7 +21,7 @@
|
||||||
</license>
|
</license>
|
||||||
|
|
||||||
<url>
|
<url>
|
||||||
<update label="%updateSiteName" url="http://download.eclipse.org/releases/luna"/>
|
<update label="%updateSiteName" url="http://download.eclipse.org/releases/mars"/>
|
||||||
</url>
|
</url>
|
||||||
|
|
||||||
<requires>
|
<requires>
|
||||||
|
@ -30,15 +30,15 @@
|
||||||
<import plugin="org.eclipse.rse.core" version="3.3.100" match="greaterOrEqual"/>
|
<import plugin="org.eclipse.rse.core" version="3.3.100" match="greaterOrEqual"/>
|
||||||
<import plugin="org.eclipse.rse.subsystems.files.core" version="3.3.1" match="greaterOrEqual"/>
|
<import plugin="org.eclipse.rse.subsystems.files.core" version="3.3.1" match="greaterOrEqual"/>
|
||||||
<import plugin="org.eclipse.rse.ui" version="3.3.100" match="greaterOrEqual"/>
|
<import plugin="org.eclipse.rse.ui" version="3.3.100" match="greaterOrEqual"/>
|
||||||
<import plugin="org.eclipse.tcf.te.core.terminals" version="1.3.0" match="greaterOrEqual"/>
|
<import plugin="org.eclipse.tm.terminal.view.core" version="4.0.0" match="greaterOrEqual"/>
|
||||||
<import plugin="org.eclipse.tcf.te.ui.terminals" version="1.3.0" match="greaterOrEqual"/>
|
<import plugin="org.eclipse.tm.terminal.view.ui" version="4.0.0" match="greaterOrEqual"/>
|
||||||
<import plugin="org.eclipse.tm.terminal" version="3.3.1" match="greaterOrEqual"/>
|
<import plugin="org.eclipse.tm.terminal" version="4.0.0" match="greaterOrEqual"/>
|
||||||
<import plugin="org.eclipse.ui" version="3.8.0" match="greaterOrEqual"/>
|
<import plugin="org.eclipse.ui" version="3.8.0" match="greaterOrEqual"/>
|
||||||
<import feature="org.eclipse.tcf.te.terminals.feature" version="1.3.0" match="greaterOrEqual"/>
|
<import feature="org.eclipse.tm.terminal.view.feature" version="4.0.0" match="greaterOrEqual"/>
|
||||||
</requires>
|
</requires>
|
||||||
|
|
||||||
<plugin
|
<plugin
|
||||||
id="org.eclipse.tcf.te.ui.terminals.rse"
|
id="org.eclipse.tm.terminal.view.ui.rse"
|
||||||
download-size="0"
|
download-size="0"
|
||||||
install-size="0"
|
install-size="0"
|
||||||
version="0.0.0"
|
version="0.0.0"
|
|
@ -5,14 +5,14 @@
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.tcf</groupId>
|
<groupId>org.eclipse.tm.terminal</groupId>
|
||||||
<artifactId>org.eclipse.tcf.maven-build</artifactId>
|
<artifactId>org.eclipse.tm.terminal.maven-build</artifactId>
|
||||||
<version>1.3.0-SNAPSHOT</version>
|
<version>4.0.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
<relativePath>../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<version>1.3.0.qualifier</version>
|
<version>4.0.0.qualifier</version>
|
||||||
<artifactId>org.eclipse.tcf.te.terminals.sdk.feature</artifactId>
|
<artifactId>org.eclipse.tm.terminal.view.rse.feature</artifactId>
|
||||||
<packaging>eclipse-feature</packaging>
|
<packaging>eclipse-feature</packaging>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<projectDescription>
|
<projectDescription>
|
||||||
<name>org.eclipse.tcf.te.terminals.rse.sdk.feature</name>
|
<name>org.eclipse.tm.terminal.view.rse.sdk.feature</name>
|
||||||
<comment></comment>
|
<comment></comment>
|
||||||
<projects>
|
<projects>
|
||||||
</projects>
|
</projects>
|
|
@ -1,8 +1,8 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<feature
|
<feature
|
||||||
id="org.eclipse.tcf.te.terminals.rse.sdk.feature"
|
id="org.eclipse.tm.terminal.view.rse.sdk.feature"
|
||||||
label="%featureName"
|
label="%featureName"
|
||||||
version="1.3.0.qualifier"
|
version="4.0.0.qualifier"
|
||||||
provider-name="%providerName"
|
provider-name="%providerName"
|
||||||
license-feature="org.eclipse.license"
|
license-feature="org.eclipse.license"
|
||||||
license-feature-version="1.0.1.qualifier">
|
license-feature-version="1.0.1.qualifier">
|
||||||
|
@ -20,16 +20,16 @@
|
||||||
</license>
|
</license>
|
||||||
|
|
||||||
<url>
|
<url>
|
||||||
<update label="%updateSiteName" url="http://download.eclipse.org/releases/luna"/>
|
<update label="%updateSiteName" url="http://download.eclipse.org/releases/mars"/>
|
||||||
</url>
|
</url>
|
||||||
|
|
||||||
<requires>
|
<requires>
|
||||||
<import feature="org.eclipse.tcf.te.terminals.sdk.feature" version="1.3.0" match="greaterOrEqual"/>
|
<import feature="org.eclipse.tm.terminal.view.sdk.feature" version="4.0.0" match="greaterOrEqual"/>
|
||||||
<import feature="org.eclipse.tcf.te.terminals.rse.feature" version="1.3.0" match="greaterOrEqual"/>
|
<import feature="org.eclipse.tm.terminal.view.rse.feature" version="4.0.0" match="greaterOrEqual"/>
|
||||||
</requires>
|
</requires>
|
||||||
|
|
||||||
<plugin
|
<plugin
|
||||||
id="org.eclipse.tcf.te.ui.terminals.rse.source"
|
id="org.eclipse.tm.terminal.view.ui.rse.source"
|
||||||
download-size="0"
|
download-size="0"
|
||||||
install-size="0"
|
install-size="0"
|
||||||
version="0.0.0"
|
version="0.0.0"
|
|
@ -5,14 +5,14 @@
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.tcf</groupId>
|
<groupId>org.eclipse.tm.terminal</groupId>
|
||||||
<artifactId>org.eclipse.tcf.maven-build</artifactId>
|
<artifactId>org.eclipse.tm.terminal.maven-build</artifactId>
|
||||||
<version>1.3.0-SNAPSHOT</version>
|
<version>4.0.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
<relativePath>../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<version>1.3.0.qualifier</version>
|
<version>4.0.0.qualifier</version>
|
||||||
<artifactId>org.eclipse.tcf.te.terminals.rse.sdk.feature</artifactId>
|
<artifactId>org.eclipse.tm.terminal.view.rse.sdk.feature</artifactId>
|
||||||
<packaging>eclipse-feature</packaging>
|
<packaging>eclipse-feature</packaging>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<projectDescription>
|
<projectDescription>
|
||||||
<name>org.eclipse.tcf.te.terminals.sdk.feature</name>
|
<name>org.eclipse.tm.terminal.view.sdk.feature</name>
|
||||||
<comment></comment>
|
<comment></comment>
|
||||||
<projects>
|
<projects>
|
||||||
</projects>
|
</projects>
|
|
@ -24,12 +24,12 @@ updateSiteName=Eclipse Update Site
|
||||||
|
|
||||||
# "description" property - description of the feature
|
# "description" property - description of the feature
|
||||||
description=An integrated Eclipse View for the local command prompt (console) or \
|
description=An integrated Eclipse View for the local command prompt (console) or \
|
||||||
remote hosts via (SSH, Telnet, Serial, TCF). Works on Windows, Linux, Mac and Solaris. \
|
remote hosts via (SSH, Telnet, Serial). Works on Windows, Linux, Mac and Solaris. \
|
||||||
Requires Eclipse 3.8.2 or newer and a Java 7 or newer JRE.
|
Requires Eclipse 3.8.2 or newer and a Java 6 or newer JRE.
|
||||||
|
|
||||||
# "copyright" property - text of the "Feature Update Copyright"
|
# "copyright" property - text of the "Feature Update Copyright"
|
||||||
copyright=\
|
copyright=\
|
||||||
Copyright (c) 2011, 2014 Wind River Systems, Inc. and others.\n\
|
Copyright (c) 2011 - 2015 Wind River Systems, Inc. and others.\n\
|
||||||
All rights reserved. This program and the accompanying materials\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\
|
are made available under the terms of the Eclipse Public License v1.0\n\
|
||||||
which accompanies this distribution, and is available at\n\
|
which accompanies this distribution, and is available at\n\
|
|
@ -1,8 +1,8 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<feature
|
<feature
|
||||||
id="org.eclipse.tcf.te.terminals.sdk.feature"
|
id="org.eclipse.tm.terminal.view.sdk.feature"
|
||||||
label="%featureName"
|
label="%featureName"
|
||||||
version="1.3.0.qualifier"
|
version="4.0.0.qualifier"
|
||||||
provider-name="%providerName"
|
provider-name="%providerName"
|
||||||
license-feature="org.eclipse.license"
|
license-feature="org.eclipse.license"
|
||||||
license-feature-version="1.0.1.qualifier">
|
license-feature-version="1.0.1.qualifier">
|
||||||
|
@ -20,57 +20,57 @@
|
||||||
</license>
|
</license>
|
||||||
|
|
||||||
<url>
|
<url>
|
||||||
<update label="%updateSiteName" url="http://download.eclipse.org/releases/luna"/>
|
<update label="%updateSiteName" url="http://download.eclipse.org/releases/mars"/>
|
||||||
</url>
|
</url>
|
||||||
|
|
||||||
<requires>
|
<requires>
|
||||||
<import feature="org.eclipse.tcf.te.terminals.feature" version="1.3.0" match="greaterOrEqual"/>
|
<import feature="org.eclipse.tm.terminal.view.feature" version="4.0.0" match="greaterOrEqual"/>
|
||||||
</requires>
|
</requires>
|
||||||
|
|
||||||
<plugin
|
<plugin
|
||||||
id="org.eclipse.tcf.te.core.terminals.source"
|
id="org.eclipse.tm.terminal.view.core.source"
|
||||||
download-size="0"
|
download-size="0"
|
||||||
install-size="0"
|
install-size="0"
|
||||||
version="0.0.0"
|
version="0.0.0"
|
||||||
unpack="false"/>
|
unpack="false"/>
|
||||||
|
|
||||||
<plugin
|
<plugin
|
||||||
id="org.eclipse.tcf.te.ui.terminals.source"
|
id="org.eclipse.tm.terminal.view.ui.source"
|
||||||
download-size="0"
|
download-size="0"
|
||||||
install-size="0"
|
install-size="0"
|
||||||
version="0.0.0"
|
version="0.0.0"
|
||||||
unpack="false"/>
|
unpack="false"/>
|
||||||
|
|
||||||
<plugin
|
<plugin
|
||||||
id="org.eclipse.tcf.te.ui.terminals.local.source"
|
id="org.eclipse.tm.terminal.view.ui.local.source"
|
||||||
download-size="0"
|
download-size="0"
|
||||||
install-size="0"
|
install-size="0"
|
||||||
version="0.0.0"
|
version="0.0.0"
|
||||||
unpack="false"/>
|
unpack="false"/>
|
||||||
|
|
||||||
<plugin
|
<plugin
|
||||||
id="org.eclipse.tcf.te.ui.terminals.process.source"
|
id="org.eclipse.tm.terminal.view.ui.process.source"
|
||||||
download-size="0"
|
download-size="0"
|
||||||
install-size="0"
|
install-size="0"
|
||||||
version="0.0.0"
|
version="0.0.0"
|
||||||
unpack="false"/>
|
unpack="false"/>
|
||||||
|
|
||||||
<plugin
|
<plugin
|
||||||
id="org.eclipse.tcf.te.ui.terminals.serial.source"
|
id="org.eclipse.tm.terminal.view.ui.serial.source"
|
||||||
download-size="0"
|
download-size="0"
|
||||||
install-size="0"
|
install-size="0"
|
||||||
version="0.0.0"
|
version="0.0.0"
|
||||||
unpack="false"/>
|
unpack="false"/>
|
||||||
|
|
||||||
<plugin
|
<plugin
|
||||||
id="org.eclipse.tcf.te.ui.terminals.ssh.source"
|
id="org.eclipse.tm.terminal.view.ui.ssh.source"
|
||||||
download-size="0"
|
download-size="0"
|
||||||
install-size="0"
|
install-size="0"
|
||||||
version="0.0.0"
|
version="0.0.0"
|
||||||
unpack="false"/>
|
unpack="false"/>
|
||||||
|
|
||||||
<plugin
|
<plugin
|
||||||
id="org.eclipse.tcf.te.ui.terminals.telnet.source"
|
id="org.eclipse.tm.terminal.view.ui.telnet.source"
|
||||||
download-size="0"
|
download-size="0"
|
||||||
install-size="0"
|
install-size="0"
|
||||||
version="0.0.0"
|
version="0.0.0"
|
|
@ -5,14 +5,14 @@
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.tcf</groupId>
|
<groupId>org.eclipse.tm.terminal</groupId>
|
||||||
<artifactId>org.eclipse.tcf.maven-build</artifactId>
|
<artifactId>org.eclipse.tm.terminal.maven-build</artifactId>
|
||||||
<version>1.3.0-SNAPSHOT</version>
|
<version>4.0.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
<relativePath>../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<version>1.3.0.qualifier</version>
|
<version>4.0.0.qualifier</version>
|
||||||
<artifactId>org.eclipse.tcf.te.terminals.rse.feature</artifactId>
|
<artifactId>org.eclipse.tm.terminal.view.sdk.feature</artifactId>
|
||||||
<packaging>eclipse-feature</packaging>
|
<packaging>eclipse-feature</packaging>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
|
@ -1 +0,0 @@
|
||||||
org.eclipse.tcf.te.core.terminals/debugmode = 0
|
|
|
@ -1,21 +0,0 @@
|
||||||
Manifest-Version: 1.0
|
|
||||||
Bundle-ManifestVersion: 2
|
|
||||||
Bundle-Name: %pluginName
|
|
||||||
Bundle-SymbolicName: org.eclipse.tcf.te.core.terminals;singleton:=true
|
|
||||||
Bundle-Version: 1.3.0.qualifier
|
|
||||||
Bundle-Activator: org.eclipse.tcf.te.core.terminals.activator.CoreBundleActivator
|
|
||||||
Bundle-Vendor: %providerName
|
|
||||||
Require-Bundle: org.eclipse.core.expressions;bundle-version="3.4.400",
|
|
||||||
org.eclipse.core.runtime;bundle-version="3.8.0"
|
|
||||||
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
|
|
||||||
Bundle-ActivationPolicy: lazy
|
|
||||||
Bundle-Localization: plugin
|
|
||||||
Export-Package: org.eclipse.tcf.te.core.terminals,
|
|
||||||
org.eclipse.tcf.te.core.terminals.activator;x-internal:=true,
|
|
||||||
org.eclipse.tcf.te.core.terminals.interfaces,
|
|
||||||
org.eclipse.tcf.te.core.terminals.interfaces.constants,
|
|
||||||
org.eclipse.tcf.te.core.terminals.internal;x-internal:=true,
|
|
||||||
org.eclipse.tcf.te.core.terminals.nls;x-internal:=true,
|
|
||||||
org.eclipse.tcf.te.core.terminals.preferences,
|
|
||||||
org.eclipse.tcf.te.core.terminals.tracing,
|
|
||||||
org.eclipse.tcf.te.core.terminals.utils
|
|
Binary file not shown.
Before Width: | Height: | Size: 2.4 KiB |
|
@ -1,30 +0,0 @@
|
||||||
Manifest-Version: 1.0
|
|
||||||
Bundle-ManifestVersion: 2
|
|
||||||
Bundle-Name: %pluginName
|
|
||||||
Bundle-SymbolicName: org.eclipse.tcf.te.ui.terminals.local;singleton:=true
|
|
||||||
Bundle-Version: 1.3.0.qualifier
|
|
||||||
Bundle-Activator: org.eclipse.tcf.te.ui.terminals.local.activator.UIPlugin
|
|
||||||
Bundle-Vendor: %providerName
|
|
||||||
Import-Package: org.eclipse.cdt.utils.pty;mandatory:=native
|
|
||||||
Require-Bundle: org.eclipse.cdt.core;bundle-version="5.6";resolution:=optional,
|
|
||||||
org.eclipse.core.expressions;bundle-version="3.4.400",
|
|
||||||
org.eclipse.core.resources;bundle-version="3.8.1";resolution:=optional,
|
|
||||||
org.eclipse.core.runtime;bundle-version="3.8.0",
|
|
||||||
org.eclipse.core.variables;bundle-version="3.2.600",
|
|
||||||
org.eclipse.debug.ui;bundle-version="3.8.1";resolution:=optional,
|
|
||||||
org.eclipse.tcf.te.core.terminals;bundle-version="1.3.0",
|
|
||||||
org.eclipse.tcf.te.ui.terminals;bundle-version="1.3.0",
|
|
||||||
org.eclipse.tcf.te.ui.terminals.process;bundle-version="1.3.0",
|
|
||||||
org.eclipse.tm.terminal;bundle-version="3.3.1",
|
|
||||||
org.eclipse.ui;bundle-version="3.8.0"
|
|
||||||
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
|
|
||||||
Bundle-ActivationPolicy: lazy
|
|
||||||
Bundle-Localization: plugin
|
|
||||||
Export-Package: org.eclipse.tcf.te.ui.terminals.local.activator;x-internal:=true,
|
|
||||||
org.eclipse.tcf.te.ui.terminals.local.controls,
|
|
||||||
org.eclipse.tcf.te.ui.terminals.local.help,
|
|
||||||
org.eclipse.tcf.te.ui.terminals.local.launcher,
|
|
||||||
org.eclipse.tcf.te.ui.terminals.local.nls;x-internal:=true,
|
|
||||||
org.eclipse.tcf.te.ui.terminals.local.showin,
|
|
||||||
org.eclipse.tcf.te.ui.terminals.local.showin.interfaces,
|
|
||||||
org.eclipse.tcf.te.ui.terminals.local.showin.preferences
|
|
|
@ -1,24 +0,0 @@
|
||||||
Manifest-Version: 1.0
|
|
||||||
Bundle-ManifestVersion: 2
|
|
||||||
Bundle-Name: %pluginName
|
|
||||||
Bundle-SymbolicName: org.eclipse.tcf.te.ui.terminals.serial;singleton:=true
|
|
||||||
Bundle-Version: 1.3.0.qualifier
|
|
||||||
Bundle-Activator: org.eclipse.tcf.te.ui.terminals.serial.activator.UIPlugin
|
|
||||||
Bundle-Vendor: %providerName
|
|
||||||
Require-Bundle: org.eclipse.core.expressions;bundle-version="3.4.400",
|
|
||||||
org.eclipse.core.runtime;bundle-version="3.8.0",
|
|
||||||
org.eclipse.equinox.security;bundle-version="1.1.100",
|
|
||||||
org.eclipse.tcf.te.core.terminals;bundle-version="1.3.0",
|
|
||||||
org.eclipse.tcf.te.ui.terminals;bundle-version="1.3.0",
|
|
||||||
org.eclipse.tm.terminal;bundle-version="3.3.1",
|
|
||||||
org.eclipse.tm.terminal.serial;bundle-version="2.1.400",
|
|
||||||
org.eclipse.ui;bundle-version="3.8.0"
|
|
||||||
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
|
|
||||||
Bundle-ActivationPolicy: lazy
|
|
||||||
Bundle-Localization: plugin
|
|
||||||
Export-Package: org.eclipse.tcf.te.ui.terminals.serial.activator;x-internal:=true,
|
|
||||||
org.eclipse.tcf.te.ui.terminals.serial.controls,
|
|
||||||
org.eclipse.tcf.te.ui.terminals.serial.interfaces,
|
|
||||||
org.eclipse.tcf.te.ui.terminals.serial.launcher,
|
|
||||||
org.eclipse.tcf.te.ui.terminals.serial.nls;x-internal:=true
|
|
||||||
Import-Package: gnu.io;resolution:=optional
|
|
|
@ -1,22 +0,0 @@
|
||||||
Manifest-Version: 1.0
|
|
||||||
Bundle-ManifestVersion: 2
|
|
||||||
Bundle-Name: %pluginName
|
|
||||||
Bundle-SymbolicName: org.eclipse.tcf.te.ui.terminals.ssh;singleton:=true
|
|
||||||
Bundle-Version: 1.3.0.qualifier
|
|
||||||
Bundle-Activator: org.eclipse.tcf.te.ui.terminals.ssh.activator.UIPlugin
|
|
||||||
Bundle-Vendor: %providerName
|
|
||||||
Require-Bundle: org.eclipse.core.expressions;bundle-version="3.4.400",
|
|
||||||
org.eclipse.core.runtime;bundle-version="3.8.0",
|
|
||||||
org.eclipse.equinox.security;bundle-version="1.1.100",
|
|
||||||
org.eclipse.tcf.te.core.terminals;bundle-version="1.3.0",
|
|
||||||
org.eclipse.tcf.te.ui.terminals;bundle-version="1.3.0",
|
|
||||||
org.eclipse.tm.terminal;bundle-version="3.3.1",
|
|
||||||
org.eclipse.tm.terminal.ssh;bundle-version="2.1.400",
|
|
||||||
org.eclipse.ui;bundle-version="3.8.0"
|
|
||||||
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
|
|
||||||
Bundle-ActivationPolicy: lazy
|
|
||||||
Bundle-Localization: plugin
|
|
||||||
Export-Package: org.eclipse.tcf.te.ui.terminals.ssh.activator;x-internal:=true,
|
|
||||||
org.eclipse.tcf.te.ui.terminals.ssh.controls,
|
|
||||||
org.eclipse.tcf.te.ui.terminals.ssh.launcher,
|
|
||||||
org.eclipse.tcf.te.ui.terminals.ssh.nls;x-internal:=true
|
|
|
@ -1,17 +0,0 @@
|
||||||
<?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.tcf</groupId>
|
|
||||||
<artifactId>org.eclipse.tcf.maven-build</artifactId>
|
|
||||||
<version>1.3.0-SNAPSHOT</version>
|
|
||||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
|
||||||
</parent>
|
|
||||||
|
|
||||||
<version>1.3.0.qualifier</version>
|
|
||||||
<artifactId>org.eclipse.tcf.te.ui.terminals.ssh</artifactId>
|
|
||||||
<packaging>eclipse-plugin</packaging>
|
|
||||||
</project>
|
|
|
@ -1,22 +0,0 @@
|
||||||
Manifest-Version: 1.0
|
|
||||||
Bundle-ManifestVersion: 2
|
|
||||||
Bundle-Name: %pluginName
|
|
||||||
Bundle-SymbolicName: org.eclipse.tcf.te.ui.terminals.telnet;singleton:=true
|
|
||||||
Bundle-Version: 1.3.0.qualifier
|
|
||||||
Bundle-Activator: org.eclipse.tcf.te.ui.terminals.telnet.activator.UIPlugin
|
|
||||||
Bundle-Vendor: %providerName
|
|
||||||
Require-Bundle: org.eclipse.core.expressions;bundle-version="3.4.400",
|
|
||||||
org.eclipse.core.runtime;bundle-version="3.8.0",
|
|
||||||
org.eclipse.equinox.security;bundle-version="1.1.100",
|
|
||||||
org.eclipse.tcf.te.core.terminals;bundle-version="1.3.0",
|
|
||||||
org.eclipse.tcf.te.ui.terminals;bundle-version="1.3.0",
|
|
||||||
org.eclipse.tm.terminal;bundle-version="3.3.1",
|
|
||||||
org.eclipse.tm.terminal.telnet;bundle-version="2.1.400",
|
|
||||||
org.eclipse.ui;bundle-version="3.8.0"
|
|
||||||
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
|
|
||||||
Bundle-ActivationPolicy: lazy
|
|
||||||
Bundle-Localization: plugin
|
|
||||||
Export-Package: org.eclipse.tcf.te.ui.terminals.telnet.activator;x-internal:=true,
|
|
||||||
org.eclipse.tcf.te.ui.terminals.telnet.controls,
|
|
||||||
org.eclipse.tcf.te.ui.terminals.telnet.launcher,
|
|
||||||
org.eclipse.tcf.te.ui.terminals.telnet.nls;x-internal:=true
|
|
|
@ -1,34 +0,0 @@
|
||||||
Manifest-Version: 1.0
|
|
||||||
Bundle-ManifestVersion: 2
|
|
||||||
Bundle-Name: %pluginName
|
|
||||||
Bundle-SymbolicName: org.eclipse.tcf.te.ui.terminals;singleton:=true
|
|
||||||
Bundle-Version: 1.3.0.qualifier
|
|
||||||
Bundle-Activator: org.eclipse.tcf.te.ui.terminals.activator.UIPlugin
|
|
||||||
Bundle-Vendor: %providerName
|
|
||||||
Require-Bundle: org.eclipse.core.expressions;bundle-version="3.4.400",
|
|
||||||
org.eclipse.core.runtime;bundle-version="3.8.0",
|
|
||||||
org.eclipse.core.resources;bundle-version="3.8.1";resolution:=optional,
|
|
||||||
org.eclipse.tcf.te.core.terminals;bundle-version="1.3.0",
|
|
||||||
org.eclipse.tm.terminal;bundle-version="3.3.1",
|
|
||||||
org.eclipse.ui;bundle-version="3.8.0"
|
|
||||||
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
|
|
||||||
Bundle-ActivationPolicy: lazy
|
|
||||||
Bundle-Localization: plugin
|
|
||||||
Export-Package: org.eclipse.tcf.te.ui.terminals.actions,
|
|
||||||
org.eclipse.tcf.te.ui.terminals.activator;x-internal:=true,
|
|
||||||
org.eclipse.tcf.te.ui.terminals.controls,
|
|
||||||
org.eclipse.tcf.te.ui.terminals.help,
|
|
||||||
org.eclipse.tcf.te.ui.terminals.interfaces,
|
|
||||||
org.eclipse.tcf.te.ui.terminals.interfaces.tracing;x-internal:=true,
|
|
||||||
org.eclipse.tcf.te.ui.terminals.internal;x-internal:=true,
|
|
||||||
org.eclipse.tcf.te.ui.terminals.internal.dialogs;x-internal:=true,
|
|
||||||
org.eclipse.tcf.te.ui.terminals.internal.handler;x-internal:=true,
|
|
||||||
org.eclipse.tcf.te.ui.terminals.launcher,
|
|
||||||
org.eclipse.tcf.te.ui.terminals.listeners,
|
|
||||||
org.eclipse.tcf.te.ui.terminals.manager,
|
|
||||||
org.eclipse.tcf.te.ui.terminals.nls;x-internal:=true,
|
|
||||||
org.eclipse.tcf.te.ui.terminals.panels,
|
|
||||||
org.eclipse.tcf.te.ui.terminals.services,
|
|
||||||
org.eclipse.tcf.te.ui.terminals.streams,
|
|
||||||
org.eclipse.tcf.te.ui.terminals.tabs,
|
|
||||||
org.eclipse.tcf.te.ui.terminals.view
|
|
|
@ -1,17 +0,0 @@
|
||||||
<?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.tcf</groupId>
|
|
||||||
<artifactId>org.eclipse.tcf.maven-build</artifactId>
|
|
||||||
<version>1.3.0-SNAPSHOT</version>
|
|
||||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
|
||||||
</parent>
|
|
||||||
|
|
||||||
<version>1.3.0.qualifier</version>
|
|
||||||
<artifactId>org.eclipse.tcf.te.ui.terminals</artifactId>
|
|
||||||
<packaging>eclipse-plugin</packaging>
|
|
||||||
</project>
|
|
1
plugins/org.eclipse.tm.terminal.remote/.gitignore
vendored
Normal file
1
plugins/org.eclipse.tm.terminal.remote/.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
/bin/
|
|
@ -1,15 +1,16 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?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"
|
<project
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
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>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm.terminal</groupId>
|
||||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
<artifactId>org.eclipse.tm.terminal.maven-build</artifactId>
|
||||||
<version>4.0.0-SNAPSHOT</version>
|
<version>4.0.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
<relativePath>../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
|
||||||
<artifactId>org.eclipse.tm.terminal.remote</artifactId>
|
<artifactId>org.eclipse.tm.terminal.remote</artifactId>
|
||||||
<version>1.0.0-SNAPSHOT</version>
|
<version>1.0.0-SNAPSHOT</version>
|
||||||
<packaging>eclipse-plugin</packaging>
|
<packaging>eclipse-plugin</packaging>
|
||||||
|
|
1
plugins/org.eclipse.tm.terminal.serial/.gitignore
vendored
Normal file
1
plugins/org.eclipse.tm.terminal.serial/.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
/bin/
|
|
@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
||||||
Bundle-ManifestVersion: 2
|
Bundle-ManifestVersion: 2
|
||||||
Bundle-Name: %pluginName
|
Bundle-Name: %pluginName
|
||||||
Bundle-SymbolicName: org.eclipse.tm.terminal.serial;singleton:=true
|
Bundle-SymbolicName: org.eclipse.tm.terminal.serial;singleton:=true
|
||||||
Bundle-Version: 2.1.400.qualifier
|
Bundle-Version: 4.0.0.qualifier
|
||||||
Bundle-Localization: plugin
|
Bundle-Localization: plugin
|
||||||
Import-Package: gnu.io;resolution:=optional
|
Import-Package: gnu.io;resolution:=optional
|
||||||
Require-Bundle: org.eclipse.ui,
|
Require-Bundle: org.eclipse.ui,
|
||||||
|
|
|
@ -1,15 +1,17 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?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"
|
<project
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
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>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
<groupId>org.eclipse.tm.terminal</groupId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<artifactId>org.eclipse.tm.terminal.maven-build</artifactId>
|
||||||
<version>4.0.0-SNAPSHOT</version>
|
<version>4.0.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
<relativePath>../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
|
||||||
|
<version>4.0.0.qualifier</version>
|
||||||
<artifactId>org.eclipse.tm.terminal.serial</artifactId>
|
<artifactId>org.eclipse.tm.terminal.serial</artifactId>
|
||||||
<version>2.1.400.qualifier</version>
|
|
||||||
<packaging>eclipse-plugin</packaging>
|
<packaging>eclipse-plugin</packaging>
|
||||||
</project>
|
</project>
|
||||||
|
|
1
plugins/org.eclipse.tm.terminal.ssh/.gitignore
vendored
Normal file
1
plugins/org.eclipse.tm.terminal.ssh/.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
/bin/
|
|
@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
||||||
Bundle-ManifestVersion: 2
|
Bundle-ManifestVersion: 2
|
||||||
Bundle-Name: %pluginName
|
Bundle-Name: %pluginName
|
||||||
Bundle-SymbolicName: org.eclipse.tm.terminal.ssh;singleton:=true
|
Bundle-SymbolicName: org.eclipse.tm.terminal.ssh;singleton:=true
|
||||||
Bundle-Version: 2.1.400.qualifier
|
Bundle-Version: 4.0.0.qualifier
|
||||||
Bundle-Vendor: %providerName
|
Bundle-Vendor: %providerName
|
||||||
Bundle-Localization: plugin
|
Bundle-Localization: plugin
|
||||||
Require-Bundle: org.eclipse.ui,
|
Require-Bundle: org.eclipse.ui,
|
||||||
|
|
|
@ -1,15 +1,17 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?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"
|
<project
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
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>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
<groupId>org.eclipse.tm.terminal</groupId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<artifactId>org.eclipse.tm.terminal.maven-build</artifactId>
|
||||||
<version>4.0.0-SNAPSHOT</version>
|
<version>4.0.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
<relativePath>../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
|
||||||
|
<version>4.0.0.qualifier</version>
|
||||||
<artifactId>org.eclipse.tm.terminal.ssh</artifactId>
|
<artifactId>org.eclipse.tm.terminal.ssh</artifactId>
|
||||||
<version>2.1.400.qualifier</version>
|
|
||||||
<packaging>eclipse-plugin</packaging>
|
<packaging>eclipse-plugin</packaging>
|
||||||
</project>
|
</project>
|
||||||
|
|
1
plugins/org.eclipse.tm.terminal.telnet/.gitignore
vendored
Normal file
1
plugins/org.eclipse.tm.terminal.telnet/.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
/bin/
|
|
@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
||||||
Bundle-ManifestVersion: 2
|
Bundle-ManifestVersion: 2
|
||||||
Bundle-Name: %pluginName
|
Bundle-Name: %pluginName
|
||||||
Bundle-SymbolicName: org.eclipse.tm.terminal.telnet;singleton:=true
|
Bundle-SymbolicName: org.eclipse.tm.terminal.telnet;singleton:=true
|
||||||
Bundle-Version: 2.1.400.qualifier
|
Bundle-Version: 4.0.0.qualifier
|
||||||
Bundle-Vendor: %providerName
|
Bundle-Vendor: %providerName
|
||||||
Bundle-Localization: plugin
|
Bundle-Localization: plugin
|
||||||
Require-Bundle: org.eclipse.ui,
|
Require-Bundle: org.eclipse.ui,
|
||||||
|
|
|
@ -1,15 +1,17 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?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"
|
<project
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
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>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
<groupId>org.eclipse.tm.terminal</groupId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<artifactId>org.eclipse.tm.terminal.maven-build</artifactId>
|
||||||
<version>4.0.0-SNAPSHOT</version>
|
<version>4.0.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
<relativePath>../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
|
||||||
|
<version>4.0.0.qualifier</version>
|
||||||
<artifactId>org.eclipse.tm.terminal.telnet</artifactId>
|
<artifactId>org.eclipse.tm.terminal.telnet</artifactId>
|
||||||
<version>2.1.400.qualifier</version>
|
|
||||||
<packaging>eclipse-plugin</packaging>
|
<packaging>eclipse-plugin</packaging>
|
||||||
</project>
|
</project>
|
||||||
|
|
1
plugins/org.eclipse.tm.terminal.test/.gitignore
vendored
Normal file
1
plugins/org.eclipse.tm.terminal.test/.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
/bin/
|
|
@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
||||||
Bundle-ManifestVersion: 2
|
Bundle-ManifestVersion: 2
|
||||||
Bundle-Name: %pluginName
|
Bundle-Name: %pluginName
|
||||||
Bundle-SymbolicName: org.eclipse.tm.terminal.test;singleton:=true
|
Bundle-SymbolicName: org.eclipse.tm.terminal.test;singleton:=true
|
||||||
Bundle-Version: 2.3.0.qualifier
|
Bundle-Version: 4.0.0.qualifier
|
||||||
Bundle-Vendor: %providerName
|
Bundle-Vendor: %providerName
|
||||||
Bundle-Localization: plugin
|
Bundle-Localization: plugin
|
||||||
Require-Bundle: org.junit,
|
Require-Bundle: org.junit,
|
||||||
|
|
|
@ -1,32 +1,35 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?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"
|
<project
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
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>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
<groupId>org.eclipse.tm.terminal</groupId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<artifactId>org.eclipse.tm.terminal.maven-build</artifactId>
|
||||||
<version>4.0.0-SNAPSHOT</version>
|
<version>4.0.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
<relativePath>../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
|
||||||
|
<version>4.0.0.qualifier</version>
|
||||||
<artifactId>org.eclipse.tm.terminal.test</artifactId>
|
<artifactId>org.eclipse.tm.terminal.test</artifactId>
|
||||||
<version>2.3.0.qualifier</version>
|
|
||||||
<packaging>eclipse-test-plugin</packaging>
|
<packaging>eclipse-test-plugin</packaging>
|
||||||
<build>
|
|
||||||
<plugins>
|
<build>
|
||||||
<plugin>
|
<plugins>
|
||||||
<groupId>org.eclipse.tycho</groupId>
|
<plugin>
|
||||||
<artifactId>tycho-surefire-plugin</artifactId>
|
<groupId>org.eclipse.tycho</groupId>
|
||||||
<version>${tycho-version}</version>
|
<artifactId>tycho-surefire-plugin</artifactId>
|
||||||
<configuration>
|
<version>${tycho-version}</version>
|
||||||
<testSuite>org.eclipse.tm.terminal.test</testSuite>
|
<configuration>
|
||||||
<testClass>org.eclipse.tm.terminal.test.AutomatedPluginTests</testClass>
|
<testSuite>org.eclipse.tm.terminal.test</testSuite>
|
||||||
<useUIHarness>false</useUIHarness>
|
<testClass>org.eclipse.tm.terminal.test.AutomatedPluginTests</testClass>
|
||||||
<useUIThread>false</useUIThread>
|
<useUIHarness>false</useUIHarness>
|
||||||
<testFailureIgnore>true</testFailureIgnore>
|
<useUIThread>false</useUIThread>
|
||||||
<product>org.eclipse.sdk.ide</product>
|
<testFailureIgnore>true</testFailureIgnore>
|
||||||
</configuration>
|
<product>org.eclipse.sdk.ide</product>
|
||||||
</plugin>
|
</configuration>
|
||||||
</plugins>
|
</plugin>
|
||||||
</build>
|
</plugins>
|
||||||
|
</build>
|
||||||
</project>
|
</project>
|
||||||
|
|
1
plugins/org.eclipse.tm.terminal.view.core/.gitignore
vendored
Normal file
1
plugins/org.eclipse.tm.terminal.view.core/.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
/bin/
|
1
plugins/org.eclipse.tm.terminal.view.core/.options
Normal file
1
plugins/org.eclipse.tm.terminal.view.core/.options
Normal file
|
@ -0,0 +1 @@
|
||||||
|
org.eclipse.tm.terminal.view.core/debugmode = 0
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<projectDescription>
|
<projectDescription>
|
||||||
<name>org.eclipse.tcf.te.core.terminals</name>
|
<name>org.eclipse.tm.terminal.view.core</name>
|
||||||
<comment></comment>
|
<comment></comment>
|
||||||
<projects>
|
<projects>
|
||||||
</projects>
|
</projects>
|
|
@ -0,0 +1,21 @@
|
||||||
|
Manifest-Version: 1.0
|
||||||
|
Bundle-ManifestVersion: 2
|
||||||
|
Bundle-Name: %pluginName
|
||||||
|
Bundle-SymbolicName: org.eclipse.tm.terminal.view.core;singleton:=true
|
||||||
|
Bundle-Version: 4.0.0.qualifier
|
||||||
|
Bundle-Activator: org.eclipse.tm.terminal.view.core.activator.CoreBundleActivator
|
||||||
|
Bundle-Vendor: %providerName
|
||||||
|
Require-Bundle: org.eclipse.core.expressions;bundle-version="3.4.400",
|
||||||
|
org.eclipse.core.runtime;bundle-version="3.8.0"
|
||||||
|
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
|
||||||
|
Bundle-ActivationPolicy: lazy
|
||||||
|
Bundle-Localization: plugin
|
||||||
|
Export-Package: org.eclipse.tm.terminal.view.core,
|
||||||
|
org.eclipse.tm.terminal.view.core.activator;x-internal:=true,
|
||||||
|
org.eclipse.tm.terminal.view.core.interfaces,
|
||||||
|
org.eclipse.tm.terminal.view.core.interfaces.constants,
|
||||||
|
org.eclipse.tm.terminal.view.core.internal;x-internal:=true,
|
||||||
|
org.eclipse.tm.terminal.view.core.nls;x-internal:=true,
|
||||||
|
org.eclipse.tm.terminal.view.core.preferences,
|
||||||
|
org.eclipse.tm.terminal.view.core.tracing,
|
||||||
|
org.eclipse.tm.terminal.view.core.utils
|
|
@ -11,7 +11,7 @@ aboutText=%blurb
|
||||||
# needed for primary features only
|
# needed for primary features only
|
||||||
|
|
||||||
# Property "featureImage" contains path to feature image (32x32)
|
# Property "featureImage" contains path to feature image (32x32)
|
||||||
featureImage=te-feature.png
|
featureImage=tm32.png
|
||||||
|
|
||||||
# Property "aboutImage" contains path to product image (500x330 or 115x164)
|
# Property "aboutImage" contains path to product image (500x330 or 115x164)
|
||||||
# needed for primary features only
|
# needed for primary features only
|
|
@ -16,7 +16,7 @@
|
||||||
#
|
#
|
||||||
# Do not translate any values surrounded by {}
|
# Do not translate any values surrounded by {}
|
||||||
|
|
||||||
blurb=TCF Terminals\n\
|
blurb=TM Terminal\n\
|
||||||
\n\
|
\n\
|
||||||
Version: {featureVersion}\n\
|
Version: {featureVersion}\n\
|
||||||
\n\
|
\n\
|
|
@ -17,4 +17,4 @@ bin.includes = META-INF/,\
|
||||||
about.ini,\
|
about.ini,\
|
||||||
about.mappings,\
|
about.mappings,\
|
||||||
about.properties,\
|
about.properties,\
|
||||||
te-feature.png
|
tm32.png
|
|
@ -8,7 +8,7 @@
|
||||||
# Wind River Systems - initial API and implementation
|
# Wind River Systems - initial API and implementation
|
||||||
##################################################################################
|
##################################################################################
|
||||||
|
|
||||||
pluginName = Terminals Core
|
pluginName = Terminal View Core
|
||||||
providerName = Eclipse.org - Target Explorer
|
providerName = Eclipse.org - Target Explorer
|
||||||
|
|
||||||
ExtensionPoint.contextPropertiesProviders = Terminal Context Properties Providers
|
ExtensionPoint.contextPropertiesProviders = Terminal Context Properties Providers
|
|
@ -6,9 +6,9 @@
|
||||||
<!-- Property tester contributions -->
|
<!-- Property tester contributions -->
|
||||||
<extension point="org.eclipse.core.expressions.propertyTesters">
|
<extension point="org.eclipse.core.expressions.propertyTesters">
|
||||||
<propertyTester
|
<propertyTester
|
||||||
class="org.eclipse.tcf.te.core.terminals.internal.PropertyTester"
|
class="org.eclipse.tm.terminal.view.core.internal.PropertyTester"
|
||||||
id="org.eclipse.tcf.te.core.terminals.PropertyTester"
|
id="org.eclipse.tm.terminal.view.core.PropertyTester"
|
||||||
namespace="org.eclipse.tcf.te.core.terminals"
|
namespace="org.eclipse.tm.terminal.view.core"
|
||||||
properties="hasContextPropertiesProvider"
|
properties="hasContextPropertiesProvider"
|
||||||
type="java.lang.Object">
|
type="java.lang.Object">
|
||||||
</propertyTester>
|
</propertyTester>
|
|
@ -5,13 +5,13 @@
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.eclipse.tcf</groupId>
|
<groupId>org.eclipse.tm.terminal</groupId>
|
||||||
<artifactId>org.eclipse.tcf.maven-build</artifactId>
|
<artifactId>org.eclipse.tm.terminal.maven-build</artifactId>
|
||||||
<version>1.3.0-SNAPSHOT</version>
|
<version>4.0.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
<relativePath>../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<version>1.3.0.qualifier</version>
|
<version>4.0.0.qualifier</version>
|
||||||
<artifactId>org.eclipse.tcf.te.core.terminals</artifactId>
|
<artifactId>org.eclipse.tm.terminal.view.core</artifactId>
|
||||||
<packaging>eclipse-plugin</packaging>
|
<packaging>eclipse-plugin</packaging>
|
||||||
</project>
|
</project>
|
|
@ -1,15 +1,14 @@
|
||||||
<?xml version='1.0' encoding='UTF-8'?>
|
<?xml version='1.0' encoding='UTF-8'?>
|
||||||
<!-- Schema file written by PDE -->
|
<!-- Schema file written by PDE -->
|
||||||
<schema targetNamespace="org.eclipse.tcf.te.core.terminals" xmlns="http://www.w3.org/2001/XMLSchema">
|
<schema targetNamespace="org.eclipse.tm.terminal.view.core" xmlns="http://www.w3.org/2001/XMLSchema">
|
||||||
<annotation>
|
<annotation>
|
||||||
<appinfo>
|
<appinfo>
|
||||||
<meta.schema plugin="org.eclipse.tcf.te.core.terminals" id="contextPropertiesProviders" name="Terminal Context Properties Providers"/>
|
<meta.schema plugin="org.eclipse.tm.terminal.view.core" id="contextPropertiesProviders" name="Terminal Context Properties Providers"/>
|
||||||
</appinfo>
|
</appinfo>
|
||||||
<documentation>
|
<documentation>
|
||||||
This extension point is used to contribute terminal context properties providers. The context properties provider allows querying desired properties for a given context.
|
This extension point is used to contribute terminal context properties providers. The context properties provider allows querying desired properties for a given context.
|
||||||
<p>
|
<p>
|
||||||
The terminal context is passed in as default variable to the enablement expression evaluation. The terminal context is not expected to be iteratable or countable.
|
The terminal context is passed in as default variable to the enablement expression evaluation. The terminal context is not expected to be iteratable or countable.
|
||||||
|
|
||||||
</documentation>
|
</documentation>
|
||||||
</annotation>
|
</annotation>
|
||||||
|
|
||||||
|
@ -65,10 +64,10 @@ The terminal context is passed in as default variable to the enablement expressi
|
||||||
<attribute name="class" type="string">
|
<attribute name="class" type="string">
|
||||||
<annotation>
|
<annotation>
|
||||||
<documentation>
|
<documentation>
|
||||||
The class that implements <code>org.eclipse.tcf.te.core.terminals.interfaces.ITerminalContextPropertiesProvider</code>.
|
The class that implements <code>org.eclipse.tm.terminal.view.core.interfaces.ITerminalContextPropertiesProvider</code>.
|
||||||
</documentation>
|
</documentation>
|
||||||
<appinfo>
|
<appinfo>
|
||||||
<meta.attribute kind="java" basedOn=":org.eclipse.tcf.te.core.terminals.interfaces.ITerminalContextPropertiesProvider"/>
|
<meta.attribute kind="java" basedOn=":org.eclipse.tm.terminal.view.core.interfaces.ITerminalContextPropertiesProvider"/>
|
||||||
</appinfo>
|
</appinfo>
|
||||||
</annotation>
|
</annotation>
|
||||||
</attribute>
|
</attribute>
|
||||||
|
@ -80,7 +79,7 @@ The terminal context is passed in as default variable to the enablement expressi
|
||||||
<meta.section type="since"/>
|
<meta.section type="since"/>
|
||||||
</appinfo>
|
</appinfo>
|
||||||
<documentation>
|
<documentation>
|
||||||
Target Explorer 1.3.0
|
TM Terminal 4.0.0
|
||||||
</documentation>
|
</documentation>
|
||||||
</annotation>
|
</annotation>
|
||||||
|
|
||||||
|
@ -92,7 +91,7 @@ The terminal context is passed in as default variable to the enablement expressi
|
||||||
This is an example of the extension point usage:
|
This is an example of the extension point usage:
|
||||||
<p>
|
<p>
|
||||||
<pre><code>
|
<pre><code>
|
||||||
<extension point="org.eclipse.tcf.te.core.terminals.contextPropertiesProviders">
|
<extension point="org.eclipse.tm.terminal.view.core.contextPropertiesProviders">
|
||||||
<contextPropertiesProvider
|
<contextPropertiesProvider
|
||||||
class="com.my.contribution.MyContextPropertiesProviderImpl">
|
class="com.my.contribution.MyContextPropertiesProviderImpl">
|
||||||
</contextPropertiesProvider>
|
</contextPropertiesProvider>
|
||||||
|
@ -106,7 +105,7 @@ The terminal context is passed in as default variable to the enablement expressi
|
||||||
<meta.section type="apiinfo"/>
|
<meta.section type="apiinfo"/>
|
||||||
</appinfo>
|
</appinfo>
|
||||||
<documentation>
|
<documentation>
|
||||||
The provider of a terminal context properties provider must implement <samp>org.eclipse.tcf.te.core.terminals.interfaces.ITerminalContextPropertiesProvider</samp>.
|
The provider of a terminal context properties provider must implement <samp>org.eclipse.tm.terminal.view.core.interfaces.ITerminalContextPropertiesProvider</samp>.
|
||||||
</documentation>
|
</documentation>
|
||||||
</annotation>
|
</annotation>
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* Wind River Systems - initial API and implementation
|
* Wind River Systems - initial API and implementation
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.tcf.te.core.terminals;
|
package org.eclipse.tm.terminal.view.core;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
@ -26,9 +26,9 @@ import org.eclipse.core.runtime.IStatus;
|
||||||
import org.eclipse.core.runtime.Platform;
|
import org.eclipse.core.runtime.Platform;
|
||||||
import org.eclipse.core.runtime.Status;
|
import org.eclipse.core.runtime.Status;
|
||||||
import org.eclipse.osgi.util.NLS;
|
import org.eclipse.osgi.util.NLS;
|
||||||
import org.eclipse.tcf.te.core.terminals.activator.CoreBundleActivator;
|
import org.eclipse.tm.terminal.view.core.activator.CoreBundleActivator;
|
||||||
import org.eclipse.tcf.te.core.terminals.interfaces.ITerminalContextPropertiesProvider;
|
import org.eclipse.tm.terminal.view.core.interfaces.ITerminalContextPropertiesProvider;
|
||||||
import org.eclipse.tcf.te.core.terminals.nls.Messages;
|
import org.eclipse.tm.terminal.view.core.nls.Messages;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Terminal context properties provider factory.
|
* Terminal context properties provider factory.
|
||||||
|
@ -178,7 +178,7 @@ public final class TerminalContextPropertiesProviderFactory {
|
||||||
* Load the terminal context properties provider contributions.
|
* Load the terminal context properties provider contributions.
|
||||||
*/
|
*/
|
||||||
private static void loadContributions() {
|
private static void loadContributions() {
|
||||||
IExtensionPoint ep = Platform.getExtensionRegistry().getExtensionPoint("org.eclipse.tcf.te.core.terminals.contextPropertiesProviders"); //$NON-NLS-1$
|
IExtensionPoint ep = Platform.getExtensionRegistry().getExtensionPoint("org.eclipse.tm.terminal.view.core.contextPropertiesProviders"); //$NON-NLS-1$
|
||||||
if (ep != null) {
|
if (ep != null) {
|
||||||
IExtension[] extensions = ep.getExtensions();
|
IExtension[] extensions = ep.getExtensions();
|
||||||
if (extensions != null) {
|
if (extensions != null) {
|
|
@ -7,14 +7,14 @@
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* Wind River Systems - initial API and implementation
|
* Wind River Systems - initial API and implementation
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.tcf.te.core.terminals;
|
package org.eclipse.tm.terminal.view.core;
|
||||||
|
|
||||||
import org.eclipse.core.runtime.IStatus;
|
import org.eclipse.core.runtime.IStatus;
|
||||||
import org.eclipse.core.runtime.Platform;
|
import org.eclipse.core.runtime.Platform;
|
||||||
import org.eclipse.core.runtime.Status;
|
import org.eclipse.core.runtime.Status;
|
||||||
import org.eclipse.tcf.te.core.terminals.activator.CoreBundleActivator;
|
import org.eclipse.tm.terminal.view.core.activator.CoreBundleActivator;
|
||||||
import org.eclipse.tcf.te.core.terminals.interfaces.ITerminalService;
|
import org.eclipse.tm.terminal.view.core.interfaces.ITerminalService;
|
||||||
import org.eclipse.tcf.te.core.terminals.nls.Messages;
|
import org.eclipse.tm.terminal.view.core.nls.Messages;
|
||||||
import org.osgi.framework.Bundle;
|
import org.osgi.framework.Bundle;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -27,11 +27,11 @@ public final class TerminalServiceFactory {
|
||||||
|
|
||||||
static {
|
static {
|
||||||
// Tries to instantiate the terminal service implementation
|
// Tries to instantiate the terminal service implementation
|
||||||
// from the o.e.tcf.te.ui.terminals bundle
|
// from the o.e.tm.terminal.view.ui bundle
|
||||||
Bundle bundle = Platform.getBundle("org.eclipse.tcf.te.ui.terminals"); //$NON-NLS-1$
|
Bundle bundle = Platform.getBundle("org.eclipse.tm.terminal.view.ui"); //$NON-NLS-1$
|
||||||
if (bundle != null && bundle.getState() != Bundle.UNINSTALLED && bundle.getState() != Bundle.STOPPING) {
|
if (bundle != null && bundle.getState() != Bundle.UNINSTALLED && bundle.getState() != Bundle.STOPPING) {
|
||||||
try {
|
try {
|
||||||
Class<?> clazz = bundle.loadClass("org.eclipse.tcf.te.ui.terminals.services.TerminalService"); //$NON-NLS-1$
|
Class<?> clazz = bundle.loadClass("org.eclipse.tm.terminal.view.ui.services.TerminalService"); //$NON-NLS-1$
|
||||||
instance = (ITerminalService) clazz.newInstance();
|
instance = (ITerminalService) clazz.newInstance();
|
||||||
}
|
}
|
||||||
catch (Exception e) {
|
catch (Exception e) {
|
|
@ -7,7 +7,7 @@
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* Wind River Systems - initial API and implementation
|
* Wind River Systems - initial API and implementation
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.tcf.te.core.terminals.activator;
|
package org.eclipse.tm.terminal.view.core.activator;
|
||||||
|
|
||||||
import org.osgi.framework.BundleActivator;
|
import org.osgi.framework.BundleActivator;
|
||||||
import org.osgi.framework.BundleContext;
|
import org.osgi.framework.BundleContext;
|
||||||
|
@ -29,13 +29,13 @@ public class CoreBundleActivator implements BundleActivator {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Convenience method which returns the unique identifier of this plugin.
|
* Convenience method which returns the unique identifier of this plug-in.
|
||||||
*/
|
*/
|
||||||
public static String getUniqueIdentifier() {
|
public static String getUniqueIdentifier() {
|
||||||
if (getContext() != null && getContext().getBundle() != null) {
|
if (getContext() != null && getContext().getBundle() != null) {
|
||||||
return getContext().getBundle().getSymbolicName();
|
return getContext().getBundle().getSymbolicName();
|
||||||
}
|
}
|
||||||
return "org.eclipse.tcf.te.core.terminals"; //$NON-NLS-1$
|
return "org.eclipse.tm.terminal.view.core"; //$NON-NLS-1$
|
||||||
}
|
}
|
||||||
|
|
||||||
/* (non-Javadoc)
|
/* (non-Javadoc)
|
|
@ -7,7 +7,7 @@
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* Wind River Systems - initial API and implementation
|
* Wind River Systems - initial API and implementation
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.tcf.te.core.terminals.interfaces;
|
package org.eclipse.tm.terminal.view.core.interfaces;
|
||||||
|
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* Wind River Systems - initial API and implementation
|
* Wind River Systems - initial API and implementation
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.tcf.te.core.terminals.interfaces;
|
package org.eclipse.tm.terminal.view.core.interfaces;
|
||||||
|
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* Wind River Systems - initial API and implementation
|
* Wind River Systems - initial API and implementation
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.tcf.te.core.terminals.interfaces;
|
package org.eclipse.tm.terminal.view.core.interfaces;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* An interface to be implemented by listeners who want to listen
|
* An interface to be implemented by listeners who want to listen
|
|
@ -7,7 +7,7 @@
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* Wind River Systems - initial API and implementation
|
* Wind River Systems - initial API and implementation
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.tcf.te.core.terminals.interfaces;
|
package org.eclipse.tm.terminal.view.core.interfaces;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Listener to implement and to register to get notified about
|
* Listener to implement and to register to get notified about
|
|
@ -7,7 +7,7 @@
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* Wind River Systems - initial API and implementation
|
* Wind River Systems - initial API and implementation
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.tcf.te.core.terminals.interfaces.constants;
|
package org.eclipse.tm.terminal.view.core.interfaces.constants;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Defines the terminal context properties constants.
|
* Defines the terminal context properties constants.
|
|
@ -7,12 +7,10 @@
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* Wind River Systems - initial API and implementation
|
* Wind River Systems - initial API and implementation
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.tcf.te.core.terminals.interfaces.constants;
|
package org.eclipse.tm.terminal.view.core.interfaces.constants;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Line separator constants.
|
* Line separator constants.
|
||||||
* <p>
|
|
||||||
* Copied from <code>org.eclipse.tcf.internal.terminal.local.ILocalTerminalSettings</code>.
|
|
||||||
*/
|
*/
|
||||||
public interface ILineSeparatorConstants {
|
public interface ILineSeparatorConstants {
|
||||||
|
|
|
@ -8,9 +8,9 @@
|
||||||
* Wind River Systems - initial API and implementation
|
* Wind River Systems - initial API and implementation
|
||||||
* Max Weninger (Wind River) - [361352] [TERMINALS][SSH] Add SSH terminal support
|
* Max Weninger (Wind River) - [361352] [TERMINALS][SSH] Add SSH terminal support
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.tcf.te.core.terminals.interfaces.constants;
|
package org.eclipse.tm.terminal.view.core.interfaces.constants;
|
||||||
|
|
||||||
import org.eclipse.tcf.te.core.terminals.interfaces.ITerminalServiceOutputStreamMonitorListener;
|
import org.eclipse.tm.terminal.view.core.interfaces.ITerminalServiceOutputStreamMonitorListener;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
|
@ -1,5 +1,5 @@
|
||||||
/*******************************************************************************
|
/*******************************************************************************
|
||||||
* Copyright (c) 2011, 2014 Wind River Systems, Inc. and others. All rights reserved.
|
* Copyright (c) 2011 - 2015 Wind River Systems, Inc. and others. All rights reserved.
|
||||||
* This program and the accompanying materials are made available under the terms
|
* 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
|
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
* available at http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
@ -7,9 +7,9 @@
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* Wind River Systems - initial API and implementation
|
* Wind River Systems - initial API and implementation
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.tcf.te.core.terminals.internal;
|
package org.eclipse.tm.terminal.view.core.internal;
|
||||||
|
|
||||||
import org.eclipse.tcf.te.core.terminals.TerminalContextPropertiesProviderFactory;
|
import org.eclipse.tm.terminal.view.core.TerminalContextPropertiesProviderFactory;
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* Wind River Systems - initial API and implementation
|
* Wind River Systems - initial API and implementation
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.tcf.te.core.terminals.nls;
|
package org.eclipse.tm.terminal.view.core.nls;
|
||||||
|
|
||||||
import org.eclipse.osgi.util.NLS;
|
import org.eclipse.osgi.util.NLS;
|
||||||
|
|
||||||
|
@ -17,7 +17,7 @@ import org.eclipse.osgi.util.NLS;
|
||||||
public class Messages extends NLS {
|
public class Messages extends NLS {
|
||||||
|
|
||||||
// The plug-in resource bundle name
|
// The plug-in resource bundle name
|
||||||
private static final String BUNDLE_NAME = "org.eclipse.tcf.te.core.terminals.nls.Messages"; //$NON-NLS-1$
|
private static final String BUNDLE_NAME = "org.eclipse.tm.terminal.view.core.nls.Messages"; //$NON-NLS-1$
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Static constructor.
|
* Static constructor.
|
|
@ -7,7 +7,7 @@
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* Wind River Systems - initial API and implementation
|
* Wind River Systems - initial API and implementation
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.tcf.te.core.terminals.preferences;
|
package org.eclipse.tm.terminal.view.core.preferences;
|
||||||
|
|
||||||
import java.io.OutputStream;
|
import java.io.OutputStream;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
|
@ -7,12 +7,12 @@
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* Wind River Systems - initial API and implementation
|
* Wind River Systems - initial API and implementation
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.tcf.te.core.terminals.tracing;
|
package org.eclipse.tm.terminal.view.core.tracing;
|
||||||
|
|
||||||
import org.eclipse.core.runtime.Assert;
|
import org.eclipse.core.runtime.Assert;
|
||||||
import org.eclipse.core.runtime.IStatus;
|
import org.eclipse.core.runtime.IStatus;
|
||||||
import org.eclipse.core.runtime.Platform;
|
import org.eclipse.core.runtime.Platform;
|
||||||
import org.eclipse.tcf.te.core.terminals.activator.CoreBundleActivator;
|
import org.eclipse.tm.terminal.view.core.activator.CoreBundleActivator;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Helper class to handle tracing using the platforms debug capabilities.
|
* Helper class to handle tracing using the platforms debug capabilities.
|
|
@ -7,7 +7,7 @@
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* Wind River Systems - initial API and implementation
|
* Wind River Systems - initial API and implementation
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.tcf.te.core.terminals.utils;
|
package org.eclipse.tm.terminal.view.core.utils;
|
||||||
|
|
||||||
import java.io.BufferedReader;
|
import java.io.BufferedReader;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
BIN
plugins/org.eclipse.tm.terminal.view.core/tm32.png
Normal file
BIN
plugins/org.eclipse.tm.terminal.view.core/tm32.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.2 KiB |
1
plugins/org.eclipse.tm.terminal.view.ui.local/.gitignore
vendored
Normal file
1
plugins/org.eclipse.tm.terminal.view.ui.local/.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
/bin/
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue