mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-23 22:52:11 +02:00
Releng: Rework maven build files to make them easier to read and to maintain
This commit is contained in:
parent
f25615b5f1
commit
26d34e47ff
118 changed files with 1142 additions and 2858 deletions
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)</name>
|
||||||
|
<comment></comment>
|
||||||
|
<projects>
|
||||||
|
</projects>
|
||||||
|
<buildSpec>
|
||||||
|
</buildSpec>
|
||||||
|
<natures>
|
||||||
|
</natures>
|
||||||
|
</projectDescription>
|
68
admin/findbugs-exclude.xml
Normal file
68
admin/findbugs-exclude.xml
Normal file
|
@ -0,0 +1,68 @@
|
||||||
|
<FindBugsFilter>
|
||||||
|
<!-- 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"/>
|
||||||
|
</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</groupId>
|
||||||
|
<artifactId>org.eclipse.tm.maven-config</artifactId>
|
||||||
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
|
<relativePath>pom-config.xml</relativePath>
|
||||||
|
</parent>
|
||||||
|
|
||||||
|
<groupId>org.eclipse.tm</groupId>
|
||||||
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
|
<packaging>pom</packaging>
|
||||||
|
<name>Target Management, 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>
|
387
admin/pom-config.xml
Normal file
387
admin/pom-config.xml
Normal file
|
@ -0,0 +1,387 @@
|
||||||
|
<?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</groupId>
|
||||||
|
<artifactId>org.eclipse.tm.maven-config</artifactId>
|
||||||
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
|
<packaging>pom</packaging>
|
||||||
|
<name>Target Management, 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.0.5</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.git</tycho.scmUrl>
|
||||||
|
|
||||||
|
<tm-stream>luna</tm-stream>
|
||||||
|
<tm-zipfile>${project.artifactId}.zip</tm-zipfile>
|
||||||
|
<tm-install>/home/data/httpd/download.eclipse.org/tm/builds/${tm-stream}/nightly</tm-install>
|
||||||
|
<sdk-version>4.4</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}</platform-site>
|
||||||
|
<orbit-site>http://download.eclipse.org/tools/orbit/downloads/drops/R20150124073747/repository/</orbit-site>
|
||||||
|
<cdt-site>http://download.eclipse.org/tools/cdt/releases/8.4</cdt-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>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>
|
||||||
|
<cdt-site>http://download.eclipse.org/tools/cdt/releases/kepler</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>
|
||||||
|
<filters>
|
||||||
|
<filter>
|
||||||
|
<type>eclipse-plugin</type>
|
||||||
|
<id>org.apache.commons.net</id>
|
||||||
|
<restrictTo>
|
||||||
|
<versionRange>[3.2,3.3)</versionRange>
|
||||||
|
</restrictTo>
|
||||||
|
</filter>
|
||||||
|
<filter>
|
||||||
|
<type>eclipse-plugin</type>
|
||||||
|
<id>org.apache.commons.net.source</id>
|
||||||
|
<restrictTo>
|
||||||
|
<versionRange>[3.2,3.3)</versionRange>
|
||||||
|
</restrictTo>
|
||||||
|
</filter>
|
||||||
|
</filters>
|
||||||
|
</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/tcf/builds/${tcf-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>
|
45
admin/target-defs/eclipse-3.8.2-juno.target
Normal file
45
admin/target-defs/eclipse-3.8.2-juno.target
Normal file
|
@ -0,0 +1,45 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<?pde version="3.8"?><target name="Eclipse 3.8.x (Juno)" sequenceNumber="35">
|
||||||
|
<locations>
|
||||||
|
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="slicer" includeSource="true" type="InstallableUnit">
|
||||||
|
<unit id="com.google.gson.source" version="2.2.4.v201311231704"/>
|
||||||
|
<unit id="com.google.gson" version="2.2.4.v201311231704"/>
|
||||||
|
<repository location="http://download.eclipse.org/tools/orbit/downloads/drops/R20140525021250/repository"/>
|
||||||
|
</location>
|
||||||
|
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="slicer" includeSource="true" type="InstallableUnit">
|
||||||
|
<unit id="org.apache.log4j.source" version="1.2.15.v201012070815"/>
|
||||||
|
<unit id="org.hamcrest.core" version="1.3.0.v201303031735"/>
|
||||||
|
<unit id="org.apache.log4j" version="1.2.15.v201012070815"/>
|
||||||
|
<unit id="org.hamcrest.library.source" version="1.3.0.v201305281000"/>
|
||||||
|
<unit id="org.hamcrest.library" version="1.3.0.v201305281000"/>
|
||||||
|
<unit id="org.eclipse.swtbot.ide.feature.group" version="2.2.1.201402241301"/>
|
||||||
|
<unit id="org.eclipse.swtbot.eclipse.feature.group" version="2.2.1.201402241301"/>
|
||||||
|
<unit id="org.eclipse.swtbot.feature.group" version="2.2.1.201402241301"/>
|
||||||
|
<unit id="org.eclipse.swtbot.forms.feature.group" version="2.2.1.201402241301"/>
|
||||||
|
<unit id="org.hamcrest.core.source" version="1.3.0.v201303031735"/>
|
||||||
|
<repository location="http://download.eclipse.org/technology/swtbot/releases/latest"/>
|
||||||
|
</location>
|
||||||
|
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="slicer" includeSource="true" type="InstallableUnit">
|
||||||
|
<unit id="org.eclipse.cdt.sdk.feature.group" version="8.3.0.201402142303"/>
|
||||||
|
<repository location="http://download.eclipse.org/tools/cdt/releases/kepler"/>
|
||||||
|
</location>
|
||||||
|
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="slicer" includeSource="true" type="InstallableUnit">
|
||||||
|
<unit id="gnu.io.rxtx.sdk.feature.group" version="2.1.7.4_v20071016-417C7DP1Bh_eEaQJBrHBHg"/>
|
||||||
|
<unit id="gnu.io.rxtx.feature.group" version="2.1.7.4_v20071016-7B57e7UAXMAAqGAGf"/>
|
||||||
|
<repository location="http://archive.eclipse.org/tm/updates/rxtx"/>
|
||||||
|
</location>
|
||||||
|
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="slicer" includeSource="true" type="InstallableUnit">
|
||||||
|
<unit id="org.eclipse.platform.sdk" version="3.8.2.M20130131-0800"/>
|
||||||
|
<unit id="org.eclipse.test.feature.group" version="3.5.100.v20120528-1717-7R7dBhBgLiCViQnG8ITHM73701A1"/>
|
||||||
|
<repository location="http://download.eclipse.org/eclipse/updates/3.8"/>
|
||||||
|
</location>
|
||||||
|
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="slicer" includeSource="true" type="InstallableUnit">
|
||||||
|
<unit id="org.eclipse.rse.feature.group" version="3.4.1.201302122026"/>
|
||||||
|
<repository location="http://download.eclipse.org/releases/juno"/>
|
||||||
|
</location>
|
||||||
|
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="slicer" includeSource="true" type="InstallableUnit">
|
||||||
|
<unit id="org.eclipse.license.feature.group" version="1.0.1.v20140414-1359"/>
|
||||||
|
<repository location="http://download.eclipse.org/cbi/updates/license"/>
|
||||||
|
</location>
|
||||||
|
</locations>
|
||||||
|
</target>
|
46
admin/target-defs/eclipse-4.3.x-kepler.target
Normal file
46
admin/target-defs/eclipse-4.3.x-kepler.target
Normal file
|
@ -0,0 +1,46 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<?pde version="3.8"?><target name="Eclipse 4.3.x (Kepler)" sequenceNumber="33">
|
||||||
|
<locations>
|
||||||
|
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="slicer" includeSource="true" type="InstallableUnit">
|
||||||
|
<unit id="org.eclipse.cdt.sdk.feature.group" version="8.3.0.201402142303"/>
|
||||||
|
<repository location="http://download.eclipse.org/tools/cdt/releases/kepler"/>
|
||||||
|
</location>
|
||||||
|
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="slicer" includeSource="true" type="InstallableUnit">
|
||||||
|
<unit id="com.google.gson.source" version="2.2.4.v201311231704"/>
|
||||||
|
<unit id="com.google.gson" version="2.2.4.v201311231704"/>
|
||||||
|
<repository location="http://download.eclipse.org/tools/orbit/downloads/drops/R20140525021250/repository"/>
|
||||||
|
</location>
|
||||||
|
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="slicer" includeSource="true" type="InstallableUnit">
|
||||||
|
<unit id="org.apache.log4j.source" version="1.2.15.v201012070815"/>
|
||||||
|
<unit id="org.hamcrest.core" version="1.3.0.v201303031735"/>
|
||||||
|
<unit id="org.apache.log4j" version="1.2.15.v201012070815"/>
|
||||||
|
<unit id="org.hamcrest.library.source" version="1.3.0.v201305281000"/>
|
||||||
|
<unit id="org.hamcrest.library" version="1.3.0.v201305281000"/>
|
||||||
|
<unit id="org.eclipse.swtbot.ide.feature.group" version="2.2.1.201402241301"/>
|
||||||
|
<unit id="org.eclipse.swtbot.eclipse.feature.group" version="2.2.1.201402241301"/>
|
||||||
|
<unit id="org.eclipse.swtbot.feature.group" version="2.2.1.201402241301"/>
|
||||||
|
<unit id="org.eclipse.swtbot.forms.feature.group" version="2.2.1.201402241301"/>
|
||||||
|
<unit id="org.hamcrest.core.source" version="1.3.0.v201303031735"/>
|
||||||
|
<repository location="http://download.eclipse.org/technology/swtbot/releases/latest"/>
|
||||||
|
</location>
|
||||||
|
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="slicer" includeSource="true" type="InstallableUnit">
|
||||||
|
<unit id="org.eclipse.platform.sdk" version="4.3.2.M20140221-1700"/>
|
||||||
|
<unit id="org.eclipse.test.feature.group" version="3.6.0.v20140203-1326"/>
|
||||||
|
<repository location="http://download.eclipse.org/eclipse/updates/4.3"/>
|
||||||
|
</location>
|
||||||
|
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="slicer" includeSource="true" type="InstallableUnit">
|
||||||
|
<unit id="gnu.io.rxtx.sdk.feature.group" version="2.1.7.4_v20071016-417C7DP1Bh_eEaQJBrHBHg"/>
|
||||||
|
<unit id="gnu.io.rxtx.feature.group" version="2.1.7.4_v20071016-7B57e7UAXMAAqGAGf"/>
|
||||||
|
<repository location="http://archive.eclipse.org/tm/updates/rxtx"/>
|
||||||
|
</location>
|
||||||
|
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="slicer" includeSource="true" type="InstallableUnit">
|
||||||
|
<unit id="org.eclipse.rse.feature.group" version="3.5.0.201309112143"/>
|
||||||
|
<unit id="org.eclipse.emf.sdk.feature.group" version="2.9.2.v20140203-1126"/>
|
||||||
|
<repository location="http://download.eclipse.org/releases/kepler"/>
|
||||||
|
</location>
|
||||||
|
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="slicer" includeSource="true" type="InstallableUnit">
|
||||||
|
<unit id="org.eclipse.license.feature.group" version="1.0.1.v20140414-1359"/>
|
||||||
|
<repository location="http://download.eclipse.org/cbi/updates/license"/>
|
||||||
|
</location>
|
||||||
|
</locations>
|
||||||
|
</target>
|
45
admin/target-defs/eclipse-4.4.x-luna.target
Normal file
45
admin/target-defs/eclipse-4.4.x-luna.target
Normal file
|
@ -0,0 +1,45 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<?pde version="3.8"?><target name="Eclipse 4.4.x (Luna)" sequenceNumber="55">
|
||||||
|
<locations>
|
||||||
|
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="slicer" includeSource="true" type="InstallableUnit">
|
||||||
|
<unit id="org.apache.log4j.source" version="1.2.15.v201012070815"/>
|
||||||
|
<unit id="org.hamcrest.core" version="1.3.0.v201303031735"/>
|
||||||
|
<unit id="org.apache.log4j" version="1.2.15.v201012070815"/>
|
||||||
|
<unit id="org.hamcrest.library.source" version="1.3.0.v201305281000"/>
|
||||||
|
<unit id="org.hamcrest.library" version="1.3.0.v201305281000"/>
|
||||||
|
<unit id="org.eclipse.swtbot.ide.feature.group" version="2.2.1.201402241301"/>
|
||||||
|
<unit id="org.eclipse.swtbot.eclipse.feature.group" version="2.2.1.201402241301"/>
|
||||||
|
<unit id="org.eclipse.swtbot.feature.group" version="2.2.1.201402241301"/>
|
||||||
|
<unit id="org.eclipse.swtbot.forms.feature.group" version="2.2.1.201402241301"/>
|
||||||
|
<unit id="org.hamcrest.core.source" version="1.3.0.v201303031735"/>
|
||||||
|
<repository location="http://download.eclipse.org/technology/swtbot/releases/latest"/>
|
||||||
|
</location>
|
||||||
|
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="slicer" includeSource="true" type="InstallableUnit">
|
||||||
|
<unit id="org.eclipse.rse.feature.group" version="3.5.0.201406091451"/>
|
||||||
|
<unit id="org.eclipse.emf.sdk.feature.group" version="2.10.1.v20140901-1055"/>
|
||||||
|
<repository location="http://download.eclipse.org/releases/luna"/>
|
||||||
|
</location>
|
||||||
|
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="slicer" includeSource="true" type="InstallableUnit">
|
||||||
|
<unit id="org.eclipse.license.feature.group" version="1.0.1.v20140414-1359"/>
|
||||||
|
<repository location="http://download.eclipse.org/cbi/updates/license"/>
|
||||||
|
</location>
|
||||||
|
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="slicer" includeSource="true" type="InstallableUnit">
|
||||||
|
<unit id="com.google.gson.source" version="2.2.4.v201311231704"/>
|
||||||
|
<unit id="com.google.gson" version="2.2.4.v201311231704"/>
|
||||||
|
<repository location="http://download.eclipse.org/tools/orbit/downloads/drops/R20150124073747/repository"/>
|
||||||
|
</location>
|
||||||
|
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="slicer" includeSource="true" type="InstallableUnit">
|
||||||
|
<unit id="org.eclipse.cdt.sdk.feature.group" version="8.5.0.201409172108"/>
|
||||||
|
<repository location="http://download.eclipse.org/tools/cdt/releases/8.5"/>
|
||||||
|
</location>
|
||||||
|
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="slicer" includeSource="true" type="InstallableUnit">
|
||||||
|
<unit id="gnu.io.rxtx.sdk.feature.group" version="2.1.7.4_v20071016-417C7DP1Bh_eEaQJBrHBHg"/>
|
||||||
|
<repository location="http://archive.eclipse.org/tm/updates/rxtx"/>
|
||||||
|
</location>
|
||||||
|
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="slicer" includeSource="true" type="InstallableUnit">
|
||||||
|
<unit id="org.eclipse.sdk.ide" version="4.4.1.M20140925-0400"/>
|
||||||
|
<unit id="org.eclipse.test.feature.group" version="3.6.100.v20140528-1640"/>
|
||||||
|
<repository location="http://download.eclipse.org/eclipse/updates/4.4"/>
|
||||||
|
</location>
|
||||||
|
</locations>
|
||||||
|
</target>
|
437
pom.xml
437
pom.xml
|
@ -1,92 +1,26 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<!--
|
<project
|
||||||
Copyright (c) 2011, 2013 Eclipse contributors and others.
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
|
||||||
All rights reserved. This program and the accompanying materials
|
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
are made available under the terms of the Eclipse Public License v1.0
|
|
||||||
which accompanies this distribution, and is available at
|
|
||||||
http://www.eclipse.org/legal/epl-v10.html
|
|
||||||
|
|
||||||
Contributors:
|
|
||||||
Anna Dushistova(MontaVista) - copied from parent poms of Linux Tools and CDT projects
|
|
||||||
-->
|
|
||||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
<prerequisites>
|
<prerequisites>
|
||||||
<maven>3.0</maven>
|
<maven>3.0</maven>
|
||||||
</prerequisites>
|
</prerequisites>
|
||||||
|
|
||||||
|
<parent>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
|
<relativePath>admin/pom-build.xml</relativePath>
|
||||||
|
</parent>
|
||||||
|
|
||||||
|
<groupId>org.eclipse.tm</groupId>
|
||||||
|
<artifactId>tm-parent-old</artifactId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
<name> Target Management Parent</name>
|
<name>Target Management Parent</name>
|
||||||
<licenses>
|
|
||||||
<license>
|
|
||||||
<name>Eclipse Public License v1.0</name>
|
|
||||||
<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>
|
|
||||||
<properties>
|
|
||||||
<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>
|
|
||||||
<eclipse-jarsigner-version>1.0.5</eclipse-jarsigner-version>
|
|
||||||
<platform-version-name>luna</platform-version-name>
|
|
||||||
<tm-stream>luna</tm-stream>
|
|
||||||
<eclipse-site>http://download.eclipse.org/releases/${platform-version-name}</eclipse-site>
|
|
||||||
<orbit-site>http://download.eclipse.org/tools/orbit/downloads/drops/R20130827064939/repository</orbit-site>
|
|
||||||
<license-site>http://download.eclipse.org/cbi/updates/license</license-site>
|
|
||||||
<rxtx-version>1.0.0.7837QcJa5vE7MnhE77YA7AU3SWUlbntVZAnlDoIGojcQd</rxtx-version>
|
|
||||||
<!-- <rxtx-site>http://rxtx.qbang.org/eclipse</rxtx-site>-->
|
|
||||||
<rxtx-site>http://archive.eclipse.org/tm/updates/rxtx</rxtx-site>
|
|
||||||
<tycho.scmUrl>scm:git:git://git.eclipse.org/gitroot/tm/org.eclipse.tm.git</tycho.scmUrl>
|
|
||||||
</properties>
|
|
||||||
<pluginRepositories>
|
|
||||||
<pluginRepository>
|
|
||||||
<id>CBI</id>
|
|
||||||
<url>https://repo.eclipse.org/content/repositories/cbi-releases/</url>
|
|
||||||
</pluginRepository>
|
|
||||||
<pluginRepository>
|
|
||||||
<id>sonatype</id>
|
|
||||||
<url>https://oss.sonatype.org/content/groups/public/</url>
|
|
||||||
<snapshots>
|
|
||||||
<enabled>true</enabled>
|
|
||||||
</snapshots>
|
|
||||||
<releases>
|
|
||||||
<enabled>true</enabled>
|
|
||||||
</releases>
|
|
||||||
</pluginRepository>
|
|
||||||
</pluginRepositories>
|
|
||||||
<repositories>
|
|
||||||
<repository>
|
|
||||||
<id>license-feature</id>
|
|
||||||
<url>${license-site}</url>
|
|
||||||
<layout>p2</layout>
|
|
||||||
</repository>
|
|
||||||
<repository>
|
|
||||||
<id>orbit</id>
|
|
||||||
<layout>p2</layout>
|
|
||||||
<url>${orbit-site}</url>
|
|
||||||
</repository>
|
|
||||||
<repository>
|
|
||||||
<id>rxtx-${rxtx-version}</id>
|
|
||||||
<url>${rxtx-site}</url>
|
|
||||||
<layout>p2</layout>
|
|
||||||
</repository>
|
|
||||||
<!--<repository>
|
|
||||||
<id>repo.eclipse.org</id>
|
|
||||||
<url>https://repo.eclipse.org/content/repositories/releases/</url>
|
|
||||||
</repository>
|
|
||||||
-->
|
|
||||||
</repositories>
|
|
||||||
<modules>
|
<modules>
|
||||||
<module>rse/doc/org.eclipse.dstore.doc.isv</module>
|
<module>rse/doc/org.eclipse.dstore.doc.isv</module>
|
||||||
<module>rse/doc/org.eclipse.rse.doc.isv</module>
|
<module>rse/doc/org.eclipse.rse.doc.isv</module>
|
||||||
|
@ -113,7 +47,6 @@
|
||||||
<module>rse/features/org.eclipse.rse.terminals-feature</module>
|
<module>rse/features/org.eclipse.rse.terminals-feature</module>
|
||||||
<module>rse/features/org.eclipse.rse.terminals.source</module>
|
<module>rse/features/org.eclipse.rse.terminals.source</module>
|
||||||
<module>rse/features/org.eclipse.rse.useractions-feature</module>
|
<module>rse/features/org.eclipse.rse.useractions-feature</module>
|
||||||
<!-- <module>rse/features/org.eclipse.rse.useractions.sdk-feature</module> -->
|
|
||||||
<module>rse/plugins/org.eclipse.dstore.core</module>
|
<module>rse/plugins/org.eclipse.dstore.core</module>
|
||||||
<module>rse/plugins/org.eclipse.dstore.extra</module>
|
<module>rse/plugins/org.eclipse.dstore.extra</module>
|
||||||
<module>rse/plugins/org.eclipse.rse</module>
|
<module>rse/plugins/org.eclipse.rse</module>
|
||||||
|
@ -158,14 +91,14 @@
|
||||||
<module>rse/plugins/org.eclipse.rse.ui.capabilities</module>
|
<module>rse/plugins/org.eclipse.rse.ui.capabilities</module>
|
||||||
<module>rse/plugins/org.eclipse.rse.useractions</module>
|
<module>rse/plugins/org.eclipse.rse.useractions</module>
|
||||||
<!-- <module>rse/plugins/org.eclipse.rse.useractions.sdk</module> -->
|
<!-- <module>rse/plugins/org.eclipse.rse.useractions.sdk</module> -->
|
||||||
<module>releng/org.eclipse.tm.repo</module>
|
<!-- <module>rse/features/org.eclipse.rse.useractions.sdk-feature</module> -->
|
||||||
|
|
||||||
<module>terminal/plugins/org.eclipse.tm.terminal</module>
|
<module>terminal/plugins/org.eclipse.tm.terminal</module>
|
||||||
<module>terminal/plugins/org.eclipse.tm.terminal.serial</module>
|
<module>terminal/plugins/org.eclipse.tm.terminal.serial</module>
|
||||||
<module>terminal/plugins/org.eclipse.tm.terminal.ssh</module>
|
<module>terminal/plugins/org.eclipse.tm.terminal.ssh</module>
|
||||||
<module>terminal/plugins/org.eclipse.tm.terminal.telnet</module>
|
<module>terminal/plugins/org.eclipse.tm.terminal.telnet</module>
|
||||||
<module>terminal/plugins/org.eclipse.tm.terminal.view</module>
|
<module>terminal/plugins/org.eclipse.tm.terminal.view</module>
|
||||||
<module>terminal/plugins/org.eclipse.tm.terminal.local</module>
|
<module>terminal/plugins/org.eclipse.tm.terminal.local</module>
|
||||||
<module>terminal/plugins/org.eclipse.tm.terminal.test</module>
|
|
||||||
<module>terminal/features/org.eclipse.tm.terminal-feature</module>
|
<module>terminal/features/org.eclipse.tm.terminal-feature</module>
|
||||||
<module>terminal/features/org.eclipse.tm.terminal.serial-feature</module>
|
<module>terminal/features/org.eclipse.tm.terminal.serial-feature</module>
|
||||||
<module>terminal/features/org.eclipse.tm.terminal.ssh-feature</module>
|
<module>terminal/features/org.eclipse.tm.terminal.ssh-feature</module>
|
||||||
|
@ -175,282 +108,14 @@
|
||||||
<module>terminal/features/org.eclipse.tm.terminal.sdk-feature</module>
|
<module>terminal/features/org.eclipse.tm.terminal.sdk-feature</module>
|
||||||
<module>terminal/features/org.eclipse.tm.terminal.local-feature</module>
|
<module>terminal/features/org.eclipse.tm.terminal.local-feature</module>
|
||||||
<module>terminal/features/org.eclipse.tm.terminal.local.sdk-feature</module>
|
<module>terminal/features/org.eclipse.tm.terminal.local.sdk-feature</module>
|
||||||
<module>terminal/features/org.eclipse.tm.terminal.test-feature</module>
|
|
||||||
<module>wince/org.eclipse.rse.wince-feature</module>
|
<module>wince/org.eclipse.rse.wince-feature</module>
|
||||||
<module>wince/org.eclipse.rse.subsystems.wince</module>
|
<module>wince/org.eclipse.rse.subsystems.wince</module>
|
||||||
<module>wince/org.eclipse.tm.rapi</module>
|
<module>wince/org.eclipse.tm.rapi</module>
|
||||||
</modules>
|
|
||||||
<build>
|
|
||||||
<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>
|
|
||||||
</plugin>
|
|
||||||
<plugin>
|
|
||||||
<groupId>org.eclipse.tycho</groupId>
|
|
||||||
<artifactId>tycho-source-plugin</artifactId>
|
|
||||||
</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>linux</os>
|
|
||||||
<ws>gtk</ws>
|
|
||||||
<arch>ppc64</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>
|
|
||||||
<environment>
|
|
||||||
<os>aix</os>
|
|
||||||
<ws>gtk</ws>
|
|
||||||
<arch>ppc</arch>
|
|
||||||
</environment>
|
|
||||||
</environments>
|
|
||||||
<resolver>p2</resolver>
|
|
||||||
<ignoreTychoRepositories>true</ignoreTychoRepositories>
|
|
||||||
<includePackedArtifacts>true</includePackedArtifacts>
|
|
||||||
<pomDependencies>consider</pomDependencies>
|
|
||||||
<filters>
|
|
||||||
<filter>
|
|
||||||
<type>eclipse-plugin</type>
|
|
||||||
<id>org.apache.commons.net</id>
|
|
||||||
<restrictTo>
|
|
||||||
<versionRange>[3.2,3.3)</versionRange>
|
|
||||||
</restrictTo>
|
|
||||||
</filter>
|
|
||||||
<filter>
|
|
||||||
<type>eclipse-plugin</type>
|
|
||||||
<id>org.apache.commons.net.source</id>
|
|
||||||
<restrictTo>
|
|
||||||
<versionRange>[3.2,3.3)</versionRange>
|
|
||||||
</restrictTo>
|
|
||||||
</filter>
|
|
||||||
</filters>
|
|
||||||
</configuration>
|
|
||||||
</plugin>
|
|
||||||
<plugin>
|
|
||||||
<groupId>org.eclipse.tycho</groupId>
|
|
||||||
<artifactId>tycho-compiler-plugin</artifactId>
|
|
||||||
<version>${tycho-version}</version>
|
|
||||||
<configuration>
|
|
||||||
<encoding>UTF-8</encoding>
|
|
||||||
<source>1.5</source>
|
|
||||||
<target>1.5</target>
|
|
||||||
</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>
|
|
||||||
<sourceReferences>
|
|
||||||
<generate>true</generate>
|
|
||||||
</sourceReferences>
|
|
||||||
</configuration>
|
|
||||||
</plugin>
|
|
||||||
<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>
|
<module>releng/org.eclipse.tm.repo</module>
|
||||||
<baselineMode>warn</baselineMode>
|
</modules>
|
||||||
<baselineRepositories>
|
|
||||||
<repository>
|
|
||||||
<url>http://download.eclipse.org/tm/updates/3.4/</url>
|
|
||||||
</repository>
|
|
||||||
</baselineRepositories>
|
|
||||||
</configuration>
|
|
||||||
-->
|
|
||||||
<executions>
|
|
||||||
<execution>
|
|
||||||
<id>p2-metadata</id>
|
|
||||||
<phase>verify</phase>
|
|
||||||
<goals>
|
|
||||||
<goal>p2-metadata</goal>
|
|
||||||
</goals>
|
|
||||||
</execution>
|
|
||||||
</executions>
|
|
||||||
<configuration>
|
|
||||||
<defaultP2Metadata>false</defaultP2Metadata>
|
|
||||||
</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.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>
|
|
||||||
<plugin>
|
|
||||||
<groupId>org.eclipse.tycho</groupId>
|
|
||||||
<artifactId>tycho-versions-plugin</artifactId>
|
|
||||||
<version>${tycho-version}</version>
|
|
||||||
</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>
|
|
||||||
<!-- 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>
|
|
||||||
</plugins>
|
|
||||||
</pluginManagement>
|
|
||||||
</build>
|
|
||||||
<profiles>
|
<profiles>
|
||||||
<profile>
|
<profile>
|
||||||
<id>tests</id>
|
<id>tests</id>
|
||||||
|
@ -459,66 +124,10 @@
|
||||||
<module>rse/tests/org.eclipse.rse.tests-feature</module>
|
<module>rse/tests/org.eclipse.rse.tests-feature</module>
|
||||||
<module>rse/tests/org.eclipse.rse.tests.framework</module>
|
<module>rse/tests/org.eclipse.rse.tests.framework</module>
|
||||||
<module>rse/tests/org.eclipse.rse.tests.framework.examples</module>
|
<module>rse/tests/org.eclipse.rse.tests.framework.examples</module>
|
||||||
|
|
||||||
|
<module>terminal/plugins/org.eclipse.tm.terminal.test</module>
|
||||||
|
<module>terminal/features/org.eclipse.tm.terminal.test-feature</module>
|
||||||
</modules>
|
</modules>
|
||||||
</profile>
|
</profile>
|
||||||
<profile>
|
|
||||||
<id>platform-luna</id>
|
|
||||||
<activation>
|
|
||||||
<activeByDefault>true</activeByDefault>
|
|
||||||
<property>
|
|
||||||
<name>platform-version-name</name>
|
|
||||||
<value>luna</value>
|
|
||||||
</property>
|
|
||||||
</activation>
|
|
||||||
<properties>
|
|
||||||
<eclipse-site>http://download.eclipse.org/releases/luna</eclipse-site>
|
|
||||||
<platform-version>[4.4,)</platform-version>
|
|
||||||
<sdk-version>4.4</sdk-version>
|
|
||||||
<cdt-site>http://download.eclipse.org/tools/cdt/releases/8.4</cdt-site>
|
|
||||||
<cdt-test-site>http://download.eclipse.org/tools/cdt/updates/indigo/</cdt-test-site>
|
|
||||||
</properties>
|
|
||||||
<repositories>
|
|
||||||
<repository>
|
|
||||||
<id>luna</id>
|
|
||||||
<layout>p2</layout>
|
|
||||||
<url>${eclipse-site}</url>
|
|
||||||
</repository>
|
|
||||||
<repository>
|
|
||||||
<id>cdt</id>
|
|
||||||
<layout>p2</layout>
|
|
||||||
<url>${cdt-site}</url>
|
|
||||||
</repository>
|
|
||||||
<repository>
|
|
||||||
<id>cdttest</id>
|
|
||||||
<layout>p2</layout>
|
|
||||||
<url>${cdt-test-site}</url>
|
|
||||||
</repository>
|
|
||||||
</repositories>
|
|
||||||
</profile>
|
|
||||||
<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>
|
|
||||||
</profiles>
|
</profiles>
|
||||||
</project>
|
</project>
|
||||||
|
|
|
@ -1,6 +0,0 @@
|
||||||
features
|
|
||||||
plugins
|
|
||||||
interim
|
|
||||||
milestones
|
|
||||||
digest.zip
|
|
||||||
site-europa.xml
|
|
|
@ -1,17 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<projectDescription>
|
|
||||||
<name>org.eclipse.rse.updatesite</name>
|
|
||||||
<comment></comment>
|
|
||||||
<projects>
|
|
||||||
</projects>
|
|
||||||
<buildSpec>
|
|
||||||
<buildCommand>
|
|
||||||
<name>org.eclipse.pde.UpdateSiteBuilder</name>
|
|
||||||
<arguments>
|
|
||||||
</arguments>
|
|
||||||
</buildCommand>
|
|
||||||
</buildSpec>
|
|
||||||
<natures>
|
|
||||||
<nature>org.eclipse.pde.UpdateSiteNature</nature>
|
|
||||||
</natures>
|
|
||||||
</projectDescription>
|
|
|
@ -1 +0,0 @@
|
||||||
pack200.stamp
|
|
|
@ -1,634 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
#*******************************************************************************
|
|
||||||
# Copyright (c) 2006, 2012 Wind River Systems, Inc.
|
|
||||||
# All rights reserved. This program and the accompanying materials
|
|
||||||
# are made available under the terms of the Eclipse Public License v1.0
|
|
||||||
# which accompanies this distribution, and is available at
|
|
||||||
# http://www.eclipse.org/legal/epl-v10.html
|
|
||||||
#
|
|
||||||
# Contributors:
|
|
||||||
# Martin Oberhuber - initial API and implementation
|
|
||||||
#*******************************************************************************
|
|
||||||
# Convert normal "site.xml" to "testUpdates"
|
|
||||||
#
|
|
||||||
# Prerequisites:
|
|
||||||
# - Eclipse 3.3Mx installed in $HOME/ws2/eclipse
|
|
||||||
# - Java5 in the PATH or in /shared/tools/tm/jdk-1.5
|
|
||||||
|
|
||||||
curdir=`/bin/pwd`
|
|
||||||
cd `dirname $0`
|
|
||||||
mydir=`/bin/pwd`
|
|
||||||
|
|
||||||
umask 022
|
|
||||||
|
|
||||||
#Use Java5 on build.eclipse.org - need JRE for pack200
|
|
||||||
export PATH=/shared/tools/tm/jdk-1.5/jre/bin:/shared/tools/tm/jdk-1.5/bin:$PATH
|
|
||||||
basebuilder=${HOME}/ws2/org.eclipse.releng.basebuilder
|
|
||||||
tgtlauncher=`ls ${HOME}/ws2/eclipse/plugins/org.eclipse.equinox.launcher_* | sort | tail -1`
|
|
||||||
tgtlauncher4=`ls ${HOME}/ws2/eclipse4/plugins/org.eclipse.equinox.launcher_* | sort | tail -1`
|
|
||||||
|
|
||||||
# patch site.xml
|
|
||||||
cd ..
|
|
||||||
SITE=`/bin/pwd`
|
|
||||||
echo "SITE is ${SITE}"
|
|
||||||
if [ -f index.html.new ]; then
|
|
||||||
rm -f index.html.new
|
|
||||||
fi
|
|
||||||
if [ -f site.xml.new ]; then
|
|
||||||
rm -f site.xml.new
|
|
||||||
fi
|
|
||||||
if [ -f web/site.xsl.new ]; then
|
|
||||||
rm -f web/site.xsl.new
|
|
||||||
fi
|
|
||||||
|
|
||||||
# get newest plugins and features: to be done manually on real update site
|
|
||||||
TPVERSION="Target Management"
|
|
||||||
VERSION=3.4.x
|
|
||||||
DO_STATS=0
|
|
||||||
DO_CATEGORIES=0
|
|
||||||
TYPE=none
|
|
||||||
SITEDIR=`basename ${SITE}`
|
|
||||||
SITEPARENT=`dirname ${SITE}`
|
|
||||||
SITEPARENT=`basename ${SITEPARENT}`
|
|
||||||
SITEDIRVER=${SITEDIR}
|
|
||||||
case ${SITEDIR} in
|
|
||||||
test*Updates) TYPE=test ;;
|
|
||||||
signed*Updates) TYPE=testSigned ; DO_CATEGORIES=1 ;;
|
|
||||||
*milestones) TYPE=milestone ;;
|
|
||||||
*interim) TYPE=interim ;;
|
|
||||||
*)
|
|
||||||
case ${SITEPARENT} in
|
|
||||||
*milestones) TYPE=milestone ; SITEDIRVER=${SITEPARENT} ;;
|
|
||||||
*interim) TYPE=interim ; SITEDIRVER=${SITEPARENT} ;;
|
|
||||||
3.2) VERSION=3.2 ; DO_CATEGORIES=1 ; DO_STATS=1 ;;
|
|
||||||
3.3) VERSION=3.3 ; DO_CATEGORIES=1 ; DO_STATS=1 ;;
|
|
||||||
3.4) VERSION=3.4 ; DO_CATEGORIES=1 ; DO_STATS=1 ;;
|
|
||||||
*) TYPE=unknown ;;
|
|
||||||
esac
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
case ${SITEDIRVER} in
|
|
||||||
3.2*) VERSION=3.2 ; DO_CATEGORIES=1 ;;
|
|
||||||
3.3*) VERSION=3.3 ; DO_CATEGORIES=1 ;;
|
|
||||||
3.4*) VERSION=3.4 ; DO_CATEGORIES=1 ;;
|
|
||||||
esac
|
|
||||||
case ${SITEDIRVER} in
|
|
||||||
3.2) DO_STATS=1 ;;
|
|
||||||
3.3) DO_STATS=1 ;;
|
|
||||||
3.4) DO_STATS=1 ;;
|
|
||||||
esac
|
|
||||||
case ${SITEPARENT} in
|
|
||||||
staging) SITEDIR=staging/${SITEDIR} ;;
|
|
||||||
esac
|
|
||||||
if [ ${TYPE} = test ]; then
|
|
||||||
TPTYPE="${VERSION} Test"
|
|
||||||
TPVERSION="${TPVERSION} ${TPTYPE}"
|
|
||||||
echo "Working on ${TPVERSION} update site"
|
|
||||||
REL=`ls $HOME/ws2/working/package | sort | tail -1`
|
|
||||||
if [ "$REL" != "" ]; then
|
|
||||||
echo "Checking new Updates from $REL"
|
|
||||||
DIR="$HOME/ws2/working/package/$REL/updates"
|
|
||||||
if [ -d "$DIR/features" ]; then
|
|
||||||
echo "Copying new plugins and features from $DIR"
|
|
||||||
rm -rf features
|
|
||||||
rm -rf plugins
|
|
||||||
cp -R $DIR/features .
|
|
||||||
cp -R $DIR/plugins .
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
# CHECK VERSION CORRECTNESS for MICRO UPDATES only
|
|
||||||
# Major version updates are not allowed, but minor update is OK.
|
|
||||||
#MINOR_UPDATE_OK=1
|
|
||||||
# Minor/major version updates are not allowed.
|
|
||||||
MINOR_UPDATE_OK=0
|
|
||||||
# Update of "qualifier" requires also updating "micro"
|
|
||||||
echo "VERIFYING VERSION CORRECTNESS: Features against ../updates/3.4/201205300905"
|
|
||||||
ls features/*.jar | sed -e 's,^.*features/,,' | sort > f1.$$.txt
|
|
||||||
ls ../updates/3.4/201205300905/features/*.jar | sed -e 's,^.*features/,,' | sort > f2.$$.txt
|
|
||||||
diff f2.$$.txt f1.$$.txt | grep '^[>]' \
|
|
||||||
| sed -e 's,[>] \(.*_[0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*\)\..*,\1,' > f_new.txt
|
|
||||||
for f in `cat f_new.txt`; do
|
|
||||||
fold=`grep "${f}\." f2.$$.txt`
|
|
||||||
if [ "${fold}" != "" ]; then
|
|
||||||
echo "PROBLEM: QUALIFIER update without MICRO: ${f}"
|
|
||||||
fi
|
|
||||||
if [ "${MINOR_UPDATE_OK}" = "0" ]; then
|
|
||||||
#allow MICRO updates only, but require QUALIFIER update
|
|
||||||
fbase=`echo $f | sed -e 's,\(.*_[0-9][0-9]*\.[0-9][0-9]*\)\..*,\1,'`
|
|
||||||
fold=`grep "${fbase}\." f2.$$.txt`
|
|
||||||
if [ "${fold}" = "" ]; then
|
|
||||||
echo "PROBLEM: MAJOR or MINOR update : ${f}"
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
#allow MINOR or MICRO updates, but require QUALIFIER update
|
|
||||||
fbase=`echo $f | sed -e 's,\(.*_[0-9][0-9]*\)\.[0-9][0-9]*\..*,\1,'`
|
|
||||||
fold=`grep ${fbase} f2.$$.txt`
|
|
||||||
if [ "${fold}" = "" ]; then
|
|
||||||
echo "PROBLEM: MAJOR update or NEW : ${f}"
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
echo "VERIFYING VERSION CORRECTNESS: Plugins against ../updates/3.4/201205300905"
|
|
||||||
ls plugins/*.jar | sed -e 's,^.*plugins/,,' | sort > p1.$$.txt
|
|
||||||
ls ../updates/3.4/201205300905/plugins/*.jar | sed -e 's,^.*plugins/,,' | sort > p2.$$.txt
|
|
||||||
diff p2.$$.txt p1.$$.txt | grep '^[>]' \
|
|
||||||
| sed -e 's,[>] \(.*_[0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*\)\..*,\1,' > p_new.txt
|
|
||||||
for p in `cat p_new.txt`; do
|
|
||||||
pold=`grep "${p}\." p2.$$.txt`
|
|
||||||
if [ "${pold}" != "" ]; then
|
|
||||||
echo "PROBLEM: QUALIFIER update without MICRO: ${p}"
|
|
||||||
fi
|
|
||||||
if [ "${MINOR_UPDATE_OK}" = "0" ]; then
|
|
||||||
#allow MICRO updates only, but require QUALIFIER update
|
|
||||||
pbase=`echo $p | sed -e 's,\(.*_[0-9][0-9]*\.[0-9][0-9]*\)\..*,\1,'`
|
|
||||||
pold=`grep "${pbase}\." p2.$$.txt`
|
|
||||||
if [ "${pold}" = "" ]; then
|
|
||||||
echo "PROBLEM: MAJOR or MINOR update : ${p}"
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
#allow MINOR or MICRO updates, but require QUALIFIER update
|
|
||||||
pbase=`echo $p | sed -e 's,\(.*_[0-9][0-9]*\)\.[0-9][0-9]*\..*,\1,'`
|
|
||||||
pold=`grep ${pbase} p2.$$.txt`
|
|
||||||
if [ "${pold}" = "" ]; then
|
|
||||||
echo "PROBLEM: MAJOR update or NEW : ${p}"
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
#rm f_new.txt p_new.txt
|
|
||||||
mv -f f1.$$.txt fversions.txt
|
|
||||||
mv -f p1.$$.txt pversions.txt
|
|
||||||
mv -f f2.$$.txt f30versions.txt
|
|
||||||
mv -f p2.$$.txt p30versions.txt
|
|
||||||
## rm f1.$$.txt f2.$$.txt p1.$$.txt p2.$$.txt
|
|
||||||
rm index.html site.xml web/site.xsl
|
|
||||||
cvs -q update -dPR
|
|
||||||
sed -e "s,/tm/updates/2.0,/tm/${SITEDIR},g" \
|
|
||||||
-e "s,Project 2.0 Update,Project ${TPTYPE} Update,g" \
|
|
||||||
index.html > index.html.new
|
|
||||||
mv -f index.html.new index.html
|
|
||||||
sed -e "s,/tm/updates/2.0,/tm/${SITEDIR},g" \
|
|
||||||
-e "s,Project 2.0 Update,Project ${TPTYPE} Update,g" \
|
|
||||||
-e '/<!-- BEGIN_2_0 -->/,/<!-- END_2_0_4 -->/d' \
|
|
||||||
-e '/<!-- BEGIN_3_0 -->/,/<!-- END_3_3 -->/d' \
|
|
||||||
site.xml > site.xml.new
|
|
||||||
mv -f site.xml.new site.xml
|
|
||||||
sed -e "s,Project 2.0 Update,Project ${TPTYPE} Update,g" \
|
|
||||||
web/site.xsl > web/site.xsl.new
|
|
||||||
mv -f web/site.xsl.new web/site.xsl
|
|
||||||
echo "Conditioning the site... $SITE"
|
|
||||||
#java -Dorg.eclipse.update.jarprocessor.pack200=$mydir \
|
|
||||||
#java -jar $HOME/ws2/eclipse/startup.jar \
|
|
||||||
#java -jar ${basebuilder}/plugins/org.eclipse.equinox.launcher.jar \
|
|
||||||
java -jar ${tgtlauncher} \
|
|
||||||
-application org.eclipse.update.core.siteOptimizer \
|
|
||||||
-jarProcessor -outputDir $SITE \
|
|
||||||
-processAll -repack $SITE
|
|
||||||
#java -Dorg.eclipse.update.jarprocessor.pack200=$mydir \
|
|
||||||
# $HOME/ws2/jarprocessor/jarprocessor.jar \
|
|
||||||
# -outputDir $SITE -processAll -repack $SITE
|
|
||||||
elif [ ${TYPE} = testSigned ]; then
|
|
||||||
TPTYPE="${VERSION} Signed Test"
|
|
||||||
TPVERSION="${TPVERSION} ${TPTYPE}"
|
|
||||||
echo "Working on ${TPVERSION} update site"
|
|
||||||
echo "Signing jars from ${SITE}/../testUpdates (expecting conditioned jars)..."
|
|
||||||
STAGING=/home/data/httpd/download-staging.priv/tools/tm
|
|
||||||
stamp=`date +'%Y%m%d-%H%M'`
|
|
||||||
if [ -d ${STAGING} -a -d ${SITE}/../testUpdates ]; then
|
|
||||||
#get jars from testUpdates, sign them and put them here
|
|
||||||
mkdir ${SITE}/features.${stamp}
|
|
||||||
mkdir -p ${STAGING}/updates.${stamp}/features
|
|
||||||
chmod -R g+w ${STAGING}/updates.${stamp}
|
|
||||||
cp -R ${SITE}/../testUpdates/features/*.jar ${STAGING}/updates.${stamp}/features
|
|
||||||
cd ${STAGING}/updates.${stamp}/features
|
|
||||||
for x in `ls *.jar`; do
|
|
||||||
result=`jarsigner -verify ${x} | head -1`
|
|
||||||
if [ "$result" != "jar verified." ]; then
|
|
||||||
# do not sign Orbit bundles again since they are signed already
|
|
||||||
echo "signing feature: ${x}"
|
|
||||||
sign ${x} nomail >/dev/null
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
TRIES=10
|
|
||||||
while [ $TRIES -gt 0 ]; do
|
|
||||||
sleep 30
|
|
||||||
echo "TRIES to go: ${TRIES}"
|
|
||||||
for x in `ls *.jar | grep -v '^temp[_.]'`; do
|
|
||||||
result=`jarsigner -verify ${x} | head -1`
|
|
||||||
if [ "$result" = "jar verified." ]; then
|
|
||||||
echo "${result}: ${x}"
|
|
||||||
cp ${x} ${SITE}/features.${stamp}
|
|
||||||
rm ${x}
|
|
||||||
else
|
|
||||||
echo "-pending- ${x} : ${result}" | head -1
|
|
||||||
sleep 30
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
FILES=`ls 2>/dev/null`
|
|
||||||
if [ "$FILES" = "" ]; then
|
|
||||||
TRIES=0
|
|
||||||
ok=1
|
|
||||||
else
|
|
||||||
echo "--> FILES is $FILES"
|
|
||||||
TRIES=`expr $TRIES - 1`
|
|
||||||
ok=0
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
if [ "$ok" = "1" ]; then
|
|
||||||
rmdir ${STAGING}/updates.${stamp}/features
|
|
||||||
mkdir ${SITE}/plugins.${stamp}
|
|
||||||
mkdir -p ${STAGING}/updates.${stamp}/plugins
|
|
||||||
chmod -R g+w ${STAGING}/updates.${stamp}
|
|
||||||
cp ${SITE}/../testUpdates/plugins/*.jar ${STAGING}/updates.${stamp}/plugins
|
|
||||||
cd ${STAGING}/updates.${stamp}/plugins
|
|
||||||
for x in `ls *.jar`; do
|
|
||||||
result=`jarsigner -verify ${x} | head -1`
|
|
||||||
if [ "$result" != "jar verified." ]; then
|
|
||||||
# do not sign Orbit bundles again since they are signed already
|
|
||||||
echo "signing plugin: ${x}"
|
|
||||||
sign ${x} nomail >/dev/null
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
TRIES=10
|
|
||||||
while [ $TRIES -gt 0 ]; do
|
|
||||||
sleep 30
|
|
||||||
echo "TRIES to go: ${TRIES}"
|
|
||||||
for x in `ls *.jar | grep -v '^temp[_.]'`; do
|
|
||||||
result=`jarsigner -verify ${x} | head -1`
|
|
||||||
if [ "$result" = "jar verified." ]; then
|
|
||||||
echo "${result}: ${x}"
|
|
||||||
cp ${x} ${SITE}/plugins.${stamp}
|
|
||||||
rm ${x}
|
|
||||||
else
|
|
||||||
echo "-pending- ${x} : ${result}" | head -1
|
|
||||||
sleep 30
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
FILES=`ls 2>/dev/null`
|
|
||||||
if [ "$FILES" = "" ]; then
|
|
||||||
TRIES=0
|
|
||||||
ok=1
|
|
||||||
else
|
|
||||||
echo "--> FILES is $FILES"
|
|
||||||
TRIES=`expr $TRIES - 1`
|
|
||||||
ok=0
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
fi
|
|
||||||
if [ "$ok" = "1" ]; then
|
|
||||||
cd ${SITE}
|
|
||||||
rmdir ${STAGING}/updates.${stamp}/plugins
|
|
||||||
rmdir ${STAGING}/updates.${stamp}
|
|
||||||
#mv features features.old.${stamp}
|
|
||||||
#mv plugins plugins.old.${stamp}
|
|
||||||
rm fversions.txt pversions.txt f30versions.txt p30versions.txt f_new.txt p_new.txt 2>/dev/null
|
|
||||||
rm -rf features plugins
|
|
||||||
mv features.${stamp} features
|
|
||||||
mv plugins.${stamp} plugins
|
|
||||||
else
|
|
||||||
echo "Something went wrong during staging and signing."
|
|
||||||
echo "Keeping existing update site intact."
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
echo "staging or testUpdates not found:"
|
|
||||||
echo "please fix your pathes"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
rm index.html site.xml web/site.xsl
|
|
||||||
cvs -q update -dPR
|
|
||||||
sed -e "s,/tm/updates/2.0,/tm/${SITEDIR},g" \
|
|
||||||
-e "s,Project 2.0 Update,Project ${TPTYPE} Update,g" \
|
|
||||||
index.html > index.html.new
|
|
||||||
mv -f index.html.new index.html
|
|
||||||
sed -e "s,/tm/updates/2.0,/tm/${SITEDIR},g" \
|
|
||||||
-e "s,Project 2.0 Update,Project ${TPTYPE} Update,g" \
|
|
||||||
-e '/<!-- BEGIN_2_0 -->/,/<!-- END_2_0_4 -->/d' \
|
|
||||||
-e '/<!-- BEGIN_3_0 -->/,/<!-- END_3_3 -->/d' \
|
|
||||||
site.xml > site.xml.new
|
|
||||||
mv -f site.xml.new site.xml
|
|
||||||
sed -e "s,Project 2.0 Update,Project ${TPTYPE} Update,g" \
|
|
||||||
web/site.xsl > web/site.xsl.new
|
|
||||||
mv -f web/site.xsl.new web/site.xsl
|
|
||||||
elif [ ${TYPE} = milestone ]; then
|
|
||||||
TPTYPE="${VERSION} Milestone"
|
|
||||||
TPVERSION="${TPVERSION} ${TPTYPE}"
|
|
||||||
echo "Working on ${TPVERSION} update site"
|
|
||||||
echo "Expect that you copied your features and plugins yourself"
|
|
||||||
stamp=`date +'%Y%m%d-%H%M'`
|
|
||||||
rm index.html site.xml web/site.xsl
|
|
||||||
cvs -q update -dPR
|
|
||||||
sed -e "s,/tm/updates/2.0,/tm/updates/${SITEDIR},g" \
|
|
||||||
-e "s,Project 2.0 Update,Project ${TPTYPE} Update,g" \
|
|
||||||
-e '\,</h1>,a\
|
|
||||||
This site contains Target Management Milestones (I-, S- and M- builds) which are \
|
|
||||||
being contributed to the Eclipse Juno coordinated release train (Eclipse 4.2.x).' \
|
|
||||||
index.html > index.html.new
|
|
||||||
mv -f index.html.new index.html
|
|
||||||
## keep 3.0.x features in site.xml
|
|
||||||
## -e '/<!-- BEGIN_2_0_1 -->/,/<!-- END_2_0_4 -->/d' \
|
|
||||||
sed -e "s,/tm/updates/2.0,/tm/updates/${SITEDIR},g" \
|
|
||||||
-e "s,Project 2.0 Update,Project ${TPTYPE} Update,g" \
|
|
||||||
-e '/<!-- BEGIN_2_0 -->/,/<!-- END_2_0_4 -->/d' \
|
|
||||||
-e '/<!-- BEGIN_3_0 -->/,/<!-- END_3_3 -->/d' \
|
|
||||||
site.xml > site.xml.new
|
|
||||||
mv -f site.xml.new site.xml
|
|
||||||
sed -e "s,Project 2.0 Update,Project ${TPTYPE} Update,g" \
|
|
||||||
web/site.xsl > web/site.xsl.new
|
|
||||||
mv -f web/site.xsl.new web/site.xsl
|
|
||||||
elif [ ${TYPE} = interim ]; then
|
|
||||||
TPTYPE="${VERSION} Interim"
|
|
||||||
TPVERSION="${TPVERSION} ${TPTYPE}"
|
|
||||||
echo "Working on ${TPVERSION} update site"
|
|
||||||
echo "Expect that you copied your features and plugins yourself"
|
|
||||||
stamp=`date +'%Y%m%d-%H%M'`
|
|
||||||
rm index.html site.xml web/site.xsl
|
|
||||||
cvs -q update -dPR
|
|
||||||
sed -e "s,/tm/updates/2.0,/tm/updates/${SITEDIR},g" \
|
|
||||||
-e "s,Project 2.0 Update,Project ${TPTYPE} Update,g" \
|
|
||||||
-e '\,</h1>,a\
|
|
||||||
This site contains Target Management Interim Maintenance builds (I-, S-, and M-builds) in order \
|
|
||||||
to test them before going live.' \
|
|
||||||
index.html > index.html.new
|
|
||||||
mv -f index.html.new index.html
|
|
||||||
## keep 2.0.x features in site.xml
|
|
||||||
## -e '/<!-- BEGIN_2_0_1 -->/,/<!-- END_2_0_4 -->/d' \
|
|
||||||
sed -e "s,/tm/updates/2.0,/tm/updates/${SITEDIR},g" \
|
|
||||||
-e "s,Project 2.0 Update,Project ${TPTYPE} Update,g" \
|
|
||||||
-e '/<!-- BEGIN_2_0 -->/,/<!-- END_2_0_4 -->/d' \
|
|
||||||
-e '/<!-- BEGIN_3_0 -->/,/<!-- END_3_3 -->/d' \
|
|
||||||
site.xml > site.xml.new
|
|
||||||
mv -f site.xml.new site.xml
|
|
||||||
sed -e "s,Project 2.0 Update,Project ${TPTYPE} Update,g" \
|
|
||||||
web/site.xsl > web/site.xsl.new
|
|
||||||
mv -f web/site.xsl.new web/site.xsl
|
|
||||||
elif [ `basename $SITE` = 3.0 ]; then
|
|
||||||
TPTYPE="3.0"
|
|
||||||
TPVERSION="${TPVERSION} ${TPTYPE}"
|
|
||||||
TYPE=official
|
|
||||||
echo "Working on ${TPVERSION} update site"
|
|
||||||
echo "Expect that you copied your features and plugins yourself"
|
|
||||||
stamp=`date +'%Y%m%d-%H%M'`
|
|
||||||
rm index.html site.xml web/site.xsl
|
|
||||||
cvs -q update -dPR
|
|
||||||
sed -e "s,/tm/updates/2.0,/tm/updates/${SITEDIR},g" \
|
|
||||||
-e "s,Project 2.0 Update,Project ${TPTYPE} Update,g" \
|
|
||||||
-e '\,</h1>,a\
|
|
||||||
This site contains Target Management 3.0 Releases and Updates (R- builds) which are \
|
|
||||||
being contributed to the Ganymede coordinated release train (Eclipse 3.4).' \
|
|
||||||
index.html > index.html.new
|
|
||||||
mv -f index.html.new index.html
|
|
||||||
## dont keep 2.0.x features in site.xml
|
|
||||||
sed -e "s,/tm/updates/2.0,/tm/updates/${SITEDIR},g" \
|
|
||||||
-e "s,Project 2.0 Update,Project ${TPTYPE} Update,g" \
|
|
||||||
-e '/<!-- BEGIN_2_0 -->/,/<!-- END_2_0_4 -->/d' \
|
|
||||||
-e '/<!-- BEGIN_3_0_4 -->/,/<!-- END_3_0_4 -->/d' \
|
|
||||||
-e '/<!-- BEGIN_3_2 -->/,/<!-- END_ALL -->/d' \
|
|
||||||
site.xml > site.xml.new
|
|
||||||
mv -f site.xml.new site.xml
|
|
||||||
sed -e "s,Project 2.0 Update,Project ${TPTYPE} Update,g" \
|
|
||||||
web/site.xsl > web/site.xsl.new
|
|
||||||
mv -f web/site.xsl.new web/site.xsl
|
|
||||||
elif [ `basename $SITE` = 3.1 ]; then
|
|
||||||
TPTYPE="3.1"
|
|
||||||
TPVERSION="${TPVERSION} ${TPTYPE}"
|
|
||||||
TYPE=official
|
|
||||||
echo "Working on ${TPVERSION} update site"
|
|
||||||
echo "Expect that you copied your features and plugins yourself"
|
|
||||||
stamp=`date +'%Y%m%d-%H%M'`
|
|
||||||
rm index.html site.xml web/site.xsl
|
|
||||||
cvs -q update -dPR
|
|
||||||
sed -e "s,/tm/updates/2.0,/tm/updates/${SITEDIR},g" \
|
|
||||||
-e "s,Project 2.0 Update,Project ${TPTYPE} Update,g" \
|
|
||||||
-e '\,</h1>,a\
|
|
||||||
This site contains Target Management 3.1 Releases and Updates (R- builds) which are \
|
|
||||||
being contributed to the Galileo coordinated release train (Eclipse 3.5).' \
|
|
||||||
index.html > index.html.new
|
|
||||||
mv -f index.html.new index.html
|
|
||||||
## dont keep 2.0.x features in site.xml
|
|
||||||
sed -e "s,/tm/updates/2.0,/tm/updates/${SITEDIR},g" \
|
|
||||||
-e "s,Project 2.0 Update,Project ${TPTYPE} Update,g" \
|
|
||||||
-e '/<!-- BEGIN_2_0 -->/,/<!-- END_2_0_4 -->/d' \
|
|
||||||
-e '/<!-- BEGIN_3_0 -->/,/<!-- END_3_0_3 -->/d' \
|
|
||||||
-e '/<!-- BEGIN_3_2 -->/,/<!-- END_ALL -->/d' \
|
|
||||||
site.xml > site.xml.new
|
|
||||||
mv -f site.xml.new site.xml
|
|
||||||
sed -e "s,Project 2.0 Update,Project ${TPTYPE} Update,g" \
|
|
||||||
web/site.xsl > web/site.xsl.new
|
|
||||||
mv -f web/site.xsl.new web/site.xsl
|
|
||||||
elif [ `basename $SITE` = 3.2 ]; then
|
|
||||||
TPTYPE="3.2"
|
|
||||||
TPVERSION="${TPVERSION} ${TPTYPE}"
|
|
||||||
TYPE=official
|
|
||||||
echo "Working on ${TPVERSION} update site"
|
|
||||||
echo "Expect that you copied your features and plugins yourself"
|
|
||||||
stamp=`date +'%Y%m%d-%H%M'`
|
|
||||||
rm index.html site.xml web/site.xsl
|
|
||||||
cvs -q update -dPR
|
|
||||||
sed -e "s,/tm/updates/2.0,/tm/updates/${SITEDIR},g" \
|
|
||||||
-e "s,Project 2.0 Update,Project ${TPTYPE} Update,g" \
|
|
||||||
-e '\,</h1>,a\
|
|
||||||
This site contains Target Management 3.2 Releases and Updates (R- builds) which are \
|
|
||||||
being contributed to the Eclipse Helios coordinated release train (Eclipse 3.6.x).' \
|
|
||||||
index.html > index.html.new
|
|
||||||
mv -f index.html.new index.html
|
|
||||||
## dont keep 2.0.x features in site.xml
|
|
||||||
sed -e "s,/tm/updates/2.0,/tm/updates/${SITEDIR},g" \
|
|
||||||
-e "s,Project 2.0 Update,Project ${TPTYPE} Update,g" \
|
|
||||||
-e '/<!-- BEGIN_2_0 -->/,/<!-- BEGIN_3_2 -->/d' \
|
|
||||||
-e '/<!-- BEGIN_3_3 -->/,/<!-- END_ALL -->/d' \
|
|
||||||
site.xml > site.xml.new
|
|
||||||
mv -f site.xml.new site.xml
|
|
||||||
sed -e "s,Project 2.0 Update,Project ${TPTYPE} Update,g" \
|
|
||||||
web/site.xsl > web/site.xsl.new
|
|
||||||
mv -f web/site.xsl.new web/site.xsl
|
|
||||||
elif [ `basename $SITE` = 3.3 ]; then
|
|
||||||
TPTYPE="3.3"
|
|
||||||
TPVERSION="${TPVERSION} ${TPTYPE}"
|
|
||||||
TYPE=official
|
|
||||||
echo "Working on ${TPVERSION} update site"
|
|
||||||
echo "Expect that you copied your features and plugins yourself"
|
|
||||||
stamp=`date +'%Y%m%d-%H%M'`
|
|
||||||
rm index.html site.xml web/site.xsl
|
|
||||||
cvs -q update -dPR
|
|
||||||
sed -e "s,/tm/updates/2.0,/tm/updates/${SITEDIR},g" \
|
|
||||||
-e "s,Project 2.0 Update,Project ${TPTYPE} Update,g" \
|
|
||||||
-e '\,</h1>,a\
|
|
||||||
This site contains Target Management 3.3 Releases and Updates (R- builds) which are \
|
|
||||||
being contributed to the Eclipse Indigo coordinated release train (Eclipse 3.7.x).' \
|
|
||||||
index.html > index.html.new
|
|
||||||
mv -f index.html.new index.html
|
|
||||||
## dont keep 2.0.x features in site.xml
|
|
||||||
sed -e "s,/tm/updates/2.0,/tm/updates/${SITEDIR},g" \
|
|
||||||
-e "s,Project 2.0 Update,Project ${TPTYPE} Update,g" \
|
|
||||||
-e '/<!-- BEGIN_2_0 -->/,/<!-- BEGIN_3_3 -->/d' \
|
|
||||||
-e '/<!-- BEGIN_3_4 -->/,/<!-- END_ALL -->/d' \
|
|
||||||
site.xml > site.xml.new
|
|
||||||
mv -f site.xml.new site.xml
|
|
||||||
sed -e "s,Project 2.0 Update,Project ${TPTYPE} Update,g" \
|
|
||||||
web/site.xsl > web/site.xsl.new
|
|
||||||
mv -f web/site.xsl.new web/site.xsl
|
|
||||||
elif [ $VERSION = 3.4 -a x$DO_STATS = x1 ]; then
|
|
||||||
TPTYPE="3.4"
|
|
||||||
TPVERSION="${TPVERSION} ${TPTYPE}"
|
|
||||||
TYPE=official
|
|
||||||
echo "Working on ${TPVERSION} update site"
|
|
||||||
echo "Expect that you copied your features and plugins yourself"
|
|
||||||
stamp=`date +'%Y%m%d-%H%M'`
|
|
||||||
rm index.html site.xml web/site.xsl
|
|
||||||
cvs -q update -dPR
|
|
||||||
sed -e "s,/tm/updates/2.0,/tm/updates/${SITEDIR},g" \
|
|
||||||
-e "s,Project 2.0 Update,Project ${TPTYPE} Update,g" \
|
|
||||||
-e '\,</h1>,a\
|
|
||||||
This site contains Target Management 3.4 Releases and Updates (R- builds) which are \
|
|
||||||
being contributed to the Eclipse Juno coordinated release train (Eclipse 4.2.x).' \
|
|
||||||
index.html > index.html.new
|
|
||||||
mv -f index.html.new index.html
|
|
||||||
## dont keep 2.0.x features in site.xml
|
|
||||||
sed -e "s,/tm/updates/2.0,/tm/updates/${SITEDIR},g" \
|
|
||||||
-e "s,Project 2.0 Update,Project ${TPTYPE} Update,g" \
|
|
||||||
-e '/<!-- BEGIN_2_0 -->/,/<!-- BEGIN_3_4 -->/d' \
|
|
||||||
site.xml > site.xml.new
|
|
||||||
mv -f site.xml.new site.xml
|
|
||||||
sed -e "s,Project 2.0 Update,Project ${TPTYPE} Update,g" \
|
|
||||||
web/site.xsl > web/site.xsl.new
|
|
||||||
mv -f web/site.xsl.new web/site.xsl
|
|
||||||
else
|
|
||||||
echo "Working on official update site"
|
|
||||||
TYPE=official
|
|
||||||
echo "Expect that you copied your features and plugins yourself"
|
|
||||||
stamp=`date +'%Y%m%d-%H%M'`
|
|
||||||
rm index.html site.xml web/site.xsl
|
|
||||||
cvs -q update -dPR
|
|
||||||
sed -e '/<!-- BEGIN_2_0_5 -->/,/<!-- END_2_0_5 -->/d' \
|
|
||||||
site.xml > site.xml.new1
|
|
||||||
sed -e '/<!-- BEGIN_3_0_3 -->/,/<!-- END_3_0_3 -->/d' \
|
|
||||||
site.xml.new1 > site.xml.new2
|
|
||||||
sed -e '/<!-- BEGIN_3_1 -->/,/<!-- END_ALL -->/d' \
|
|
||||||
site.xml.new2 > site.xml.new
|
|
||||||
mv -f site.xml.new site.xml
|
|
||||||
rm site.xml.new1 site.xml.new2
|
|
||||||
fi
|
|
||||||
FEATURES=`grep 'features/[^ ]*\.qualifier\.jar' site.xml | sed -e 's,^[^"]*"features/\([^0-9]*[0-9][0-9.]*\).*$,\1,g'`
|
|
||||||
for feature in $FEATURES ; do
|
|
||||||
#list newest ones first
|
|
||||||
TAG=`ls -t features/${feature}*.jar | head -1 | sed -e 's,[^0-9]*[0-9][0-9]*\.[0-9]*\.[0-9]*\.\([^.]*\).jar,\1,'`
|
|
||||||
if [ "$TAG" != "" ]; then
|
|
||||||
echo "$feature : $TAG"
|
|
||||||
sed -e "/$feature/s/qualifier/$TAG/g" site.xml > site.xml.new
|
|
||||||
mv -f site.xml.new site.xml
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
#Create Europa version of site.xml
|
|
||||||
if [ -f site-europa.xml ]; then
|
|
||||||
rm -rf site-europa.xml
|
|
||||||
fi
|
|
||||||
sed -e '/!EUROPA_ONLY!/d' site.xml > site-europa.xml
|
|
||||||
|
|
||||||
#Get rid of Europa comments completely in order to avoid SAX exception
|
|
||||||
#in comment when the feature qualifier extends to --
|
|
||||||
awk 'BEGIN {doit=1}
|
|
||||||
/-- !EUROPA_ONLY!/ {doit=0}
|
|
||||||
{ if(doit==1) print; }
|
|
||||||
/!EUROPA_ONLY! --/ {doit=1}' site.xml > site.xml.tmp
|
|
||||||
mv -f site.xml.tmp site.xml
|
|
||||||
|
|
||||||
# optimize the site
|
|
||||||
# see http://wiki.eclipse.org/Platform-releng-faq
|
|
||||||
case ${TYPE} in test*)
|
|
||||||
echo "Packing the site... $SITE"
|
|
||||||
# Workaround for downgrading effort of pack200 to avoid VM bug
|
|
||||||
# See https://bugs.eclipse.org/bugs/show_bug.cgi?id=154069
|
|
||||||
#java -Dorg.eclipse.update.jarprocessor.pack200=$mydir \
|
|
||||||
#java -jar $HOME/ws2/eclipse/startup.jar \
|
|
||||||
#java -jar ${basebuilder}/plugins/org.eclipse.equinox.launcher.jar \
|
|
||||||
java -jar ${tgtlauncher} \
|
|
||||||
-application org.eclipse.update.core.siteOptimizer \
|
|
||||||
-jarProcessor -outputDir $SITE \
|
|
||||||
-processAll -pack $SITE
|
|
||||||
#java -Dorg.eclipse.update.jarprocessor.pack200=$mydir \
|
|
||||||
# $HOME/ws2/jarprocessor/jarprocessor.jar \
|
|
||||||
# -outputDir $SITE -processAll -pack $SITE
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
#Create the digest
|
|
||||||
echo "Creating digest..."
|
|
||||||
#java -jar $HOME/ws2/eclipse/startup.jar \
|
|
||||||
#java -jar ${basebuilder}/plugins/org.eclipse.equinox.launcher.jar \
|
|
||||||
java -jar ${tgtlauncher} \
|
|
||||||
-application org.eclipse.update.core.siteOptimizer \
|
|
||||||
-digestBuilder -digestOutputDir=$SITE \
|
|
||||||
-siteXML=$SITE/site-europa.xml
|
|
||||||
|
|
||||||
##if false ; then
|
|
||||||
#Create P2 metadata
|
|
||||||
echo "Creating P2 metadata..."
|
|
||||||
#Always create from scratch
|
|
||||||
cd ${SITE}
|
|
||||||
for x in content.xml content.jar content.jar.pack.gz artifacts.xml artifacts.jar artifacts.jar.pack.gz ; do
|
|
||||||
if [ -f $x ]; then rm -f $x; fi
|
|
||||||
done
|
|
||||||
|
|
||||||
if [ x${DO_STATS} = x1 ]; then
|
|
||||||
echo "Creating P2 metadata with download stats..."
|
|
||||||
# Sonatype / Tycho app for generating p2 download stats
|
|
||||||
# See https://bugs.eclipse.org/bugs/show_bug.cgi?id=310132
|
|
||||||
# -application org.eclipse.equinox.p2.publisher.UpdateSitePublisher \
|
|
||||||
#CMD="java -jar ${basebuilder}/plugins/org.eclipse.equinox.launcher.jar \
|
|
||||||
# -p2.statsTrackedBundles org.eclipse.rse.sdk,org.eclipse.dstore.core,org.eclipse.rse.core,org.eclipse.rse.useractions,org.eclipse.rse.examples.tutorial,org.eclipse.rse.tests,org.eclipse.tm.rapi,org.eclipse.tm.terminal,org.eclipse.tm.terminal.view,org.eclipse.tm.terminal.local \
|
|
||||||
CMD="java -jar ${tgtlauncher4} \
|
|
||||||
-application org.sonatype.tycho.p2.updatesite.UpdateSitePublisherWithJRE \
|
|
||||||
-source ${SITE} \
|
|
||||||
-metadataRepository file:${SITE} \
|
|
||||||
-artifactRepository file:${SITE} \
|
|
||||||
-compress \
|
|
||||||
-publishArtifacts \
|
|
||||||
-reusePack200Files \
|
|
||||||
-p2.statsURI http://download.eclipse.org/stats/tm \
|
|
||||||
-p2.statsTrackedFeatures org.eclipse.rse.sdk,org.eclipse.rse.dstore,org.eclipse.rse.core,org.eclipse.rse.useractions,org.eclipse.rse.examples,org.eclipse.rse.tests,org.eclipse.rse.wince,org.eclipse.tm.terminal.view,org.eclipse.tm.terminal.local \
|
|
||||||
-p2.statsTrackedBundles org.eclipse.rse.core,org.eclipse.rse.core.source,org.eclipse.tm.terminal \
|
|
||||||
-p2.statsSuffix _tm34 \
|
|
||||||
-vmargs -Xmx256M"
|
|
||||||
echo $CMD
|
|
||||||
$CMD
|
|
||||||
result=$?
|
|
||||||
echo "result: ${result}"
|
|
||||||
|
|
||||||
else
|
|
||||||
|
|
||||||
echo "Creating P2 metadata (no download stats)..."
|
|
||||||
CMD="java -jar ${tgtlauncher4} \
|
|
||||||
-application org.eclipse.equinox.p2.publisher.UpdateSitePublisher \
|
|
||||||
-metadataRepository file:${SITE} \
|
|
||||||
-artifactRepository file:${SITE} \
|
|
||||||
-source ${SITE} \
|
|
||||||
-compress \
|
|
||||||
-publishArtifacts \
|
|
||||||
-reusePack200Files \
|
|
||||||
-vmargs -Xmx256M"
|
|
||||||
|
|
||||||
# -configs any.linux.x86 \
|
|
||||||
echo $CMD
|
|
||||||
$CMD
|
|
||||||
result=$?
|
|
||||||
echo "result: ${result}"
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ x${DO_CATEGORIES} = x1 ]; then
|
|
||||||
echo "Adding Categories..."
|
|
||||||
CMD="java -jar ${tgtlauncher4} \
|
|
||||||
-application org.eclipse.equinox.p2.publisher.CategoryPublisher \
|
|
||||||
-metadataRepository file:${SITE}/ \
|
|
||||||
-categoryDefinition file:${SITE}/category.xml \
|
|
||||||
-compress"
|
|
||||||
echo $CMD
|
|
||||||
$CMD
|
|
||||||
result=$?
|
|
||||||
echo "result: ${result}"
|
|
||||||
fi
|
|
||||||
|
|
||||||
cd $SITE
|
|
||||||
chgrp -R tools.tm .
|
|
||||||
chmod -R g+w .
|
|
||||||
chmod -R a+r .
|
|
||||||
cd $curdir
|
|
|
@ -1,15 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
#
|
|
||||||
# Workaround for downgrading effort of pack200 to avoid VM bug
|
|
||||||
# See https://bugs.eclipse.org/bugs/show_bug.cgi?id=154069
|
|
||||||
#
|
|
||||||
curdir=`pwd`
|
|
||||||
cd `dirname $0`
|
|
||||||
mydir=`pwd`
|
|
||||||
cd "$curdir"
|
|
||||||
|
|
||||||
rm "$mydir/pack200.stamp"
|
|
||||||
touch "$mydir/pack200.stamp"
|
|
||||||
date >> "$mydir/pack200.stamp"
|
|
||||||
echo "pack200 -E4 $*" >> "$mydir/pack200.stamp"
|
|
||||||
pack200 -E4 $*
|
|
|
@ -1,119 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
#*******************************************************************************
|
|
||||||
# Copyright (c) 2007, 2011 Wind River Systems, Inc.
|
|
||||||
# All rights reserved. This program and the accompanying materials
|
|
||||||
# are made available under the terms of the Eclipse Public License v1.0
|
|
||||||
# which accompanies this distribution, and is available at
|
|
||||||
# http://www.eclipse.org/legal/epl-v10.html
|
|
||||||
#
|
|
||||||
# Contributors:
|
|
||||||
# Martin Oberhuber - initial API and implementation
|
|
||||||
#*******************************************************************************
|
|
||||||
# Sign a list of files on build.eclipse.org
|
|
||||||
#
|
|
||||||
# Usage:
|
|
||||||
# sign.sh a.jar featurs/b.jar `ls plugins/*.jar`
|
|
||||||
#
|
|
||||||
# Prerequisites:
|
|
||||||
# - Eclipse 3.3Mx installed in $HOME/ws2/eclipse
|
|
||||||
# - Java5 in the PATH or in /shared/tools/tm/jdk-1.5
|
|
||||||
|
|
||||||
curdir=`pwd`
|
|
||||||
cd `dirname $0`
|
|
||||||
mydir=`pwd`
|
|
||||||
|
|
||||||
umask 022
|
|
||||||
|
|
||||||
#Use Java5 on build.eclipse.org - need JRE for pack200
|
|
||||||
export PATH=/shared/tools/tm/jdk-1.5/jre/bin:/shared/tools/tm/jdk-1.5/bin:$PATH
|
|
||||||
basebuilder=${HOME}/ws2/org.eclipse.releng.basebuilder
|
|
||||||
|
|
||||||
FILES=$*
|
|
||||||
|
|
||||||
# Work on update site
|
|
||||||
cd ..
|
|
||||||
SITE=`pwd`
|
|
||||||
|
|
||||||
STAGING=/home/data/httpd/download-staging.priv/tools/tm
|
|
||||||
stamp=`date +'%Y%m%d-%H%M'`
|
|
||||||
WORKDIR=${STAGING}/${stamp}
|
|
||||||
mkdir -p ${WORKDIR}
|
|
||||||
REALFILES=""
|
|
||||||
NAMES=""
|
|
||||||
echo "Bock ma's"
|
|
||||||
for file in ${FILES}; do
|
|
||||||
echo "file: ${file}"
|
|
||||||
cd ${SITE}
|
|
||||||
if [ -f ${file} ]; then
|
|
||||||
name=`basename ${file}`
|
|
||||||
echo "signing: ${name}"
|
|
||||||
NAMES="${NAMES} ${name}"
|
|
||||||
REALFILES="${REALFILES} ${file}"
|
|
||||||
cp ${file} ${WORKDIR}
|
|
||||||
cd ${WORKDIR}
|
|
||||||
sign ${name} nomail >/dev/null
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
mkdir ${WORKDIR}/done
|
|
||||||
cd ${WORKDIR}
|
|
||||||
TRIES=10
|
|
||||||
while [ $TRIES -gt 0 ]; do
|
|
||||||
sleep 30
|
|
||||||
anyleft=0
|
|
||||||
echo "TRIES to go: ${TRIES}"
|
|
||||||
for x in ${NAMES} ; do
|
|
||||||
if [ -f ${x} ]; then
|
|
||||||
anyleft=1
|
|
||||||
result=`jarsigner -verify ${x}`
|
|
||||||
if [ "$result" = "jar verified." ]; then
|
|
||||||
echo "${result}: ${x}"
|
|
||||||
mv ${x} ${WORKDIR}/done/${x}
|
|
||||||
else
|
|
||||||
echo "-pending- ${x} : ${result}" | head -1
|
|
||||||
sleep 30
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
if [ "${anyleft}" = "0" ]; then
|
|
||||||
TRIES=0
|
|
||||||
ok=1
|
|
||||||
else
|
|
||||||
echo "--> left:"
|
|
||||||
ls
|
|
||||||
TRIES=`expr $TRIES - 1`
|
|
||||||
ok=0
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
if [ "$ok" = "1" ]; then
|
|
||||||
cd ${SITE}
|
|
||||||
echo "Signed, ok, packing: ${REALFILES}"
|
|
||||||
for x in ${REALFILES} ; do
|
|
||||||
name=`basename ${x}`
|
|
||||||
#cp -f ${WORKDIR}/done/${name} ${x}
|
|
||||||
echo "signed, packing: ${x}"
|
|
||||||
java -jar ${basebuilder}/plugins/org.eclipse.equinox.launcher.jar \
|
|
||||||
-application org.eclipse.update.core.siteOptimizer \
|
|
||||||
-jarProcessor -outputDir `dirname ${x}` \
|
|
||||||
-pack ${WORKDIR}/done/${name}
|
|
||||||
done
|
|
||||||
rm -rf ${WORKDIR}
|
|
||||||
else
|
|
||||||
echo "Something went wrong during staging and signing."
|
|
||||||
echo "Keeping existing update site intact."
|
|
||||||
rm -rf ${WORKDIR}
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
#Create the digest
|
|
||||||
echo "Creating digest..."
|
|
||||||
#java -jar $HOME/ws2/eclipse/startup.jar \
|
|
||||||
java -jar ${basebuilder}/plugins/org.eclipse.equinox.launcher.jar \
|
|
||||||
-application org.eclipse.update.core.siteOptimizer \
|
|
||||||
-digestBuilder -digestOutputDir=$SITE \
|
|
||||||
-siteXML=$SITE/site.xml
|
|
||||||
|
|
||||||
cd $SITE
|
|
||||||
chgrp -R tools.tm .
|
|
||||||
chmod -R g+w .
|
|
||||||
chmod -R a+r .
|
|
||||||
cd $curdir
|
|
|
@ -1,67 +0,0 @@
|
||||||
#*******************************************************************************
|
|
||||||
# Copyright (c) 2007, 2010 Wind River Systems, Inc. and others.
|
|
||||||
# All rights reserved. This program and the accompanying materials
|
|
||||||
# are made available under the terms of the Eclipse Public License v1.0
|
|
||||||
# which accompanies this distribution, and is available at
|
|
||||||
# http://www.eclipse.org/legal/epl-v10.html
|
|
||||||
#
|
|
||||||
# Contributors:
|
|
||||||
# Martin Oberhuber (Wind River) - initial API and implementation
|
|
||||||
#*******************************************************************************
|
|
||||||
#!/bin/sh
|
|
||||||
curdir=`pwd`
|
|
||||||
cd `dirname $0`
|
|
||||||
mydir=`pwd`
|
|
||||||
|
|
||||||
umask 022
|
|
||||||
|
|
||||||
#Use Java5 on build.eclipse.org - need JRE for pack200
|
|
||||||
export PATH=/shared/tools/tm/jdk-1.5/jre/bin:/shared/tools/tm/jdk-1.5/bin:$PATH
|
|
||||||
basebuilder=${HOME}/ws2/org.eclipse.releng.basebuilder
|
|
||||||
|
|
||||||
# patch site.xml
|
|
||||||
cd ..
|
|
||||||
SITE=`pwd`
|
|
||||||
|
|
||||||
# get newest plugins and features: to be done manually on real update site
|
|
||||||
if [ `basename $SITE` != milestones ]; then
|
|
||||||
echo "Must run on milestones update site"
|
|
||||||
cd "$curdir"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
# store away previous version
|
|
||||||
echo "Storing away old versions"
|
|
||||||
if [ -d features.sav ]; then
|
|
||||||
rm -rf features.sav
|
|
||||||
fi
|
|
||||||
if [ -d plugins.sav ]; then
|
|
||||||
rm -rf plugins.sav
|
|
||||||
fi
|
|
||||||
mkdir features.sav
|
|
||||||
mkdir plugins.sav
|
|
||||||
mv features/*_2.0.1.v* features.sav
|
|
||||||
mv features/*_1.0.1.v* features.sav
|
|
||||||
mv plugins/*_2.0.1.v* plugins.sav
|
|
||||||
mv plugins/*_1.0.1.v* plugins.sav
|
|
||||||
|
|
||||||
# copy new version
|
|
||||||
echo "Copying new versions"
|
|
||||||
cp ../../signedUpdates/features/*_2.0.1.v* features
|
|
||||||
cp ../../signedUpdates/features/*_1.0.1.v* features
|
|
||||||
cp ../../signedUpdates/plugins/*_2.0.1.v* plugins
|
|
||||||
cp ../../signedUpdates/plugins/*_1.0.1.v* plugins
|
|
||||||
|
|
||||||
# diff, to be safe
|
|
||||||
ls features.sav | sort > f1.$$.txt
|
|
||||||
ls plugins.sav | sort > p1.$$.txt
|
|
||||||
ls features | grep '_[12]\.0\.1\.v' | sort > f2.$$.txt
|
|
||||||
ls plugins | grep '_[12]\.0\.1\.v' | sort > p2.$$.txt
|
|
||||||
echo "Plugins diff:"
|
|
||||||
diff p1.$$.txt p2.$$.txt
|
|
||||||
echo "Features diff:"
|
|
||||||
diff f1.$$.txt f2.$$.txt
|
|
||||||
rm f1.$$.txt f2.$$.txt p1.$$.txt p2.$$.txt
|
|
||||||
|
|
||||||
cd "$curdir"
|
|
||||||
exit 0
|
|
|
@ -1,40 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<site>
|
|
||||||
<feature url="features/org.eclipse.rse_3.4.1.qualifier.jar" id="org.eclipse.rse" version="3.4.1.qualifier">
|
|
||||||
<category name="tm_34_main"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.sdk_3.4.1.qualifier.jar" id="org.eclipse.rse.sdk" version="3.4.1.qualifier">
|
|
||||||
<category name="tm_34_main"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.useractions_1.1.400.qualifier.jar" id="org.eclipse.rse.useractions" version="1.1.400.qualifier">
|
|
||||||
<category name="tm_34_main"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.examples_3.1.300.qualifier.jar" id="org.eclipse.rse.examples" version="3.1.300.qualifier">
|
|
||||||
<category name="tm_34_optional"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.scp_0.2.0.qualifier.jar" id="org.eclipse.rse.scp" version="0.2.0.qualifier">
|
|
||||||
<category name="tm_34_optional"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.tests_3.4.0.qualifier.jar" id="org.eclipse.rse.tests" version="3.4.0.qualifier">
|
|
||||||
<category name="tm_34_optional"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.wince_0.3.100.qualifier.jar" id="org.eclipse.rse.wince" version="0.3.100.qualifier">
|
|
||||||
<category name="tm_34_optional"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.tm.terminal.local.sdk_0.3.0.qualifier.jar" id="org.eclipse.tm.terminal.local.sdk" version="0.3.0.qualifier">
|
|
||||||
<category name="tm_34_optional"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.tm.terminal.sdk_3.3.1.qualifier.jar" id="org.eclipse.tm.terminal.sdk" version="3.3.1.qualifier">
|
|
||||||
<category name="tm_34_main"/>
|
|
||||||
</feature>
|
|
||||||
<category-def name="tm_34_main" label="TM and RSE 3.4.1 Main Features">
|
|
||||||
<description>
|
|
||||||
TM and RSE Main Features
|
|
||||||
</description>
|
|
||||||
</category-def>
|
|
||||||
<category-def name="tm_34_optional" label="TM and RSE 3.4.1 Optional Add-Ons">
|
|
||||||
<description>
|
|
||||||
Examples, Tests and Incubation Plug-ins.
|
|
||||||
</description>
|
|
||||||
</category-def>
|
|
||||||
</site>
|
|
|
@ -1,82 +0,0 @@
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<title>Target Management Project 2.0 Updates</title>
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
||||||
<style>@import url("web/site.css");</style>
|
|
||||||
<script type="text/javascript">
|
|
||||||
var returnval = 0;
|
|
||||||
var stylesheet, xmlFile, cache, doc;
|
|
||||||
function init(){
|
|
||||||
// NSCP 7.1+ / Mozilla 1.4.1+ / Safari
|
|
||||||
// Use the standard DOM Level 2 technique, if it is supported
|
|
||||||
if (document.implementation && document.implementation.createDocument) {
|
|
||||||
xmlFile = document.implementation.createDocument("", "", null);
|
|
||||||
stylesheet = document.implementation.createDocument("", "", null);
|
|
||||||
if (xmlFile.load){
|
|
||||||
xmlFile.load("site.xml");
|
|
||||||
stylesheet.load("web/site.xsl");
|
|
||||||
} else {
|
|
||||||
alert("Document could not be loaded by browser.");
|
|
||||||
}
|
|
||||||
xmlFile.addEventListener("load", transform, false);
|
|
||||||
stylesheet.addEventListener("load", transform, false);
|
|
||||||
}
|
|
||||||
//IE 6.0+ solution
|
|
||||||
else if (window.ActiveXObject) {
|
|
||||||
xmlFile = new ActiveXObject("msxml2.DOMDocument.3.0");
|
|
||||||
xmlFile.async = false;
|
|
||||||
xmlFile.load("site.xml");
|
|
||||||
stylesheet = new ActiveXObject("msxml2.FreeThreadedDOMDocument.3.0");
|
|
||||||
stylesheet.async = false;
|
|
||||||
stylesheet.load("web/site.xsl");
|
|
||||||
cache = new ActiveXObject("msxml2.XSLTemplate.3.0");
|
|
||||||
cache.stylesheet = stylesheet;
|
|
||||||
transformData();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// separate transformation function for IE 6.0+
|
|
||||||
function transformData(){
|
|
||||||
var processor = cache.createProcessor();
|
|
||||||
processor.input = xmlFile;
|
|
||||||
processor.transform();
|
|
||||||
data.innerHTML = processor.output;
|
|
||||||
}
|
|
||||||
// separate transformation function for NSCP 7.1+ and Mozilla 1.4.1+
|
|
||||||
function transform(){
|
|
||||||
returnval+=1;
|
|
||||||
if (returnval==2){
|
|
||||||
var processor = new XSLTProcessor();
|
|
||||||
processor.importStylesheet(stylesheet);
|
|
||||||
doc = processor.transformToDocument(xmlFile);
|
|
||||||
document.getElementById("data").innerHTML = doc.documentElement.innerHTML;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
</head>
|
|
||||||
<body onload="init();">
|
|
||||||
<div align="right" width="230">
|
|
||||||
<a href="http://www.eclipse.org/tm/images/RSESample.gif">
|
|
||||||
<img src="http://www.eclipse.org/tm/images/RSESample_4x.gif" alt="[RSE Sample Screenshot]" border="0" width="230" height="165" title="RSE Sample Screenshot" />
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<h1 class="title">Target Management Project 2.0 Updates</h1>
|
|
||||||
<h2>Just getting started?</h2>
|
|
||||||
<p><b>See <a href="http://www.eclipse.org/tm/tutorial/">http://www.eclipse.org/tm/tutorial/</a></b></p>
|
|
||||||
<hr/>
|
|
||||||
<p>For getting the software on this site, you need to use the Eclipse
|
|
||||||
<a href="http://help.eclipse.org/help33/index.jsp?topic=/org.eclipse.platform.doc.user/tasks/tasks-34.htm">
|
|
||||||
Update Manager</a> (choose <i>Help > Software Updates > Find and Install</i>
|
|
||||||
in Eclipse 3.3 or later).<br/>
|
|
||||||
Define a new remote update site named "Target Management Updates",
|
|
||||||
and specify</p>
|
|
||||||
<p><code> http://download.eclipse.org/tm/updates/2.0/</code></p>
|
|
||||||
<p>as the URL to use.
|
|
||||||
See <a href="http://help.eclipse.org/help33/index.jsp?topic=/org.eclipse.platform.doc.user/tasks/tasks-34.htm">
|
|
||||||
Eclipse Help</a> for general information about using Update Manager.</p>
|
|
||||||
<p>If you do not have Eclipse installed yet, better use the
|
|
||||||
<a href="http://download.eclipse.org/tm/downloads/">downloads from this site</a>.</p>
|
|
||||||
<!--[insert static HTML here]-->
|
|
||||||
<div id="data"><!-- this is where the transformed data goes --></div>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,15 +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>
|
|
||||||
<artifactId>tm-parent</artifactId>
|
|
||||||
<groupId>org.eclipse.tm</groupId>
|
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
|
||||||
<relativePath>../../../</relativePath>
|
|
||||||
</parent>
|
|
||||||
<groupId>org.eclipse.tm</groupId>
|
|
||||||
<artifactId>org.eclipse.rse.updatesite</artifactId>
|
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
|
||||||
<packaging>eclipse-update-site</packaging>
|
|
||||||
</project>
|
|
|
@ -1,807 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!--
|
|
||||||
Copyright (c) 2006, 2011 Wind River Systems, Inc. and others.
|
|
||||||
All rights reserved. This program and the accompanying materials
|
|
||||||
are made available under the terms of the Eclipse Public License v1.0
|
|
||||||
which accompanies this distribution, and is available at
|
|
||||||
http://www.eclipse.org/legal/epl-v10.html
|
|
||||||
|
|
||||||
Contributors:
|
|
||||||
Martin Oberhuber (Wind River) - initial API and implementation
|
|
||||||
-->
|
|
||||||
|
|
||||||
<site pack200="true"
|
|
||||||
mirrorsURL="http://www.eclipse.org/downloads/download.php?file=/tm/updates/2.0/site.xml&format=xml&protocol=http"
|
|
||||||
digestURL="http://download.eclipse.org/tm/updates/2.0/">
|
|
||||||
<!-- was disabled due to bug 163406 digestURL="http://download.eclipse.org/tm/updates/2.0/" -->
|
|
||||||
<description url="http://download.eclipse.org/tm/updates/2.0/">
|
|
||||||
This is the Target Management Project 2.0 Update Site.
|
|
||||||
</description>
|
|
||||||
<!-- BEGIN_2_0 -->
|
|
||||||
<feature url="features/org.eclipse.rse.sdk_2.0.0.v20070609-7J--E7ZoHIP4RfkXykCt2OjoBujq.jar" id="org.eclipse.rse.sdk" version="2.0.0.v20070609-7J--E7ZoHIP4RfkXykCt2OjoBujq">
|
|
||||||
<category name="TM and RSE 2.0"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse_2.0.0.v20070609-7D--8mJIOQ6RwTkIMtp8OQKB.jar" id="org.eclipse.rse" version="2.0.0.v20070609-7D--8mJIOQ6RwTkIMtp8OQKB">
|
|
||||||
<category name="TM and RSE 2.0"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.examples_2.0.0.v20070609-6--9oA55P5M7Q.jar" id="org.eclipse.rse.examples" version="2.0.0.v20070609-6--9oA55P5M7Q">
|
|
||||||
<category name="TM and RSE 2.0"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.remotecdt_2.0.0.v20070609-4--8s733G3E3G.jar" id="org.eclipse.rse.remotecdt" version="2.0.0.v20070609-4--8s733G3E3G">
|
|
||||||
<category name="TM and RSE 2.0"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.tm.discovery_2.0.0.v20070611-7J--E8McIJNJCPr.jar" id="org.eclipse.tm.discovery" version="2.0.0.v20070611-7J--E8McIJNJCPr">
|
|
||||||
<category name="TM and RSE 2.0"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.tm.terminal.sdk_1.0.0.v20070609-7_--AvNDwNXrOcIwMflhNDDmDhHa.jar" id="org.eclipse.tm.terminal.sdk" version="1.0.0.v20070609-7_--AvNDwNXrOcIwMflhNDDmDhHa">
|
|
||||||
<category name="TM and RSE 2.0"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.core_2.0.0.v20070609-7P--EB7sQRxRjbc.jar" id="org.eclipse.rse.core" version="2.0.0.v20070609-7P--EB7sQRxRjbc">
|
|
||||||
<category name="TM and RSE 2.0"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.dstore_2.0.0.v20070609-7F--DUUEF6Ez0L1.jar" id="org.eclipse.rse.dstore" version="2.0.0.v20070609-7F--DUUEF6Ez0L1">
|
|
||||||
<category name="TM and RSE 2.0"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.ftp_2.0.0.v20070609-77378_kE77Y7U9K5G7A.jar" id="org.eclipse.rse.ftp" version="2.0.0.v20070609-77378_kE77Y7U9K5G7A">
|
|
||||||
<category name="TM and RSE 2.0"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.local_2.0.0.v20070609-7_--AgI99h9c9c.jar" id="org.eclipse.rse.local" version="2.0.0.v20070609-7_--AgI99h9c9c">
|
|
||||||
<category name="TM and RSE 2.0"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.ssh_2.0.0.v20070609-78--_kE77Y7U7U.jar" id="org.eclipse.rse.ssh" version="2.0.0.v20070609-78--_kE77Y7U7U">
|
|
||||||
<category name="TM and RSE 2.0"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.telnet_2.0.0.v20070609-6378AgI99h9cEU5G7A.jar" id="org.eclipse.rse.telnet" version="2.0.0.v20070609-6378AgI99h9cEU5G7A">
|
|
||||||
<category name="TM and RSE 2.0"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.tests_2.0.0.v20070609-6--9oA55P5M7J.jar" id="org.eclipse.rse.tests" version="2.0.0.v20070609-6--9oA55P5M7J">
|
|
||||||
<category name="TM and RSE 2.0"/>
|
|
||||||
</feature>
|
|
||||||
<category-def name="TM and RSE 2.0" label="TM and RSE 2.0">
|
|
||||||
<description>
|
|
||||||
Features and add-ons of the 2.0 release of Target Management / RSE.
|
|
||||||
</description>
|
|
||||||
</category-def>
|
|
||||||
<!-- END_2_0 -->
|
|
||||||
<!-- BEGIN_2_0_patches -->
|
|
||||||
<feature url="features/org.eclipse.rse.sdk_2.0.0.v20070706-7J--E7ZoHIP4TfeXykCt2OjqBvjq.jar" id="org.eclipse.rse.sdk" version="2.0.0.v20070706-7J--E7ZoHIP4TfeXykCt2OjqBvjq">
|
|
||||||
<category name="TM and RSE 2.0 patches (aka 2.0.0.1)"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse_2.0.0.v20070706-7D--8mJIOQ6RwTkIMvp9OQKB.jar" id="org.eclipse.rse" version="2.0.0.v20070706-7D--8mJIOQ6RwTkIMvp9OQKB">
|
|
||||||
<category name="TM and RSE 2.0 patches (aka 2.0.0.1)"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.core_2.0.0.v20070706-7P--EB7sQRxRkbd.jar" id="org.eclipse.rse.core" version="2.0.0.v20070706-7P--EB7sQRxRkbd">
|
|
||||||
<category name="TM and RSE 2.0 patches (aka 2.0.0.1)"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.ftp_2.0.0.v20070706-77378_kE77Y7V9K5G7A.jar" id="org.eclipse.rse.ftp" version="2.0.0.v20070706-77378_kE77Y7V9K5G7A">
|
|
||||||
<category name="TM and RSE 2.0 patches (aka 2.0.0.1)"/>
|
|
||||||
</feature>
|
|
||||||
<category-def name="TM and RSE 2.0 patches (aka 2.0.0.1)" label="TM and RSE 2.0 patches (aka 2.0.0.1)">
|
|
||||||
<description>
|
|
||||||
Patches for features and add-ons of the 2.0 release of Target Management / RSE.
|
|
||||||
</description>
|
|
||||||
</category-def>
|
|
||||||
<!-- END_2_0_patches -->
|
|
||||||
<!-- BEGIN_2_0_1 -->
|
|
||||||
<feature url="features/org.eclipse.rse.sdk_2.0.1.v20070926-7J-77E7ZoHOP4inkX-oUe-z-wI6x.jar" id="org.eclipse.rse.sdk" version="2.0.1.v20070926-7J-77E7ZoHOP4inkX-oUe-z-wI6x">
|
|
||||||
<category name="TM and RSE 2.0.1"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse_2.0.1.v20070926-7D-58mJIkP9WAviqV7HBvSLC.jar" id="org.eclipse.rse" version="2.0.1.v20070926-7D-58mJIkP9WAviqV7HBvSLC">
|
|
||||||
<category name="TM and RSE 2.0.1"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.examples_2.0.0.v20070609-6--9oA55P5M7Q.jar" id="org.eclipse.rse.examples" version="2.0.0.v20070609-6--9oA55P5M7Q">
|
|
||||||
<category name="TM and RSE 2.0.1"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.remotecdt_2.0.1.v20070926-4-18s733G3K5H.jar" id="org.eclipse.rse.remotecdt" version="2.0.1.v20070926-4-18s733G3K5H">
|
|
||||||
<category name="TM and RSE 2.0.1"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.tm.discovery_2.0.0.v20070611-7J--E8McIJNJCPr.jar" id="org.eclipse.tm.discovery" version="2.0.0.v20070611-7J--E8McIJNJCPr">
|
|
||||||
<category name="TM and RSE 2.0.1"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.tm.terminal.sdk_1.0.1.v20070926-7_-77AvNHwNY0SWJ6NvlhNDDmDtI.jar" id="org.eclipse.tm.terminal.sdk" version="1.0.1.v20070926-7_-77AvNHwNY0SWJ6NvlhNDDmDtI">
|
|
||||||
<category name="TM and RSE 2.0.1"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.core_2.0.1.v20070926-7P-7BEB7sQRxSFkT.jar" id="org.eclipse.rse.core" version="2.0.1.v20070926-7P-7BEB7sQRxSFkT">
|
|
||||||
<category name="TM and RSE 2.0.1"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.dstore_2.0.1.v20070926-7F-4DUUEF6FALu.jar" id="org.eclipse.rse.dstore" version="2.0.1.v20070926-7F-4DUUEF6FALu">
|
|
||||||
<category name="TM and RSE 2.0.1"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.ftp_2.0.1.v20070926-7737__kE77Y7dDK4I7B.jar" id="org.eclipse.rse.ftp" version="2.0.1.v20070926-7737__kE77Y7dDK4I7B">
|
|
||||||
<category name="TM and RSE 2.0.1"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.local_2.0.1.v20070705-7_-2AgI99h9l9l.jar" id="org.eclipse.rse.local" version="2.0.1.v20070705-7_-2AgI99h9l9l">
|
|
||||||
<category name="TM and RSE 2.0.1"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.ssh_2.0.1.v20070926-78-2_kE77Y7cAW.jar" id="org.eclipse.rse.ssh" version="2.0.1.v20070926-78-2_kE77Y7cAW">
|
|
||||||
<category name="TM and RSE 2.0.1"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.telnet_2.0.1.v20070704-637AAgI99h9mBW4I7B.jar" id="org.eclipse.rse.telnet" version="2.0.1.v20070704-637AAgI99h9mBW4I7B">
|
|
||||||
<category name="TM and RSE 2.0.1"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.tests_2.0.1.v20070926-6-19oA55P5SAG.jar" id="org.eclipse.rse.tests" version="2.0.1.v20070926-6-19oA55P5SAG">
|
|
||||||
<category name="TM and RSE 2.0.1"/>
|
|
||||||
</feature>
|
|
||||||
<category-def name="TM and RSE 2.0.1" label="TM and RSE 2.0.1">
|
|
||||||
<description>
|
|
||||||
Features and add-ons of the 2.0.1 release of Target Management / RSE.
|
|
||||||
</description>
|
|
||||||
</category-def>
|
|
||||||
<!-- END_2_0_1 -->
|
|
||||||
<!-- BEGIN_2_0_2 -->
|
|
||||||
<feature url="features/org.eclipse.rse.sdk_2.0.2.v20071030-7J-79E7ZoHPP5ZoeZ-oUe1z-wJnl.jar" id="org.eclipse.rse.sdk" version="2.0.2.v20071030-7J-79E7ZoHPP5ZoeZ-oUe1z-wJnl">
|
|
||||||
<category name="TM and RSE 2.0.2"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse_2.0.2.v20071030-7D-68mJIkR9WAviqV8z0U9vz-C.jar" id="org.eclipse.rse" version="2.0.2.v20071030-7D-68mJIkR9WAviqV8z0U9vz-C">
|
|
||||||
<category name="TM and RSE 2.0.2"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.examples_2.0.0.v20070609-6--9oA55P5M7Q.jar" id="org.eclipse.rse.examples" version="2.0.0.v20070609-6--9oA55P5M7Q">
|
|
||||||
<category name="TM and RSE 2.0.2"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.remotecdt_2.0.1.v20070926-4-18s733G3K5H.jar" id="org.eclipse.rse.remotecdt" version="2.0.1.v20070926-4-18s733G3K5H">
|
|
||||||
<category name="TM and RSE 2.0.2"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.tm.discovery_2.0.0.v20070611-7J--E8McIJNJCPr.jar" id="org.eclipse.tm.discovery" version="2.0.0.v20070611-7J--E8McIJNJCPr">
|
|
||||||
<category name="TM and RSE 2.0.2"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.tm.terminal.sdk_1.0.2.v20071030-7_-7CAvNKwNabWDLhQglhNDDmGSL.jar" id="org.eclipse.tm.terminal.sdk" version="1.0.2.v20071030-7_-7CAvNKwNabWDLhQglhNDDmGSL">
|
|
||||||
<category name="TM and RSE 2.0.2"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.core_2.0.2.v20071030-7P-7DEB7sQRxTz0jQb.jar" id="org.eclipse.rse.core" version="2.0.2.v20071030-7P-7DEB7sQRxTz0jQb">
|
|
||||||
<category name="TM and RSE 2.0.2"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.dstore_2.0.1.v20070926-7F-4DUUEF6FALu.jar" id="org.eclipse.rse.dstore" version="2.0.1.v20070926-7F-4DUUEF6FALu">
|
|
||||||
<category name="TM and RSE 2.0.2"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.ftp_2.0.1.v20070926-7737__kE77Y7dDK4I7B.jar" id="org.eclipse.rse.ftp" version="2.0.1.v20070926-7737__kE77Y7dDK4I7B">
|
|
||||||
<category name="TM and RSE 2.0.2"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.local_2.0.1.v20070705-7_-2AgI99h9l9l.jar" id="org.eclipse.rse.local" version="2.0.1.v20070705-7_-2AgI99h9l9l">
|
|
||||||
<category name="TM and RSE 2.0.2"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.ssh_2.0.1.v20070926-78-2_kE77Y7cAW.jar" id="org.eclipse.rse.ssh" version="2.0.1.v20070926-78-2_kE77Y7cAW">
|
|
||||||
<category name="TM and RSE 2.0.2"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.telnet_2.0.1.v20070704-637AAgI99h9mBW4I7B.jar" id="org.eclipse.rse.telnet" version="2.0.1.v20070704-637AAgI99h9mBW4I7B">
|
|
||||||
<category name="TM and RSE 2.0.2"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.tm.terminal_1.0.2.v20071030-1-17w31182141.jar" id="org.eclipse.tm.terminal" version="1.0.2.v20071030-1-17w31182141">
|
|
||||||
<category name="TM and RSE 2.0.2"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.tm.terminal.serial_1.0.2.v20071030-1-17w31182141.jar" id="org.eclipse.tm.terminal.serial" version="1.0.2.v20071030-1-17w31182141">
|
|
||||||
<category name="TM and RSE 2.0.2"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.tm.terminal.view_1.0.2.v20071023-1-17w31182134.jar" id="org.eclipse.tm.terminal.view" version="1.0.2.v20071023-1-17w31182134">
|
|
||||||
<category name="TM and RSE 2.0.2"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.tests_2.0.1.v20070926-6-19oA55P5SAG.jar" id="org.eclipse.rse.tests" version="2.0.1.v20070926-6-19oA55P5SAG">
|
|
||||||
<category name="TM and RSE 2.0.2"/>
|
|
||||||
</feature>
|
|
||||||
<category-def name="TM and RSE 2.0.2" label="TM and RSE 2.0.2">
|
|
||||||
<description>
|
|
||||||
Features and add-ons of the 2.0.2 release of Target Management / RSE.
|
|
||||||
</description>
|
|
||||||
</category-def>
|
|
||||||
<!-- END_2_0_2 -->
|
|
||||||
<!-- BEGIN_2_0_3 -->
|
|
||||||
<feature url="features/org.eclipse.rse.sdk_2.0.3.v20080225-7J-7EE7ZoHQURqoFwQQpz0MuGUHD.jar" id="org.eclipse.rse.sdk" version="2.0.3.v20080225-7J-7EE7ZoHQURqoFwQQpz0MuGUHD">
|
|
||||||
<category name="TM and RSE 2.0.3"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse_2.0.3.v20080225-7D-7A8mJIoa9WAvksISSE8yz-C.jar" id="org.eclipse.rse" version="2.0.3.v20080225-7D-7A8mJIoa9WAvksISSE8yz-C">
|
|
||||||
<category name="TM and RSE 2.0.3"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.examples_2.0.0.v20070609-6--9oA55P5M7Q.jar" id="org.eclipse.rse.examples" version="2.0.0.v20070609-6--9oA55P5M7Q">
|
|
||||||
<category name="TM and RSE 2.0.3"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.remotecdt_2.0.1.v20070926-4-18s733G3K5H.jar" id="org.eclipse.rse.remotecdt" version="2.0.1.v20070926-4-18s733G3K5H">
|
|
||||||
<category name="TM and RSE 2.0.3"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.tm.discovery_2.0.0.v20070611-7J--E8McIJNJCPr.jar" id="org.eclipse.tm.discovery" version="2.0.0.v20070611-7J--E8McIJNJCPr">
|
|
||||||
<category name="TM and RSE 2.0.3"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.tm.terminal.sdk_1.0.3.v20080225-7_-7QAvNRwRYVZHJaTqlhNDDqELO.jar" id="org.eclipse.tm.terminal.sdk" version="1.0.3.v20080225-7_-7QAvNRwRYVZHJaTqlhNDDqELO">
|
|
||||||
<category name="TM and RSE 2.0.3"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.core_2.0.3.v20080225-7P-7IEB7sQRz0SoiTb.jar" id="org.eclipse.rse.core" version="2.0.3.v20080225-7P-7IEB7sQRz0SoiTb">
|
|
||||||
<category name="TM and RSE 2.0.3"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.dstore_2.0.1.v20070926-7F-4DUUEF6FALu.jar" id="org.eclipse.rse.dstore" version="2.0.1.v20070926-7F-4DUUEF6FALu">
|
|
||||||
<category name="TM and RSE 2.0.3"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.ftp_2.0.3.v20080225-7737D_kE77a7PDI4I7B.jar" id="org.eclipse.rse.ftp" version="2.0.3.v20080225-7737D_kE77a7PDI4I7B">
|
|
||||||
<category name="TM and RSE 2.0.3"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.local_2.0.1.v20070705-7_-2AgI99h9l9l.jar" id="org.eclipse.rse.local" version="2.0.1.v20070705-7_-2AgI99h9l9l">
|
|
||||||
<category name="TM and RSE 2.0.3"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.ssh_2.0.3.v20080225-78-6_kE77a7OAU.jar" id="org.eclipse.rse.ssh" version="2.0.3.v20080225-78-6_kE77a7OAU">
|
|
||||||
<category name="TM and RSE 2.0.3"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.telnet_2.0.1.v20070704-637AAgI99h9mBW4I7B.jar" id="org.eclipse.rse.telnet" version="2.0.1.v20070704-637AAgI99h9mBW4I7B">
|
|
||||||
<category name="TM and RSE 2.0.3"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.tm.terminal_1.0.3.v20080225-1-27w31191336.jar" id="org.eclipse.tm.terminal" version="1.0.3.v20080225-1-27w31191336">
|
|
||||||
<category name="TM and RSE 2.0.3"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.tm.terminal.serial_1.0.2.v20071030-1-17w31182141.jar" id="org.eclipse.tm.terminal.serial" version="1.0.2.v20071030-1-17w31182141">
|
|
||||||
<category name="TM and RSE 2.0.3"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.tm.terminal.ssh_1.0.3.v20080225-1-27w31191336.jar" id="org.eclipse.tm.terminal.ssh" version="1.0.3.v20080225-1-27w31191336">
|
|
||||||
<category name="TM and RSE 2.0.3"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.tm.terminal.telnet_1.0.3.v20080225-1-27w31191336.jar" id="org.eclipse.tm.terminal.telnet" version="1.0.3.v20080225-1-27w31191336">
|
|
||||||
<category name="TM and RSE 2.0.3"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.tm.terminal.view_1.0.3.v20080225-1-27w31191336.jar" id="org.eclipse.tm.terminal.view" version="1.0.3.v20080225-1-27w31191336">
|
|
||||||
<category name="TM and RSE 2.0.3"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.tests_2.0.1.v20070926-6-19oA55P5SAG.jar" id="org.eclipse.rse.tests" version="2.0.1.v20070926-6-19oA55P5SAG">
|
|
||||||
<category name="TM and RSE 2.0.3"/>
|
|
||||||
</feature>
|
|
||||||
<category-def name="TM and RSE 2.0.3" label="TM and RSE 2.0.3">
|
|
||||||
<description>
|
|
||||||
Features and add-ons of the 2.0.3 release of Target Management / RSE.
|
|
||||||
</description>
|
|
||||||
</category-def>
|
|
||||||
<!-- END_2_0_3 -->
|
|
||||||
<!-- BEGIN_2_0_4 -->
|
|
||||||
<feature url="features/org.eclipse.rse.sdk_2.0.4.v20080418-7J-7GE7ZoHQVRsnIwSQpz0OuGULB.jar" id="org.eclipse.rse.sdk" version="2.0.4.v20080418-7J-7GE7ZoHQVRsnIwSQpz0OuGULB">
|
|
||||||
<category name="TM and RSE 2.0.4"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse_2.0.4.v20080418-7D-7B8mJIoc9WAvksIWQK8yz-C.jar" id="org.eclipse.rse" version="2.0.4.v20080418-7D-7B8mJIoc9WAvksIWQK8yz-C">
|
|
||||||
<category name="TM and RSE 2.0.4"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.examples_2.0.0.v20070609-6--9oA55P5M7Q.jar" id="org.eclipse.rse.examples" version="2.0.0.v20070609-6--9oA55P5M7Q">
|
|
||||||
<category name="TM and RSE 2.0.4"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.remotecdt_2.0.1.v20070926-4-18s733G3K5H.jar" id="org.eclipse.rse.remotecdt" version="2.0.1.v20070926-4-18s733G3K5H">
|
|
||||||
<category name="TM and RSE 2.0.4"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.tm.discovery_2.0.0.v20070611-7J--E8McIJNJCPr.jar" id="org.eclipse.tm.discovery" version="2.0.0.v20070611-7J--E8McIJNJCPr">
|
|
||||||
<category name="TM and RSE 2.0.4"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.tm.terminal.sdk_1.0.3.v20080225-7_-7QAvNRwRYVZHJaTqlhNDDqELO.jar" id="org.eclipse.tm.terminal.sdk" version="1.0.3.v20080225-7_-7QAvNRwRYVZHJaTqlhNDDqELO">
|
|
||||||
<category name="TM and RSE 2.0.4"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.core_2.0.3.v20080225-7P-7IEB7sQRz0SoiTb.jar" id="org.eclipse.rse.core" version="2.0.3.v20080225-7P-7IEB7sQRz0SoiTb">
|
|
||||||
<category name="TM and RSE 2.0.4"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.dstore_2.0.1.v20070926-7F-4DUUEF6FALu.jar" id="org.eclipse.rse.dstore" version="2.0.1.v20070926-7F-4DUUEF6FALu">
|
|
||||||
<category name="TM and RSE 2.0.4"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.ftp_2.0.4.v20080418-7737F_kE77a7TBO4I7B.jar" id="org.eclipse.rse.ftp" version="2.0.4.v20080418-7737F_kE77a7TBO4I7B">
|
|
||||||
<category name="TM and RSE 2.0.4"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.local_2.0.1.v20070705-7_-2AgI99h9l9l.jar" id="org.eclipse.rse.local" version="2.0.1.v20070705-7_-2AgI99h9l9l">
|
|
||||||
<category name="TM and RSE 2.0.4"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.ssh_2.0.3.v20080225-78-6_kE77a7OAU.jar" id="org.eclipse.rse.ssh" version="2.0.3.v20080225-78-6_kE77a7OAU">
|
|
||||||
<category name="TM and RSE 2.0.4"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.telnet_2.0.1.v20070704-637AAgI99h9mBW4I7B.jar" id="org.eclipse.rse.telnet" version="2.0.1.v20070704-637AAgI99h9mBW4I7B">
|
|
||||||
<category name="TM and RSE 2.0.4"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.tm.terminal_1.0.3.v20080225-1-27w31191336.jar" id="org.eclipse.tm.terminal" version="1.0.3.v20080225-1-27w31191336">
|
|
||||||
<category name="TM and RSE 2.0.4"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.tm.terminal.serial_1.0.2.v20071030-1-17w31182141.jar" id="org.eclipse.tm.terminal.serial" version="1.0.2.v20071030-1-17w31182141">
|
|
||||||
<category name="TM and RSE 2.0.4"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.tm.terminal.ssh_1.0.3.v20080225-1-27w31191336.jar" id="org.eclipse.tm.terminal.ssh" version="1.0.3.v20080225-1-27w31191336">
|
|
||||||
<category name="TM and RSE 2.0.4"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.tm.terminal.telnet_1.0.3.v20080225-1-27w31191336.jar" id="org.eclipse.tm.terminal.telnet" version="1.0.3.v20080225-1-27w31191336">
|
|
||||||
<category name="TM and RSE 2.0.4"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.tm.terminal.view_1.0.3.v20080225-1-27w31191336.jar" id="org.eclipse.tm.terminal.view" version="1.0.3.v20080225-1-27w31191336">
|
|
||||||
<category name="TM and RSE 2.0.4"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.tests_2.0.1.v20070926-6-19oA55P5SAG.jar" id="org.eclipse.rse.tests" version="2.0.1.v20070926-6-19oA55P5SAG">
|
|
||||||
<category name="TM and RSE 2.0.4"/>
|
|
||||||
</feature>
|
|
||||||
<category-def name="TM and RSE 2.0.4" label="TM and RSE 2.0.4">
|
|
||||||
<description>
|
|
||||||
Features and add-ons of the 2.0.4 release of Target Management / RSE.
|
|
||||||
</description>
|
|
||||||
</category-def>
|
|
||||||
<!-- END_2_0_4 -->
|
|
||||||
<!-- BEGIN_3_0 -->
|
|
||||||
<feature url="features/org.eclipse.rse.core_3.0.0.v20080609-7Z3-EB7sQS9RiVd.jar" id="org.eclipse.rse.core" version="3.0.0.v20080609-7Z3-EB7sQS9RiVd">
|
|
||||||
<category name="TM and RSE 3.0"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.dstore_3.0.0.v20080609-7J3-DUUEFDEyF.jar" id="org.eclipse.rse.dstore" version="3.0.0.v20080609-7J3-DUUEFDEyF">
|
|
||||||
<category name="TM and RSE 3.0"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.ftp_3.0.0.v20080609-78478_kE77c7O7W5I55.jar" id="org.eclipse.rse.ftp" version="3.0.0.v20080609-78478_kE77c7O7W5I55">
|
|
||||||
<category name="TM and RSE 3.0"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.local_2.1.0.v20080604-7_4-AgI99m9c9S.jar" id="org.eclipse.rse.local" version="2.1.0.v20080604-7_4-AgI99m9c9S">
|
|
||||||
<category name="TM and RSE 3.0"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse_3.0.0.v20080609-7H3-8qfbaJJZCz-G-QT8RWUC6.jar" id="org.eclipse.rse" version="3.0.0.v20080609-7H3-8qfbaJJZCz-G-QT8RWUC6">
|
|
||||||
<category name="TM and RSE 3.0"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.sdk_3.0.0.v20080609-7Q3-E8VwNKi_uz0rSEApXAaTcHQS.jar" id="org.eclipse.rse.sdk" version="3.0.0.v20080609-7Q3-E8VwNKi_uz0rSEApXAaTcHQS">
|
|
||||||
<category name="TM and RSE 3.0"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.ssh_2.1.0.v20080604-783-_kE77c7U7M.jar" id="org.eclipse.rse.ssh" version="2.1.0.v20080604-783-_kE77c7U7M">
|
|
||||||
<category name="TM and RSE 3.0"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.telnet_2.1.0.v20080604-6678AgI99m9W9W5I55.jar" id="org.eclipse.rse.telnet" version="2.1.0.v20080604-6678AgI99m9W9W5I55">
|
|
||||||
<category name="TM and RSE 3.0"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.examples_3.0.0.v20080604-780-9oA55S5M5G.jar" id="org.eclipse.rse.examples" version="3.0.0.v20080604-780-9oA55S5M5G">
|
|
||||||
<category name="TM and RSE 3.0"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.remotecdt_2.1.0.v20080604-41-8s733I3E39.jar" id="org.eclipse.rse.remotecdt" version="2.1.0.v20080604-41-8s733I3E39">
|
|
||||||
<category name="TM and RSE 3.0"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.terminals_0.1.0.v20080610-22-9sB6EO_O8X2842.jar" id="org.eclipse.rse.terminals" version="0.1.0.v20080610-22-9sB6EO_O8X2842">
|
|
||||||
<category name="TM and RSE 3.0"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.useractions_1.1.0.v20080604-21-8s733I3E3A.jar" id="org.eclipse.rse.useractions" version="1.1.0.v20080604-21-8s733I3E3A">
|
|
||||||
<category name="TM and RSE 3.0"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.wince_0.1.0.v20080604-02-9oA55S5M5I.jar" id="org.eclipse.rse.wince" version="0.1.0.v20080604-02-9oA55S5M5I" os="win32" arch="x86">
|
|
||||||
<category name="TM and RSE 3.0"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.tm.discovery_3.0.0.v20080530-7N-E8ME8McIJXIwdh.jar" id="org.eclipse.tm.discovery" version="3.0.0.v20080530-7N-E8ME8McIJXIwdh">
|
|
||||||
<category name="TM and RSE 3.0"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.tm.terminal.sdk_2.0.0.v20080609-7J--B-NDwSXnUKIyQYlhNDDrDeLT.jar" id="org.eclipse.tm.terminal.sdk" version="2.0.0.v20080609-7J--B-NDwSXnUKIyQYlhNDDrDeLT">
|
|
||||||
<category name="TM and RSE 3.0"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.tests_3.0.0.v20080605-7D3_79oA55S5M5J.jar" id="org.eclipse.rse.tests" version="3.0.0.v20080605-7D3_79oA55S5M5J">
|
|
||||||
<category name="TM and RSE 3.0"/>
|
|
||||||
</feature>
|
|
||||||
<category-def name="TM and RSE 3.0" label="TM and RSE 3.0">
|
|
||||||
<description>
|
|
||||||
Features and add-ons of the 3.0 release of Target Management / RSE.
|
|
||||||
</description>
|
|
||||||
</category-def>
|
|
||||||
<!-- END_3_0 -->
|
|
||||||
<!-- BEGIN_3_0_1 -->
|
|
||||||
<feature url="features/org.eclipse.rse.core_3.0.1.v200809171600-7Z379EB7sQS9S4YPJaHC.jar" id="org.eclipse.rse.core" version="3.0.1.v200809171600-7Z379EB7sQS9S4YPJaHC">
|
|
||||||
<category name="TM and RSE 3.0.1"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.dstore_3.0.1.v200809181500-7J32DUUEFDF8Hu9FH7.jar" id="org.eclipse.rse.dstore" version="3.0.1.v200809181500-7J32DUUEFDF8Hu9FH7">
|
|
||||||
<category name="TM and RSE 3.0.1"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.ftp_3.0.1.v200809171630-78479_kE77c7Q8b8T_F.jar" id="org.eclipse.rse.ftp" version="3.0.1.v200809171630-78479_kE77c7Q8b8T_F">
|
|
||||||
<category name="TM and RSE 3.0.1"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.local_2.1.1.v20080710-7_40AgI99m9d_O.jar" id="org.eclipse.rse.local" version="2.1.1.v20080710-7_40AgI99m9d_O">
|
|
||||||
<category name="TM and RSE 3.0.1"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse_3.0.1.v200809181500-7H368qfenEMeUOENNFdiKV_gK8.jar" id="org.eclipse.rse" version="3.0.1.v200809181500-7H368qfenEMeUOENNFdiKV_gK8">
|
|
||||||
<category name="TM and RSE 3.0.1"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.sdk_3.0.1.v200809181500-7Q379E8VwNRiAF6ydJFuZH7RGg1d.jar" id="org.eclipse.rse.sdk" version="3.0.1.v200809181500-7Q379E8VwNRiAF6ydJFuZH7RGg1d">
|
|
||||||
<category name="TM and RSE 3.0.1"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.ssh_2.1.1.v20080714-7830_kE77c7V8M.jar" id="org.eclipse.rse.ssh" version="2.1.1.v20080714-7830_kE77c7V8M">
|
|
||||||
<category name="TM and RSE 3.0.1"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.telnet_2.1.1.v200809181500-6678AgI99m9W9X5J79.jar" id="org.eclipse.rse.telnet" version="2.1.1.v200809181500-6678AgI99m9W9X5J79">
|
|
||||||
<category name="TM and RSE 3.0.1"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.examples_3.0.0.v20080604-780-9oA55S5M5G.jar" id="org.eclipse.rse.examples" version="3.0.0.v20080604-780-9oA55S5M5G">
|
|
||||||
<category name="TM and RSE 3.0.1"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.remotecdt_2.1.1.v200809041200-4118s733I3J4F5C48.jar" id="org.eclipse.rse.remotecdt" version="2.1.1.v200809041200-4118s733I3J4F5C48">
|
|
||||||
<category name="TM and RSE 3.0.1"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.terminals_0.1.1.v200809041200-2229sB7EO_T_T5C6B3457.jar" id="org.eclipse.rse.terminals" version="0.1.1.v200809041200-2229sB7EO_T_T5C6B3457">
|
|
||||||
<category name="TM and RSE 3.0.1"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.useractions_1.1.1.v200809041200-2118s733I3K484673.jar" id="org.eclipse.rse.useractions" version="1.1.1.v200809041200-2118s733I3K484673">
|
|
||||||
<category name="TM and RSE 3.0.1"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.wince_0.1.1.v20080626-0219oA55S5M9M.jar" id="org.eclipse.rse.wince" version="0.1.1.v20080626-0219oA55S5M9M" os="win32" arch="x86">
|
|
||||||
<category name="TM and RSE 3.0.1"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.tm.discovery_3.0.0.v20080530-7N-E8ME8McIJXIwdh.jar" id="org.eclipse.tm.discovery" version="3.0.0.v20080530-7N-E8ME8McIJXIwdh">
|
|
||||||
<category name="TM and RSE 3.0.1"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.tm.terminal.sdk_2.0.1.v200807281235-7J-79B-NIwSXwVTN4Y0c5RRRNHYG.jar" id="org.eclipse.tm.terminal.sdk" version="2.0.1.v200807281235-7J-79B-NIwSXwVTN4Y0c5RRRNHYG">
|
|
||||||
<category name="TM and RSE 3.0.1"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.tests_3.0.1.v200809041200-7D3_99oA55S5R7H2311.jar" id="org.eclipse.rse.tests" version="3.0.1.v200809041200-7D3_99oA55S5R7H2311">
|
|
||||||
<category name="TM and RSE 3.0.1"/>
|
|
||||||
</feature>
|
|
||||||
<category-def name="TM and RSE 3.0.1" label="TM and RSE 3.0.1">
|
|
||||||
<description>
|
|
||||||
Features and add-ons of the 3.0.1 release of Target Management / RSE.
|
|
||||||
</description>
|
|
||||||
</category-def>
|
|
||||||
<!-- END_3_0_1 -->
|
|
||||||
<!-- BEGIN_3_0_2 -->
|
|
||||||
<feature url="features/org.eclipse.rse.core_3.0.2.v200812041720-7Z37BEB7sQS9UkXMIjJI.jar" id="org.eclipse.rse.core" version="3.0.2.v200812041720-7Z37BEB7sQS9UkXMIjJI">
|
|
||||||
<category name="TM and RSE 3.0.2"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.dstore_3.0.2.v200812041720-7J35DUUEFDHoHxAT97.jar" id="org.eclipse.rse.dstore" version="3.0.2.v200812041720-7J35DUUEFDHoHxAT97">
|
|
||||||
<category name="TM and RSE 3.0.2"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.ftp_3.0.1.v200809171630-78479_kE77c7Q8b8T_F.jar" id="org.eclipse.rse.ftp" version="3.0.1.v200809171630-78479_kE77c7Q8b8T_F">
|
|
||||||
<category name="TM and RSE 3.0.2"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.local_2.1.1.v20080710-7_40AgI99m9d_O.jar" id="org.eclipse.rse.local" version="2.1.1.v20080710-7_40AgI99m9d_O">
|
|
||||||
<category name="TM and RSE 3.0.2"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse_3.0.2.v200812041720-7H3788qfeqHMeUOEQ2IKjVLIiQ8.jar" id="org.eclipse.rse" version="3.0.2.v200812041720-7H3788qfeqHMeUOEQ2IKjVLIiQ8">
|
|
||||||
<category name="TM and RSE 3.0.2"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.sdk_3.0.2.v200812041720-7Q37BE8VwNShWC5jCH32fQz0U6Ng.jar" id="org.eclipse.rse.sdk" version="3.0.2.v200812041720-7Q37BE8VwNShWC5jCH32fQz0U6Ng">
|
|
||||||
<category name="TM and RSE 3.0.2"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.ssh_2.1.1.v20080714-7830_kE77c7V8M.jar" id="org.eclipse.rse.ssh" version="2.1.1.v20080714-7830_kE77c7V8M">
|
|
||||||
<category name="TM and RSE 3.0.2"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.telnet_2.1.1.v200809181500-6678AgI99m9W9X5J79.jar" id="org.eclipse.rse.telnet" version="2.1.1.v200809181500-6678AgI99m9W9X5J79">
|
|
||||||
<category name="TM and RSE 3.0.2"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.examples_3.0.0.v20080604-780-9oA55S5M5G.jar" id="org.eclipse.rse.examples" version="3.0.0.v20080604-780-9oA55S5M5G">
|
|
||||||
<category name="TM and RSE 3.0.2"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.remotecdt_2.1.1.v200809041200-4118s733I3J4F5C48.jar" id="org.eclipse.rse.remotecdt" version="2.1.1.v200809041200-4118s733I3J4F5C48">
|
|
||||||
<category name="TM and RSE 3.0.2"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.terminals_0.1.1.v200809041200-2229sB7EO_T_T5C6B3457.jar" id="org.eclipse.rse.terminals" version="0.1.1.v200809041200-2229sB7EO_T_T5C6B3457">
|
|
||||||
<category name="TM and RSE 3.0.2"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.useractions_1.1.2.v200812041720-2138s733I573A5G73.jar" id="org.eclipse.rse.useractions" version="1.1.2.v200812041720-2138s733I573A5G73">
|
|
||||||
<category name="TM and RSE 3.0.2"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.wince_0.1.1.v20080626-0219oA55S5M9M.jar" id="org.eclipse.rse.wince" version="0.1.1.v20080626-0219oA55S5M9M" os="win32" arch="x86">
|
|
||||||
<category name="TM and RSE 3.0.2"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.tm.discovery_3.0.0.v20080530-7N-E8ME8McIJXIwdh.jar" id="org.eclipse.tm.discovery" version="3.0.0.v20080530-7N-E8ME8McIJXIwdh">
|
|
||||||
<category name="TM and RSE 3.0.2"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.tm.terminal.sdk_2.0.2.v200811110900-7J-7AB-NJwSYqUMN5TqbBONRNHYG.jar" id="org.eclipse.tm.terminal.sdk" version="2.0.2.v200811110900-7J-7AB-NJwSYqUMN5TqbBONRNHYG">
|
|
||||||
<category name="TM and RSE 3.0.2"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.tests_3.0.1.v200809041200-7D3_99oA55S5R7H2311.jar" id="org.eclipse.rse.tests" version="3.0.1.v200809041200-7D3_99oA55S5R7H2311">
|
|
||||||
<category name="TM and RSE 3.0.2"/>
|
|
||||||
</feature>
|
|
||||||
<category-def name="TM and RSE 3.0.2" label="TM and RSE 3.0.2">
|
|
||||||
<description>
|
|
||||||
Features and add-ons of the 3.0.2 release of Target Management / RSE.
|
|
||||||
</description>
|
|
||||||
</category-def>
|
|
||||||
<!-- END_3_0_2 -->
|
|
||||||
<!-- BEGIN_3_0_3 -->
|
|
||||||
<feature url="features/org.eclipse.rse.core_3.0.3.v200902042310-7Z37HEB7sQSCRiULOVOE.jar" id="org.eclipse.rse.core" version="3.0.3.v200902042310-7Z37HEB7sQSCRiULOVOE">
|
|
||||||
<category name="TM and RSE 3.0.3"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.dstore_3.0.3.v200902042310-7J378DUUEFGEpIz-AW8E.jar" id="org.eclipse.rse.dstore" version="3.0.3.v200902042310-7J378DUUEFGEpIz-AW8E">
|
|
||||||
<category name="TM and RSE 3.0.3"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.ftp_3.0.1.v200809171630-78479_kE77c7Q8b8T_F.jar" id="org.eclipse.rse.ftp" version="3.0.1.v200809171630-78479_kE77c7Q8b8T_F">
|
|
||||||
<category name="TM and RSE 3.0.3"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.local_2.1.1.v20080710-7_40AgI99m9d_O.jar" id="org.eclipse.rse.local" version="2.1.1.v20080710-7_40AgI99m9d_O">
|
|
||||||
<category name="TM and RSE 3.0.3"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse_3.0.3.v200902042310-7H37E8qfisI6diJKMbrhR-TV-a3.jar" id="org.eclipse.rse" version="3.0.3.v200902042310-7H37E8qfisI6diJKMbrhR-TV-a3">
|
|
||||||
<category name="TM and RSE 3.0.3"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.sdk_3.0.3.v200902042310-7Q37JE8VwNSsU34mKIp3tM4Uhwlm.jar" id="org.eclipse.rse.sdk" version="3.0.3.v200902042310-7Q37JE8VwNSsU34mKIp3tM4Uhwlm">
|
|
||||||
<category name="TM and RSE 3.0.3"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.ssh_2.1.1.v20080714-7830_kE77c7V8M.jar" id="org.eclipse.rse.ssh" version="2.1.1.v20080714-7830_kE77c7V8M">
|
|
||||||
<category name="TM and RSE 3.0.3"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.telnet_2.1.1.v200809181500-6678AgI99m9W9X5J79.jar" id="org.eclipse.rse.telnet" version="2.1.1.v200809181500-6678AgI99m9W9X5J79">
|
|
||||||
<category name="TM and RSE 3.0.3"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.examples_3.0.0.v20080604-780-9oA55S5M5G.jar" id="org.eclipse.rse.examples" version="3.0.0.v20080604-780-9oA55S5M5G">
|
|
||||||
<category name="TM and RSE 3.0.3"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.remotecdt_2.1.1.v200809041200-4118s733I3J4F5C48.jar" id="org.eclipse.rse.remotecdt" version="2.1.1.v200809041200-4118s733I3J4F5C48">
|
|
||||||
<category name="TM and RSE 3.0.3"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.terminals_0.1.3.v200902181600-2269sB9EP_M_W5B5B3822.jar" id="org.eclipse.rse.terminals" version="0.1.3.v200902181600-2269sB9EP_M_W5B5B3822">
|
|
||||||
<category name="TM and RSE 3.0.3"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.useractions_1.1.2.v200812041720-2138s733I573A5G73.jar" id="org.eclipse.rse.useractions" version="1.1.2.v200812041720-2138s733I573A5G73">
|
|
||||||
<category name="TM and RSE 3.0.3"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.wince_0.1.1.v20080626-0219oA55S5M9M.jar" id="org.eclipse.rse.wince" version="0.1.1.v20080626-0219oA55S5M9M" os="win32" arch="x86">
|
|
||||||
<category name="TM and RSE 3.0.3"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.tm.discovery_3.0.0.v20080530-7N-E8ME8McIJXIwdh.jar" id="org.eclipse.tm.discovery" version="3.0.0.v20080530-7N-E8ME8McIJXIwdh">
|
|
||||||
<category name="TM and RSE 3.0.3"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.tm.terminal.sdk_2.0.3.v200902181600-7J-7EB-NLwTYlTNN4PlbFLKRNHYG.jar" id="org.eclipse.tm.terminal.sdk" version="2.0.3.v200902181600-7J-7EB-NLwTYlTNN4PlbFLKRNHYG">
|
|
||||||
<category name="TM and RSE 3.0.3"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.tests_3.0.1.v200809041200-7D3_99oA55S5R7H2311.jar" id="org.eclipse.rse.tests" version="3.0.1.v200809041200-7D3_99oA55S5R7H2311">
|
|
||||||
<category name="TM and RSE 3.0.3"/>
|
|
||||||
</feature>
|
|
||||||
<category-def name="TM and RSE 3.0.3" label="TM and RSE 3.0.3">
|
|
||||||
<description>
|
|
||||||
Features and add-ons of the 3.0.3 release of Target Management / RSE.
|
|
||||||
</description>
|
|
||||||
</category-def>
|
|
||||||
<!-- END_3_0_3 -->
|
|
||||||
<!-- BEGIN_3_1 -->
|
|
||||||
<feature url="features/org.eclipse.rse.core_3.1.0.v200905272300-7a7CEoFC7sRTNS_oZt3fk.jar" id="org.eclipse.rse.core" version="3.1.0.v200905272300-7a7CEoFC7sRTNS_oZt3fk">
|
|
||||||
<category name="TM and RSE 3.1"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.dstore_3.1.0.v200905272300-7L6EoEVVFGMFvQtVaPU.jar" id="org.eclipse.rse.dstore" version="3.1.0.v200905272300-7L6EoEVVFGMFvQtVaPU">
|
|
||||||
<category name="TM and RSE 3.1"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.ftp_3.0.100.v200905272300-780A79oB55W5KBQBD9D.jar" id="org.eclipse.rse.ftp" version="3.0.100.v200905272300-780A79oB55W5KBQBD9D">
|
|
||||||
<category name="TM and RSE 3.1"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.local_2.1.100.v200905272300-7B4EoBgJ99r9YJhJO99.jar" id="org.eclipse.rse.local" version="2.1.100.v200905272300-7B4EoBgJ99r9YJhJO99">
|
|
||||||
<category name="TM and RSE 3.1"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse_3.1.0.v200905272300-7L5A78wqaCHMdrOqK3DvjpYKCnp3.jar" id="org.eclipse.rse" version="3.1.0.v200905272300-7L5A78wqaCHMdrOqK3DvjpYKCnp3">
|
|
||||||
<category name="TM and RSE 3.1"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.sdk_3.1.0.v200905272300-7U78A7F8Wz-QWqV1Uz0r3gyz0Pcu.jar" id="org.eclipse.rse.sdk" version="3.1.0.v200905272300-7U78A7F8Wz-QWqV1Uz0r3gyz0Pcu">
|
|
||||||
<category name="TM and RSE 3.1"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.ssh_3.0.0.v200905272300-7A2BgAkF77g7RFZFJ77.jar" id="org.eclipse.rse.ssh" version="3.0.0.v200905272300-7A2BgAkF77g7RFZFJ77">
|
|
||||||
<category name="TM and RSE 3.1"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.telnet_2.2.0.v200905272300-773-AkF77g7RFZFIBF.jar" id="org.eclipse.rse.telnet" version="2.2.0.v200905272300-773-AkF77g7RFZFIBF">
|
|
||||||
<category name="TM and RSE 3.1"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.examples_3.1.0.v200905272300-7B5-AkF77g7RFZFJ77.jar" id="org.eclipse.rse.examples" version="3.1.0.v200905272300-7B5-AkF77g7RFZFJ77">
|
|
||||||
<category name="TM and RSE 3.1"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.terminals_1.0.0.v200905272300-77--9uC6FSANEbEMAF4522.jar" id="org.eclipse.rse.terminals" version="1.0.0.v200905272300-77--9uC6FSANEbEMAF4522">
|
|
||||||
<category name="TM and RSE 3.1"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.tests_3.1.0.v200905272300-7H5F8NAkF77g7RFZFJ77.jar" id="org.eclipse.rse.tests" version="3.1.0.v200905272300-7H5F8NAkF77g7RFZFJ77">
|
|
||||||
<category name="TM and RSE 3.1"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.useractions_1.1.100.v200905272300-31A78s733L3D7H7933.jar" id="org.eclipse.rse.useractions" version="1.1.100.v200905272300-31A78s733L3D7H7933">
|
|
||||||
<category name="TM and RSE 3.1"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.wince_0.2.0.v200905272300-15A7AkF77g7RFZFJ77.jar" id="org.eclipse.rse.wince" version="0.2.0.v200905272300-15A7AkF77g7RFZFJ77" os="win32" arch="x86">
|
|
||||||
<category name="TM and RSE 3.1"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.tm.discovery_3.0.100.v200905272300-7d-FhJFEx2XZtYr4N3JXX.jar" id="org.eclipse.tm.discovery" version="3.0.100.v200905272300-7d-FhJFEx2XZtYr4N3JXX">
|
|
||||||
<category name="TM and RSE 3.1"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.tm.terminal.sdk_3.0.0.v200905272300-7N-FBVC5OpbOz0uZ45hjchPQEB.jar" id="org.eclipse.tm.terminal.sdk" version="3.0.0.v200905272300-7N-FBVC5OpbOz0uZ45hjchPQEB">
|
|
||||||
<category name="TM and RSE 3.1"/>
|
|
||||||
</feature>
|
|
||||||
<category-def name="TM and RSE 3.1" label="TM and RSE 3.1">
|
|
||||||
<description>
|
|
||||||
Features and add-ons of the 3.1 release of Target Management / RSE.
|
|
||||||
</description>
|
|
||||||
</category-def>
|
|
||||||
<!-- END_3_1 -->
|
|
||||||
<!-- BEGIN_3_1_1 -->
|
|
||||||
<feature url="features/org.eclipse.rse.core_3.1.1.v200907301400-7a7CEwFC7sRTNSwodfv_u.jar" id="org.eclipse.rse.core" version="3.1.1.v200907301400-7a7CEwFC7sRTNSwodfv_u">
|
|
||||||
<category name="TM and RSE 3.1.1"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.dstore_3.1.1.v200907301400-7L6EsEVVFGMG4TyOVFU.jar" id="org.eclipse.rse.dstore" version="3.1.1.v200907301400-7L6EsEVVFGMG4TyOVFU">
|
|
||||||
<category name="TM and RSE 3.1.1"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.ftp_3.0.101.v200909160005-780A89oB55W5OAP9A9I.jar" id="org.eclipse.rse.ftp" version="3.0.101.v200909160005-780A89oB55W5OAP9A9I">
|
|
||||||
<category name="TM and RSE 3.1.1"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.local_2.1.101.v200907301400-7B4EqBgJ99r9dJ_GM9E.jar" id="org.eclipse.rse.local" version="2.1.101.v200907301400-7B4EqBgJ99r9dJ_GM9E">
|
|
||||||
<category name="TM and RSE 3.1.1"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse_3.1.1.v200907301400-7L5AE8wqaHPUdsOqKFUpxnbxGiz-.jar" id="org.eclipse.rse" version="3.1.1.v200907301400-7L5AE8wqaHPUdsOqKFUpxnbxGiz-">
|
|
||||||
<category name="TM and RSE 3.1.1"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.sdk_3.1.1.v200907301400-7U78AFF8Wz-QWxVKUVnCs7-PcuWk.jar" id="org.eclipse.rse.sdk" version="3.1.1.v200907301400-7U78AFF8Wz-QWxVKUVnCs7-PcuWk">
|
|
||||||
<category name="TM and RSE 3.1.1"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.ssh_3.0.1.v200909160005-7A2BhAkF77g7VEYDG7C.jar" id="org.eclipse.rse.ssh" version="3.0.1.v200909160005-7A2BhAkF77g7VEYDG7C">
|
|
||||||
<category name="TM and RSE 3.1.1"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.telnet_2.2.1.v200908051630-7730AkF77g7UDXELEF.jar" id="org.eclipse.rse.telnet" version="2.2.1.v200908051630-7730AkF77g7UDXELEF">
|
|
||||||
<category name="TM and RSE 3.1.1"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.examples_3.1.0.v200905272300-7B5-AkF77g7RFZFJ77.jar" id="org.eclipse.rse.examples" version="3.1.0.v200905272300-7B5-AkF77g7RFZFJ77">
|
|
||||||
<category name="TM and RSE 3.1.1"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.terminals_1.0.1.v200907301400-77-39uC7FSAW8XBVLD3622.jar" id="org.eclipse.rse.terminals" version="1.0.1.v200907301400-77-39uC7FSAW8XBVLD3622">
|
|
||||||
<category name="TM and RSE 3.1.1"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.tests_3.1.1.v200909160005-7H5F8PAkF77g7ZDXBD7H.jar" id="org.eclipse.rse.tests" version="3.1.1.v200909160005-7H5F8PAkF77g7ZDXBD7H">
|
|
||||||
<category name="TM and RSE 3.1.1"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.useractions_1.1.100.v200905272300-31A78s733L3D7H7933.jar" id="org.eclipse.rse.useractions" version="1.1.100.v200905272300-31A78s733L3D7H7933">
|
|
||||||
<category name="TM and RSE 3.1.1"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.wince_0.2.0.v200905272300-15A7AkF77g7RFZFJ77.jar" id="org.eclipse.rse.wince" version="0.2.0.v200905272300-15A7AkF77g7RFZFJ77" os="win32" arch="x86">
|
|
||||||
<category name="TM and RSE 3.1.1"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.tm.discovery_3.0.100.v200905272300-7d-FhJFEx2XZtYr4N3JXX.jar" id="org.eclipse.tm.discovery" version="3.0.100.v200905272300-7d-FhJFEx2XZtYr4N3JXX">
|
|
||||||
<category name="TM and RSE 3.1.1"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.tm.terminal.sdk_3.0.1.v200907301400-7N-FBaC5OqdP-0Zr1iqaZNOEG.jar" id="org.eclipse.tm.terminal.sdk" version="3.0.1.v200907301400-7N-FBaC5OqdP-0Zr1iqaZNOEG">
|
|
||||||
<category name="TM and RSE 3.1.1"/>
|
|
||||||
</feature>
|
|
||||||
<category-def name="TM and RSE 3.1.1" label="TM and RSE 3.1.1">
|
|
||||||
<description>
|
|
||||||
Features and add-ons of the 3.1.1 release of Target Management / RSE.
|
|
||||||
</description>
|
|
||||||
</category-def>
|
|
||||||
<!-- END_3_1_1 -->
|
|
||||||
<!-- BEGIN_3_2 -->
|
|
||||||
<feature url="features/org.eclipse.rse.core_3.2.0.v201005221100-7a7FFMRFC7sRd_SMeDdXwc.jar" id="org.eclipse.rse.core" version="3.2.0.v201005221100-7a7FFMRFC7sRd_SMeDdXwc">
|
|
||||||
<category name="TM and RSE Uncategorized 3.2"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.dstore_3.2.0.v201005221100-7L77FD4EVVFKfFtSeLjMK.jar" id="org.eclipse.rse.dstore" version="3.2.0.v201005221100-7L77FD4EVVFKfFtSeLjMK">
|
|
||||||
<category name="TM and RSE Uncategorized 3.2"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.ftp_3.0.200.v201005221100-780Bg9oB56N5J9QBADD.jar" id="org.eclipse.rse.ftp" version="3.0.200.v201005221100-780Bg9oB56N5J9QBADD">
|
|
||||||
<category name="TM and RSE Uncategorized 3.2"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.local_2.1.200.v201005221100-7B4F8OBgJ9Ai9_K_HT99.jar" id="org.eclipse.rse.local" version="2.1.200.v201005221100-7B4F8OBgJ9Ai9_K_HT99">
|
|
||||||
<category name="TM and RSE Uncategorized 3.2"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse_3.2.0.v201005221100-7L78F9w8wqbPbMa4q_8Q9aKRhAED.jar" id="org.eclipse.rse" version="3.2.0.v201005221100-7L78F9w8wqbPbMa4q_8Q9aKRhAED">
|
|
||||||
<category name="TM and RSE Uncategorized 3.2"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.sdk_3.2.0.v201005221100-7U7EF9wF8Wz-Sc_Vz0mhJFsz-Vat.jar" id="org.eclipse.rse.sdk" version="3.2.0.v201005221100-7U7EF9wF8Wz-Sc_Vz0mhJFsz-Vat">
|
|
||||||
<category name="TM and RSE Uncategorized 3.2"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.ssh_3.0.100.v201005221100-7A2BhAkF77g7VEYDG7C.jar" id="org.eclipse.rse.ssh" version="3.0.100.v201005221100-7A2BhAkF77g7VEYDG7C">
|
|
||||||
<category name="TM and RSE Uncategorized 3.2"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.telnet_2.2.100.v201005221100-7730AkF77g7UDXELEF.jar" id="org.eclipse.rse.telnet" version="2.2.100.v201005221100-7730AkF77g7UDXELEF">
|
|
||||||
<category name="TM and RSE Uncategorized 3.2"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.examples_3.1.100.v201005032000-7B5-AkF77g7RFZFJ77.jar" id="org.eclipse.rse.examples" version="3.1.100.v201005032000-7B5-AkF77g7RFZFJ77">
|
|
||||||
<category name="TM and RSE Uncategorized 3.2"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.terminals_1.0.100.v201005221100-77-DG9uCFhO1U8MBKRC63562.jar" id="org.eclipse.rse.terminals" version="1.0.100.v201005221100-77-DG9uCFhO1U8MBKRC63562">
|
|
||||||
<category name="TM and RSE Uncategorized 3.2"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.tests_3.2.0.v201005221100-7H78F8NAkF79P7TBVBRFH.jar" id="org.eclipse.rse.tests" version="3.2.0.v201005221100-7H78F8NAkF79P7TBVBRFH">
|
|
||||||
<category name="TM and RSE Uncategorized 3.2"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.useractions_1.1.200.v201005221100-31A78s733L3D7H7933.jar" id="org.eclipse.rse.useractions" version="1.1.200.v201005221100-31A78s733L3D7H7933">
|
|
||||||
<category name="TM and RSE Uncategorized 3.2"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.wince_0.2.100.v201005221100-15A7AkF77g7RFZFJ77.jar" id="org.eclipse.rse.wince" version="0.2.100.v201005221100-15A7AkF77g7RFZFJ77" os="win32" arch="x86">
|
|
||||||
<category name="TM and RSE Uncategorized 3.2"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.tm.discovery_3.0.200.v201005032000-7d-FhJFEx2XZtYr4N3JXX.jar" id="org.eclipse.tm.discovery" version="3.0.200.v201005032000-7d-FhJFEx2XZtYr4N3JXX">
|
|
||||||
<category name="TM and RSE Uncategorized 3.2"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.tm.terminal.sdk_3.1.0.v201006030830-7N1FJKC5PrDz-z0z0UrkbxbcKOLG.jar" id="org.eclipse.tm.terminal.sdk" version="3.1.0.v201006030830-7N1FJKC5PrDz-z0z0UrkbxbcKOLG">
|
|
||||||
<category name="TM and RSE Uncategorized 3.2"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.tm.terminal.local_0.1.0.v201006041240-10-7w312117152433.jar" id="org.eclipse.tm.terminal.local" version="0.1.0.v201006041240-10-7w312117152433" os="linux,macosx,solaris">
|
|
||||||
<category name="TM and RSE Uncategorized 3.2"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.tm.terminal.local.sdk_0.1.0.v201006030730-62A7898Dw37ICFBPIKEEHE2.jar" id="org.eclipse.tm.terminal.local.sdk" version="0.1.0.v201006030730-62A7898Dw37ICFBPIKEEHE2" os="linux,macosx,solaris">
|
|
||||||
<category name="TM and RSE Uncategorized 3.2"/>
|
|
||||||
</feature>
|
|
||||||
<category-def name="TM and RSE Uncategorized 3.2" label="TM and RSE Uncategorized 3.2">
|
|
||||||
<description>
|
|
||||||
Features and add-ons of the 3.2 release of Target Management / RSE.
|
|
||||||
</description>
|
|
||||||
</category-def>
|
|
||||||
<!-- END_3_2 -->
|
|
||||||
<!-- BEGIN_3_3 -->
|
|
||||||
<feature url="features/org.eclipse.rse.core_3.3.0.v201106011538-7a7JFYwFC7sReeS7d5k9KA.jar" id="org.eclipse.rse.core" version="3.3.0.v201106011538-7a7JFYwFC7sReeS7d5k9KA">
|
|
||||||
<category name="TM and RSE Uncategorized 3.3"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.dstore_3.3.0.v201106011538-7L78FR7EVVFNNFaMdQf_h.jar" id="org.eclipse.rse.dstore" version="3.3.0.v201106011538-7L78FR7EVVFNNFaMdQf_h">
|
|
||||||
<category name="TM and RSE Uncategorized 3.3"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.ftp_3.0.300.v201106011538-782F8N9oB588587HAFII.jar" id="org.eclipse.rse.ftp" version="3.0.300.v201106011538-782F8N9oB588587HAFII">
|
|
||||||
<category name="TM and RSE Uncategorized 3.3"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.local_2.1.300.v201103142315-7B4FKsBgJ9EE9ICQIFYT.jar" id="org.eclipse.rse.local" version="2.1.300.v201103142315-7B4FKsBgJ9EE9ICQIFYT">
|
|
||||||
<category name="TM and RSE Uncategorized 3.3"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse_3.3.0.v201106081330-7L7CFGB8wqio7ppp-b5xx29Eb0hQ.jar" id="org.eclipse.rse" version="3.3.0.v201106081330-7L7CFGB8wqio7ppp-b5xx29Eb0hQ">
|
|
||||||
<category name="TM and RSE Uncategorized 3.3"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.sdk_3.3.0.v201106081330-7U7LFGBF8Wz-Sgjb9ViO_fNyqbiN.jar" id="org.eclipse.rse.sdk" version="3.3.0.v201106081330-7U7LFGBF8Wz-Sgjb9ViO_fNyqbiN">
|
|
||||||
<category name="TM and RSE Uncategorized 3.3"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.ssh_3.0.300.v201106011538-7A3F9wAkF7BB7FAKECRM.jar" id="org.eclipse.rse.ssh" version="3.0.300.v201106011538-7A3F9wAkF7BB7FAKECRM">
|
|
||||||
<category name="TM and RSE Uncategorized 3.3"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.telnet_2.2.200.v201106011538-775F8NAkF7BB7B9NEIPP.jar" id="org.eclipse.rse.telnet" version="2.2.200.v201106011538-775F8NAkF7BB7B9NEIPP">
|
|
||||||
<category name="TM and RSE Uncategorized 3.3"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.examples_3.1.200.v201103142315-7B5FBVAkF7BB7B7NFBRR.jar" id="org.eclipse.rse.examples" version="3.1.200.v201103142315-7B5FBVAkF7BB7B7NFBRR">
|
|
||||||
<category name="TM and RSE Uncategorized 3.3"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.terminals_1.1.0.v201106081330-771Bg9uD6I4AB9LEHNV3552.jar" id="org.eclipse.rse.terminals" version="1.1.0.v201106081330-771Bg9uD6I4AB9LEHNV3552">
|
|
||||||
<category name="TM and RSE Uncategorized 3.3"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.tests_3.3.0.v201106011538-7H7CA7AkF7BB7JDHDDRH.jar" id="org.eclipse.rse.tests" version="3.3.0.v201106011538-7H7CA7AkF7BB7JDHDDRH">
|
|
||||||
<category name="TM and RSE Uncategorized 3.3"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.useractions_1.1.300.v201103142315-31F8N8s7355353B75DD.jar" id="org.eclipse.rse.useractions" version="1.1.300.v201103142315-31F8N8s7355353B75DD">
|
|
||||||
<category name="TM and RSE Uncategorized 3.3"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.scp_0.1.0.v201103142315-11-8s735537353L55.jar" id="org.eclipse.rse.scp" version="0.1.0.v201103142315-11-8s735537353L55">
|
|
||||||
<category name="TM and RSE Uncategorized 3.3"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.wince_0.3.0.v201105021534-15FEcAkF7BB7B7NFBRR.jar" id="org.eclipse.rse.wince" version="0.3.0.v201105021534-15FEcAkF7BB7B7NFBRR" os="win32" arch="x86">
|
|
||||||
<category name="TM and RSE Uncategorized 3.3"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.tm.terminal.sdk_3.2.0.v201106081330-7N7B-C5UEz0wYaUnVrdyLVTU.jar" id="org.eclipse.tm.terminal.sdk" version="3.2.0.v201106081330-7N7B-C5UEz0wYaUnVrdyLVTU">
|
|
||||||
<category name="TM and RSE Uncategorized 3.3"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.tm.terminal.local_0.2.0.v201103142315-11-7w312212153266.jar" id="org.eclipse.tm.terminal.local" version="0.2.0.v201103142315-11-7w312212153266" os="linux,macosx,solaris">
|
|
||||||
<category name="TM and RSE Uncategorized 3.3"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.tm.terminal.local.sdk_0.2.0.v201106081330-66-89B4VsGBDHCLGVDFHI.jar" id="org.eclipse.tm.terminal.local.sdk" version="0.2.0.v201106081330-66-89B4VsGBDHCLGVDFHI" os="linux,macosx,solaris">
|
|
||||||
<category name="TM and RSE Uncategorized 3.3"/>
|
|
||||||
</feature>
|
|
||||||
<category-def name="TM and RSE Uncategorized 3.3" label="TM and RSE Uncategorized 3.3">
|
|
||||||
<description>
|
|
||||||
Features and add-ons of the 3.3 release of Target Management / RSE.
|
|
||||||
</description>
|
|
||||||
</category-def>
|
|
||||||
<!-- END_3_3 -->
|
|
||||||
<!-- BEGIN_3_4 -->
|
|
||||||
<feature url="features/org.eclipse.rse.core_3.4.1.qualifier.jar" id="org.eclipse.rse.core" version="3.4.1.qualifier">
|
|
||||||
<category name="TM and RSE Uncategorized 3.4.1"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.dstore_3.4.1.qualifier.jar" id="org.eclipse.rse.dstore" version="3.4.1.qualifier">
|
|
||||||
<category name="TM and RSE Uncategorized 3.4.1"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.ftp_3.1.0.qualifier.jar" id="org.eclipse.rse.ftp" version="3.1.0.qualifier">
|
|
||||||
<category name="TM and RSE Uncategorized 3.4.1"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.local_2.1.400.qualifier.jar" id="org.eclipse.rse.local" version="2.1.400.qualifier">
|
|
||||||
<category name="TM and RSE Uncategorized 3.4.1"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse_3.4.1.qualifier.jar" id="org.eclipse.rse" version="3.4.1.qualifier">
|
|
||||||
<category name="TM and RSE Uncategorized 3.4.1"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.sdk_3.4.1.qualifier.jar" id="org.eclipse.rse.sdk" version="3.4.1.qualifier">
|
|
||||||
<category name="TM and RSE Uncategorized 3.4.1"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.ssh_3.0.400.qualifier.jar" id="org.eclipse.rse.ssh" version="3.0.400.qualifier">
|
|
||||||
<category name="TM and RSE Uncategorized 3.4.1"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.telnet_2.3.0.qualifier.jar" id="org.eclipse.rse.telnet" version="2.3.0.qualifier">
|
|
||||||
<category name="TM and RSE Uncategorized 3.4.1"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.examples_3.1.300.qualifier.jar" id="org.eclipse.rse.examples" version="3.1.300.qualifier">
|
|
||||||
<category name="TM and RSE Uncategorized 3.4.1"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.terminals_1.2.1.qualifier.jar" id="org.eclipse.rse.terminals" version="1.2.1.qualifier">
|
|
||||||
<category name="TM and RSE Uncategorized 3.4.1"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.tests_3.4.0.qualifier.jar" id="org.eclipse.rse.tests" version="3.4.0.qualifier">
|
|
||||||
<category name="TM and RSE Uncategorized 3.4.1"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.useractions_1.1.400.qualifier.jar" id="org.eclipse.rse.useractions" version="1.1.400.qualifier">
|
|
||||||
<category name="TM and RSE Uncategorized 3.4.1"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.scp_0.2.0.qualifier.jar" id="org.eclipse.rse.scp" version="0.2.0.qualifier">
|
|
||||||
<category name="TM and RSE Uncategorized 3.4.1"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.rse.wince_0.3.100.qualifier.jar" id="org.eclipse.rse.wince" version="0.3.100.qualifier" os="win32" arch="x86">
|
|
||||||
<category name="TM and RSE Uncategorized 3.4.1"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.tm.terminal.sdk_3.3.1.qualifier.jar" id="org.eclipse.tm.terminal.sdk" version="3.3.1.qualifier">
|
|
||||||
<category name="TM and RSE Uncategorized 3.4.1"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.tm.terminal.local_0.2.100.qualifier.jar" id="org.eclipse.tm.terminal.local" version="0.2.100.qualifier" os="linux,macosx,solaris">
|
|
||||||
<category name="TM and RSE Uncategorized 3.4.1"/>
|
|
||||||
</feature>
|
|
||||||
<feature url="features/org.eclipse.tm.terminal.local.sdk_0.3.0.qualifier.jar" id="org.eclipse.tm.terminal.local.sdk" version="0.3.0.qualifier" os="linux,macosx,solaris">
|
|
||||||
<category name="TM and RSE Uncategorized 3.4.1"/>
|
|
||||||
</feature>
|
|
||||||
<category-def name="TM and RSE Uncategorized 3.4.1" label="TM and RSE Uncategorized 3.4.1">
|
|
||||||
<description>
|
|
||||||
Features and add-ons of the 3.4.1 (Juno SR1) release of Target Management / RSE.
|
|
||||||
</description>
|
|
||||||
</category-def>
|
|
||||||
<!-- END_3_4 -->
|
|
||||||
<!-- END_ALL -->
|
|
||||||
</site>
|
|
|
@ -1,12 +0,0 @@
|
||||||
<STYLE type="text/css">
|
|
||||||
td.spacer {padding-bottom: 10px; padding-top: 10px;}
|
|
||||||
.title { font-family: sans-serif; color: #99AACC;}
|
|
||||||
.bodyText { font-family: sans-serif; font-size: 9pt; color:#000000; }
|
|
||||||
.sub-header { font-family: sans-serif; font-style: normal; font-weight: bold; font-size: 9pt; color: white;}
|
|
||||||
.log-text {font-family: sans-serif; font-style: normal; font-weight: lighter; font-size: 8pt; color:black;}
|
|
||||||
.big-header { font-family: sans-serif; font-style: normal; font-weight: bold; font-size: 9pt; color: white; border-top:10px solid white;}
|
|
||||||
.light-row {background:#FFFFFF}
|
|
||||||
.dark-row {background:#EEEEFF}
|
|
||||||
.header {background:#99AADD}
|
|
||||||
#indent {word-wrap : break-word;width :300px;text-indent:10px;}
|
|
||||||
</STYLE>
|
|
|
@ -1,214 +0,0 @@
|
||||||
<xsl:stylesheet version = '1.0' xmlns:xsl='http://www.w3.org/1999/XSL/Transform' xmlns:msxsl="urn:schemas-microsoft-com:xslt">
|
|
||||||
<xsl:output method="html" encoding="UTF-8"/>
|
|
||||||
<xsl:key name="cat" match="category" use="@name"/>
|
|
||||||
<xsl:template match="/">
|
|
||||||
<xsl:for-each select="site">
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<title>Target Management Project 2.0 Updates</title>
|
|
||||||
<style>@import url("web/site.css");</style>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<p class="bodyText"><xsl:value-of select="description"/></p>
|
|
||||||
<table width="100%" border="0" cellspacing="1" cellpadding="2">
|
|
||||||
<xsl:for-each select="category-def">
|
|
||||||
<xsl:sort select="@label" order="ascending" case-order="upper-first"/>
|
|
||||||
<xsl:sort select="@name" order="ascending" case-order="upper-first"/>
|
|
||||||
<xsl:if test="count(key('cat',@name)) != 0">
|
|
||||||
<tr class="header">
|
|
||||||
<td class="sub-header" width="30%">
|
|
||||||
<xsl:value-of select="@name"/>
|
|
||||||
</td>
|
|
||||||
<td class="sub-header" width="70%">
|
|
||||||
<xsl:value-of select="@label"/>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<xsl:for-each select="key('cat',@name)">
|
|
||||||
<xsl:sort select="ancestor::feature//@version" order="ascending"/>
|
|
||||||
<xsl:sort select="ancestor::feature//@id" order="ascending" case-order="upper-first"/>
|
|
||||||
<tr>
|
|
||||||
<xsl:choose>
|
|
||||||
<xsl:when test="(position() mod 2 = 1)">
|
|
||||||
<xsl:attribute name="class">dark-row</xsl:attribute>
|
|
||||||
</xsl:when>
|
|
||||||
<xsl:otherwise>
|
|
||||||
<xsl:attribute name="class">light-row</xsl:attribute>
|
|
||||||
</xsl:otherwise>
|
|
||||||
</xsl:choose>
|
|
||||||
<td class="log-text" id="indent">
|
|
||||||
<xsl:choose>
|
|
||||||
<xsl:when test="ancestor::feature//@label">
|
|
||||||
<a href="{ancestor::feature//@url}"><xsl:value-of select="ancestor::feature//@label"/></a>
|
|
||||||
<br/>
|
|
||||||
<div id="indent">
|
|
||||||
(<xsl:value-of select="ancestor::feature//@id"/> - <xsl:value-of select="ancestor::feature//@version"/>)
|
|
||||||
</div>
|
|
||||||
</xsl:when>
|
|
||||||
<xsl:otherwise>
|
|
||||||
<a href="{ancestor::feature//@url}"><xsl:value-of select="ancestor::feature//@id"/> - <xsl:value-of select="ancestor::feature//@version"/></a>
|
|
||||||
</xsl:otherwise>
|
|
||||||
</xsl:choose>
|
|
||||||
<br />
|
|
||||||
</td>
|
|
||||||
<td>
|
|
||||||
<table>
|
|
||||||
<xsl:if test="ancestor::feature//@os">
|
|
||||||
<tr><td class="log-text" id="indent">Operating Systems:</td>
|
|
||||||
<td class="log-text" id="indent"><xsl:value-of select="ancestor::feature//@os"/></td>
|
|
||||||
</tr>
|
|
||||||
</xsl:if>
|
|
||||||
<xsl:if test="ancestor::feature//@ws">
|
|
||||||
<tr><td class="log-text" id="indent">Windows Systems:</td>
|
|
||||||
<td class="log-text" id="indent"><xsl:value-of select="ancestor::feature//@ws"/></td>
|
|
||||||
</tr>
|
|
||||||
</xsl:if>
|
|
||||||
<xsl:if test="ancestor::feature//@nl">
|
|
||||||
<tr><td class="log-text" id="indent">Languages:</td>
|
|
||||||
<td class="log-text" id="indent"><xsl:value-of select="ancestor::feature//@nl"/></td>
|
|
||||||
</tr>
|
|
||||||
</xsl:if>
|
|
||||||
<xsl:if test="ancestor::feature//@arch">
|
|
||||||
<tr><td class="log-text" id="indent">Architecture:</td>
|
|
||||||
<td class="log-text" id="indent"><xsl:value-of select="ancestor::feature//@arch"/></td>
|
|
||||||
</tr>
|
|
||||||
</xsl:if>
|
|
||||||
</table>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</xsl:for-each>
|
|
||||||
<tr><td class="spacer"><br/></td><td class="spacer"><br/></td></tr>
|
|
||||||
</xsl:if>
|
|
||||||
</xsl:for-each>
|
|
||||||
<xsl:if test="count(feature) > count(feature/category)">
|
|
||||||
<tr class="header">
|
|
||||||
<td class="sub-header" colspan="2">
|
|
||||||
Uncategorized
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</xsl:if>
|
|
||||||
<xsl:choose>
|
|
||||||
<xsl:when test="function-available('msxsl:node-set')">
|
|
||||||
<xsl:variable name="rtf-nodes">
|
|
||||||
<xsl:for-each select="feature[not(category)]">
|
|
||||||
<xsl:sort select="@id" order="ascending" case-order="upper-first"/>
|
|
||||||
<xsl:sort select="@version" order="ascending" />
|
|
||||||
<xsl:value-of select="."/>
|
|
||||||
<xsl:copy-of select="." />
|
|
||||||
</xsl:for-each>
|
|
||||||
</xsl:variable>
|
|
||||||
<xsl:variable name="myNodeSet" select="msxsl:node-set($rtf-nodes)/*"/>
|
|
||||||
<xsl:for-each select="$myNodeSet">
|
|
||||||
<tr>
|
|
||||||
<xsl:choose>
|
|
||||||
<xsl:when test="position() mod 2 = 1">
|
|
||||||
<xsl:attribute name="class">dark-row</xsl:attribute>
|
|
||||||
</xsl:when>
|
|
||||||
<xsl:otherwise>
|
|
||||||
<xsl:attribute name="class">light-row</xsl:attribute>
|
|
||||||
</xsl:otherwise>
|
|
||||||
</xsl:choose>
|
|
||||||
<td class="log-text" id="indent">
|
|
||||||
<xsl:choose>
|
|
||||||
<xsl:when test="@label">
|
|
||||||
<a href="{@url}"><xsl:value-of select="@label"/></a>
|
|
||||||
<br />
|
|
||||||
<div id="indent">
|
|
||||||
(<xsl:value-of select="@id"/> - <xsl:value-of select="@version"/>)
|
|
||||||
</div>
|
|
||||||
</xsl:when>
|
|
||||||
<xsl:otherwise>
|
|
||||||
<a href="{@url}"><xsl:value-of select="@id"/> - <xsl:value-of select="@version"/></a>
|
|
||||||
</xsl:otherwise>
|
|
||||||
</xsl:choose>
|
|
||||||
<br /><br />
|
|
||||||
</td>
|
|
||||||
<td>
|
|
||||||
<table>
|
|
||||||
<xsl:if test="@os">
|
|
||||||
<tr><td class="log-text" id="indent">Operating Systems:</td>
|
|
||||||
<td class="log-text" id="indent"><xsl:value-of select="@os"/></td>
|
|
||||||
</tr>
|
|
||||||
</xsl:if>
|
|
||||||
<xsl:if test="@ws">
|
|
||||||
<tr><td class="log-text" id="indent">Windows Systems:</td>
|
|
||||||
<td class="log-text" id="indent"><xsl:value-of select="@ws"/></td>
|
|
||||||
</tr>
|
|
||||||
</xsl:if>
|
|
||||||
<xsl:if test="@nl">
|
|
||||||
<tr><td class="log-text" id="indent">Languages:</td>
|
|
||||||
<td class="log-text" id="indent"><xsl:value-of select="@nl"/></td>
|
|
||||||
</tr>
|
|
||||||
</xsl:if>
|
|
||||||
<xsl:if test="@arch">
|
|
||||||
<tr><td class="log-text" id="indent">Architecture:</td>
|
|
||||||
<td class="log-text" id="indent"><xsl:value-of select="@arch"/></td>
|
|
||||||
</tr>
|
|
||||||
</xsl:if>
|
|
||||||
</table>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</xsl:for-each>
|
|
||||||
</xsl:when>
|
|
||||||
<xsl:otherwise>
|
|
||||||
<xsl:for-each select="feature[not(category)]">
|
|
||||||
<xsl:sort select="@id" order="ascending" case-order="upper-first"/>
|
|
||||||
<xsl:sort select="@version" order="ascending" />
|
|
||||||
<tr>
|
|
||||||
<xsl:choose>
|
|
||||||
<xsl:when test="count(preceding-sibling::feature[not(category)]) mod 2 = 1">
|
|
||||||
<xsl:attribute name="class">dark-row</xsl:attribute>
|
|
||||||
</xsl:when>
|
|
||||||
<xsl:otherwise>
|
|
||||||
<xsl:attribute name="class">light-row</xsl:attribute>
|
|
||||||
</xsl:otherwise>
|
|
||||||
</xsl:choose>
|
|
||||||
<td class="log-text" id="indent">
|
|
||||||
<xsl:choose>
|
|
||||||
<xsl:when test="@label">
|
|
||||||
<a href="{@url}"><xsl:value-of select="@label"/></a>
|
|
||||||
<br />
|
|
||||||
<div id="indent">
|
|
||||||
(<xsl:value-of select="@id"/> - <xsl:value-of select="@version"/>)
|
|
||||||
</div>
|
|
||||||
</xsl:when>
|
|
||||||
<xsl:otherwise>
|
|
||||||
<a href="{@url}"><xsl:value-of select="@id"/> - <xsl:value-of select="@version"/></a>
|
|
||||||
</xsl:otherwise>
|
|
||||||
</xsl:choose>
|
|
||||||
<br /><br />
|
|
||||||
</td>
|
|
||||||
<td>
|
|
||||||
<table>
|
|
||||||
<xsl:if test="@os">
|
|
||||||
<tr><td class="log-text" id="indent">Operating Systems:</td>
|
|
||||||
<td class="log-text" id="indent"><xsl:value-of select="@os"/></td>
|
|
||||||
</tr>
|
|
||||||
</xsl:if>
|
|
||||||
<xsl:if test="@ws">
|
|
||||||
<tr><td class="log-text" id="indent">Windows Systems:</td>
|
|
||||||
<td class="log-text" id="indent"><xsl:value-of select="@ws"/></td>
|
|
||||||
</tr>
|
|
||||||
</xsl:if>
|
|
||||||
<xsl:if test="@nl">
|
|
||||||
<tr><td class="log-text" id="indent">Languages:</td>
|
|
||||||
<td class="log-text" id="indent"><xsl:value-of select="@nl"/></td>
|
|
||||||
</tr>
|
|
||||||
</xsl:if>
|
|
||||||
<xsl:if test="@arch">
|
|
||||||
<tr><td class="log-text" id="indent">Architecture:</td>
|
|
||||||
<td class="log-text" id="indent"><xsl:value-of select="@arch"/></td>
|
|
||||||
</tr>
|
|
||||||
</xsl:if>
|
|
||||||
</table>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</xsl:for-each>
|
|
||||||
</xsl:otherwise>
|
|
||||||
</xsl:choose>
|
|
||||||
</table>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
</xsl:for-each>
|
|
||||||
</xsl:template>
|
|
||||||
</xsl:stylesheet>
|
|
|
@ -1,27 +1,21 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
<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>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../</relativePath>
|
<relativePath>../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.7.0-SNAPSHOT</version>
|
<version>3.7.0-SNAPSHOT</version>
|
||||||
<artifactId>org.eclipse.tm.repo</artifactId>
|
<artifactId>org.eclipse.tm.repo</artifactId>
|
||||||
<packaging>eclipse-repository</packaging>
|
<packaging>eclipse-repository</packaging>
|
||||||
<properties>
|
|
||||||
<tm-stream>luna</tm-stream>
|
|
||||||
<tm-zipfile>${project.artifactId}.zip</tm-zipfile>
|
|
||||||
<tm-install>/home/data/httpd/download.eclipse.org/tm/builds/${tm-stream}/nightly</tm-install>
|
|
||||||
</properties>
|
|
||||||
<pluginRepositories>
|
|
||||||
<pluginRepository>
|
|
||||||
<id>maven.eclipse.org</id>
|
|
||||||
<url>http://maven.eclipse.org/nexus/content/repositories/public</url>
|
|
||||||
</pluginRepository>
|
|
||||||
</pluginRepositories>
|
|
||||||
<profiles>
|
<profiles>
|
||||||
<profile>
|
<profile>
|
||||||
<id>build-server</id>
|
<id>build-server</id>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<artifactId>org.eclipse.dstore.doc.isv</artifactId>
|
<artifactId>org.eclipse.dstore.doc.isv</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<artifactId>org.eclipse.rse.doc.isv</artifactId>
|
<artifactId>org.eclipse.rse.doc.isv</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<artifactId>org.eclipse.rse.doc.user</artifactId>
|
<artifactId>org.eclipse.rse.doc.user</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<artifactId>org.eclipse.rse.examples</artifactId>
|
<artifactId>org.eclipse.rse.examples</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<artifactId>org.eclipse.rse.examples.daytime</artifactId>
|
<artifactId>org.eclipse.rse.examples.daytime</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<artifactId>org.eclipse.rse.examples.dstore</artifactId>
|
<artifactId>org.eclipse.rse.examples.dstore</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<artifactId>org.eclipse.rse.examples.tutorial</artifactId>
|
<artifactId>org.eclipse.rse.examples.tutorial</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm.features</groupId>
|
<groupId>org.eclipse.tm.features</groupId>
|
||||||
<artifactId>org.eclipse.rse</artifactId>
|
<artifactId>org.eclipse.rse</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm.features</groupId>
|
<groupId>org.eclipse.tm.features</groupId>
|
||||||
<artifactId>org.eclipse.rse.core</artifactId>
|
<artifactId>org.eclipse.rse.core</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm.features</groupId>
|
<groupId>org.eclipse.tm.features</groupId>
|
||||||
<artifactId>org.eclipse.rse.core.source</artifactId>
|
<artifactId>org.eclipse.rse.core.source</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm.features</groupId>
|
<groupId>org.eclipse.tm.features</groupId>
|
||||||
<artifactId>org.eclipse.rse.dstore</artifactId>
|
<artifactId>org.eclipse.rse.dstore</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm.features</groupId>
|
<groupId>org.eclipse.tm.features</groupId>
|
||||||
<artifactId>org.eclipse.rse.dstore.source</artifactId>
|
<artifactId>org.eclipse.rse.dstore.source</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm.features</groupId>
|
<groupId>org.eclipse.tm.features</groupId>
|
||||||
<artifactId>org.eclipse.rse.ftp</artifactId>
|
<artifactId>org.eclipse.rse.ftp</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm.features</groupId>
|
<groupId>org.eclipse.tm.features</groupId>
|
||||||
<artifactId>org.eclipse.rse.ftp.source</artifactId>
|
<artifactId>org.eclipse.rse.ftp.source</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm.features</groupId>
|
<groupId>org.eclipse.tm.features</groupId>
|
||||||
<artifactId>org.eclipse.rse.local</artifactId>
|
<artifactId>org.eclipse.rse.local</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm.features</groupId>
|
<groupId>org.eclipse.tm.features</groupId>
|
||||||
<artifactId>org.eclipse.rse.local.source</artifactId>
|
<artifactId>org.eclipse.rse.local.source</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm.features</groupId>
|
<groupId>org.eclipse.tm.features</groupId>
|
||||||
<artifactId>org.eclipse.rse.scp</artifactId>
|
<artifactId>org.eclipse.rse.scp</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm.features</groupId>
|
<groupId>org.eclipse.tm.features</groupId>
|
||||||
<artifactId>org.eclipse.rse.sdk</artifactId>
|
<artifactId>org.eclipse.rse.sdk</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm.features</groupId>
|
<groupId>org.eclipse.tm.features</groupId>
|
||||||
<artifactId>org.eclipse.rse.ssh</artifactId>
|
<artifactId>org.eclipse.rse.ssh</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm.features</groupId>
|
<groupId>org.eclipse.tm.features</groupId>
|
||||||
<artifactId>org.eclipse.rse.ssh.source</artifactId>
|
<artifactId>org.eclipse.rse.ssh.source</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm.features</groupId>
|
<groupId>org.eclipse.tm.features</groupId>
|
||||||
<artifactId>org.eclipse.rse.telnet</artifactId>
|
<artifactId>org.eclipse.rse.telnet</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm.features</groupId>
|
<groupId>org.eclipse.tm.features</groupId>
|
||||||
<artifactId>org.eclipse.rse.telnet.source</artifactId>
|
<artifactId>org.eclipse.rse.telnet.source</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm.features</groupId>
|
<groupId>org.eclipse.tm.features</groupId>
|
||||||
<artifactId>org.eclipse.rse.terminals</artifactId>
|
<artifactId>org.eclipse.rse.terminals</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm.features</groupId>
|
<groupId>org.eclipse.tm.features</groupId>
|
||||||
<artifactId>org.eclipse.rse.terminals.source</artifactId>
|
<artifactId>org.eclipse.rse.terminals.source</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm.features</groupId>
|
<groupId>org.eclipse.tm.features</groupId>
|
||||||
<artifactId>org.eclipse.rse.useractions</artifactId>
|
<artifactId>org.eclipse.rse.useractions</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm.features</groupId>
|
<groupId>org.eclipse.tm.features</groupId>
|
||||||
<artifactId>org.eclipse.rse.useractions.sdk</artifactId>
|
<artifactId>org.eclipse.rse.useractions.sdk</artifactId>
|
||||||
|
|
BIN
rse/plugins/org.eclipse.dstore.core/dstore_core.jar
Normal file
BIN
rse/plugins/org.eclipse.dstore.core/dstore_core.jar
Normal file
Binary file not shown.
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<artifactId>org.eclipse.dstore.core</artifactId>
|
<artifactId>org.eclipse.dstore.core</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<artifactId>org.eclipse.dstore.extra</artifactId>
|
<artifactId>org.eclipse.dstore.extra</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<artifactId>org.eclipse.rse.connectorservice.dstore</artifactId>
|
<artifactId>org.eclipse.rse.connectorservice.dstore</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<artifactId>org.eclipse.rse.connectorservice.local</artifactId>
|
<artifactId>org.eclipse.rse.connectorservice.local</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<artifactId>org.eclipse.rse.connectorservice.ssh</artifactId>
|
<artifactId>org.eclipse.rse.connectorservice.ssh</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<artifactId>org.eclipse.rse.connectorservice.telnet</artifactId>
|
<artifactId>org.eclipse.rse.connectorservice.telnet</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<artifactId>org.eclipse.rse.core</artifactId>
|
<artifactId>org.eclipse.rse.core</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<artifactId>org.eclipse.rse.dstore.security</artifactId>
|
<artifactId>org.eclipse.rse.dstore.security</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<artifactId>org.eclipse.rse.efs.ui</artifactId>
|
<artifactId>org.eclipse.rse.efs.ui</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<artifactId>org.eclipse.rse.efs</artifactId>
|
<artifactId>org.eclipse.rse.efs</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<artifactId>org.eclipse.rse.files.ui</artifactId>
|
<artifactId>org.eclipse.rse.files.ui</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<artifactId>org.eclipse.rse.importexport</artifactId>
|
<artifactId>org.eclipse.rse.importexport</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<artifactId>org.eclipse.rse.processes.ui</artifactId>
|
<artifactId>org.eclipse.rse.processes.ui</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<artifactId>org.eclipse.rse.sdk</artifactId>
|
<artifactId>org.eclipse.rse.sdk</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<artifactId>org.eclipse.rse.services.dstore</artifactId>
|
<artifactId>org.eclipse.rse.services.dstore</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<artifactId>org.eclipse.rse.services.files.ftp</artifactId>
|
<artifactId>org.eclipse.rse.services.files.ftp</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<artifactId>org.eclipse.rse.services.local</artifactId>
|
<artifactId>org.eclipse.rse.services.local</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<artifactId>org.eclipse.rse.services.ssh</artifactId>
|
<artifactId>org.eclipse.rse.services.ssh</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<artifactId>org.eclipse.rse.services.telnet</artifactId>
|
<artifactId>org.eclipse.rse.services.telnet</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<artifactId>org.eclipse.rse.services</artifactId>
|
<artifactId>org.eclipse.rse.services</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<artifactId>org.eclipse.rse.shells.ui</artifactId>
|
<artifactId>org.eclipse.rse.shells.ui</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<artifactId>org.eclipse.rse.subsystems.files.core</artifactId>
|
<artifactId>org.eclipse.rse.subsystems.files.core</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<artifactId>org.eclipse.rse.subsystems.files.dstore</artifactId>
|
<artifactId>org.eclipse.rse.subsystems.files.dstore</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<artifactId>org.eclipse.rse.subsystems.files.ftp</artifactId>
|
<artifactId>org.eclipse.rse.subsystems.files.ftp</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<artifactId>org.eclipse.rse.subsystems.files.local</artifactId>
|
<artifactId>org.eclipse.rse.subsystems.files.local</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<artifactId>org.eclipse.rse.subsystems.files.scp</artifactId>
|
<artifactId>org.eclipse.rse.subsystems.files.scp</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<artifactId>org.eclipse.rse.subsystems.files.ssh</artifactId>
|
<artifactId>org.eclipse.rse.subsystems.files.ssh</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<artifactId>org.eclipse.rse.subsystems.processes.core</artifactId>
|
<artifactId>org.eclipse.rse.subsystems.processes.core</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<artifactId>org.eclipse.rse.subsystems.processes.dstore</artifactId>
|
<artifactId>org.eclipse.rse.subsystems.processes.dstore</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<artifactId>org.eclipse.rse.subsystems.processes.local</artifactId>
|
<artifactId>org.eclipse.rse.subsystems.processes.local</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<artifactId>org.eclipse.rse.subsystems.processes.shell.linux</artifactId>
|
<artifactId>org.eclipse.rse.subsystems.processes.shell.linux</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<artifactId>org.eclipse.rse.subsystems.shells.core</artifactId>
|
<artifactId>org.eclipse.rse.subsystems.shells.core</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<artifactId>org.eclipse.rse.subsystems.shells.dstore</artifactId>
|
<artifactId>org.eclipse.rse.subsystems.shells.dstore</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<artifactId>org.eclipse.rse.subsystems.shells.local</artifactId>
|
<artifactId>org.eclipse.rse.subsystems.shells.local</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<artifactId>org.eclipse.rse.subsystems.shells.ssh</artifactId>
|
<artifactId>org.eclipse.rse.subsystems.shells.ssh</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<artifactId>org.eclipse.rse.subsystems.shells.telnet</artifactId>
|
<artifactId>org.eclipse.rse.subsystems.shells.telnet</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<artifactId>org.eclipse.rse.subsystems.terminals.core</artifactId>
|
<artifactId>org.eclipse.rse.subsystems.terminals.core</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<artifactId>org.eclipse.rse.subsystems.terminals.ssh</artifactId>
|
<artifactId>org.eclipse.rse.subsystems.terminals.ssh</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<artifactId>org.eclipse.rse.terminals.ui</artifactId>
|
<artifactId>org.eclipse.rse.terminals.ui</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<artifactId>org.eclipse.rse.ui.capabilities</artifactId>
|
<artifactId>org.eclipse.rse.ui.capabilities</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<artifactId>org.eclipse.rse.ui</artifactId>
|
<artifactId>org.eclipse.rse.ui</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<artifactId>org.eclipse.rse.useractions.sdk</artifactId>
|
<artifactId>org.eclipse.rse.useractions.sdk</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<artifactId>org.eclipse.rse.useractions</artifactId>
|
<artifactId>org.eclipse.rse.useractions</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<artifactId>org.eclipse.rse</artifactId>
|
<artifactId>org.eclipse.rse</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm.features</groupId>
|
<groupId>org.eclipse.tm.features</groupId>
|
||||||
<artifactId>org.eclipse.rse.tests</artifactId>
|
<artifactId>org.eclipse.rse.tests</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<artifactId>org.eclipse.rse.tests.framework.examples</artifactId>
|
<artifactId>org.eclipse.rse.tests.framework.examples</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<artifactId>org.eclipse.rse.tests.framework</artifactId>
|
<artifactId>org.eclipse.rse.tests.framework</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<artifactId>org.eclipse.rse.tests</artifactId>
|
<artifactId>org.eclipse.rse.tests</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm.features</groupId>
|
<groupId>org.eclipse.tm.features</groupId>
|
||||||
<artifactId>org.eclipse.tm.terminal</artifactId>
|
<artifactId>org.eclipse.tm.terminal</artifactId>
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>tm-parent</artifactId>
|
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||||
<groupId>org.eclipse.tm</groupId>
|
<groupId>org.eclipse.tm</groupId>
|
||||||
<version>3.8.0-SNAPSHOT</version>
|
<version>3.8.0-SNAPSHOT</version>
|
||||||
<relativePath>../../../</relativePath>
|
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
<groupId>org.eclipse.tm.features</groupId>
|
<groupId>org.eclipse.tm.features</groupId>
|
||||||
<artifactId>org.eclipse.tm.terminal.core.sdk</artifactId>
|
<artifactId>org.eclipse.tm.terminal.core.sdk</artifactId>
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue