mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-25 09:55:29 +02:00
Add intermediate poms;
Create parent pom; Remove relative paths and update refs to intermediate parent poms; Comment out source features, change .qualifier to -SNAPSHOT; Update sdk version to 4.8 milestones; Organize wince into build; Missing files (These changes contributed by Rob Stryker.) Signed-off-by: nickboldt <nboldt@redhat.com>
This commit is contained in:
parent
4b52d24816
commit
d44bade9a7
97 changed files with 911 additions and 616 deletions
425
pom.xml
425
pom.xml
|
@ -1,116 +1,331 @@
|
|||
<?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>
|
||||
|
||||
<parent>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>admin/pom-build.xml</relativePath>
|
||||
</parent>
|
||||
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>
|
||||
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<artifactId>tm-parent-old</artifactId>
|
||||
<artifactId>tm-parent</artifactId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<packaging>pom</packaging>
|
||||
<name>Target Management Parent</name>
|
||||
|
||||
|
||||
<properties>
|
||||
<tycho.scmUrl>scm:git:git://git.eclipse.org/gitroot/tm/org.eclipse.tm.git</tycho.scmUrl>
|
||||
<tycho-version>1.0.0</tycho-version>
|
||||
<tycho-extras-version>1.0.0</tycho-extras-version>
|
||||
<maven-resources-version>2.6</maven-resources-version>
|
||||
<sdk-version>4.8milestones/S-4.8M4-201712062000</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/R20150821153341/repository</orbit-site>
|
||||
<cdt-site>http://download.eclipse.org/tools/cdt/releases/8.6</cdt-site>
|
||||
<terminal-site>http://download.eclipse.org/tm/terminal/builds/development/nightly</terminal-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>terminal</id>
|
||||
<url>${terminal-site}</url>
|
||||
<layout>p2</layout>
|
||||
</repository>
|
||||
</repositories>
|
||||
|
||||
<pluginRepositories>
|
||||
<pluginRepository>
|
||||
<id>sonatype</id>
|
||||
<url>http://oss.sonatype.org/content/repositories/public</url>
|
||||
<snapshots>
|
||||
<enabled>true</enabled>
|
||||
</snapshots>
|
||||
<releases>
|
||||
<enabled>true</enabled>
|
||||
</releases>
|
||||
</pluginRepository>
|
||||
<pluginRepository>
|
||||
<id>cbi</id>
|
||||
<url>http://repo.eclipse.org/content/repositories/cbi-releases/</url>
|
||||
</pluginRepository>
|
||||
<pluginRepository>
|
||||
<id>cbi-snapshots</id>
|
||||
<url>http://repo.eclipse.org/content/repositories/cbi-snapshots/</url>
|
||||
</pluginRepository>
|
||||
</pluginRepositories>
|
||||
<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>
|
||||
</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/tm/builds/${tm-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>
|
||||
|
||||
|
||||
<modules>
|
||||
<!-- RSE features and plug-ins -->
|
||||
<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.user</module>
|
||||
<module>rse/examples/org.eclipse.rse.examples-feature</module>
|
||||
<module>rse/examples/org.eclipse.rse.examples.daytime</module>
|
||||
<module>rse/examples/org.eclipse.rse.examples.dstore</module>
|
||||
<module>rse/examples/org.eclipse.rse.examples.tutorial</module>
|
||||
<module>rse/features/org.eclipse.rse-feature</module>
|
||||
<module>rse/features/org.eclipse.rse.core-feature</module>
|
||||
<module>rse/features/org.eclipse.rse.core.source</module>
|
||||
<module>rse/features/org.eclipse.rse.dstore-feature</module>
|
||||
<module>rse/features/org.eclipse.rse.dstore.source</module>
|
||||
<module>rse/features/org.eclipse.rse.ftp-feature</module>
|
||||
<module>rse/features/org.eclipse.rse.ftp.source</module>
|
||||
<module>rse/features/org.eclipse.rse.local-feature</module>
|
||||
<module>rse/features/org.eclipse.rse.local.source</module>
|
||||
<module>rse/features/org.eclipse.rse.scp-feature</module>
|
||||
<module>rse/features/org.eclipse.rse.sdk-feature</module>
|
||||
<module>rse/features/org.eclipse.rse.ssh-feature</module>
|
||||
<module>rse/features/org.eclipse.rse.ssh.source</module>
|
||||
<module>rse/features/org.eclipse.rse.telnet-feature</module>
|
||||
<module>rse/features/org.eclipse.rse.telnet.source</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.useractions-feature</module>
|
||||
<module>rse/plugins/org.eclipse.dstore.core</module>
|
||||
<module>rse/plugins/org.eclipse.dstore.extra</module>
|
||||
<module>rse/plugins/org.eclipse.rse</module>
|
||||
<module>rse/plugins/org.eclipse.rse.connectorservice.dstore</module>
|
||||
<module>rse/plugins/org.eclipse.rse.connectorservice.local</module>
|
||||
<module>rse/plugins/org.eclipse.rse.connectorservice.ssh</module>
|
||||
<module>rse/plugins/org.eclipse.rse.connectorservice.telnet</module>
|
||||
<module>rse/plugins/org.eclipse.rse.core</module>
|
||||
<module>rse/plugins/org.eclipse.rse.dstore.security</module>
|
||||
<module>rse/plugins/org.eclipse.rse.efs</module>
|
||||
<module>rse/plugins/org.eclipse.rse.efs.ui</module>
|
||||
<module>rse/plugins/org.eclipse.rse.files.ui</module>
|
||||
<module>rse/plugins/org.eclipse.rse.importexport</module>
|
||||
<module>rse/plugins/org.eclipse.rse.processes.ui</module>
|
||||
<module>rse/plugins/org.eclipse.rse.sdk</module>
|
||||
<module>rse/plugins/org.eclipse.rse.services</module>
|
||||
<module>rse/plugins/org.eclipse.rse.services.dstore</module>
|
||||
<module>rse/plugins/org.eclipse.rse.services.files.ftp</module>
|
||||
<module>rse/plugins/org.eclipse.rse.services.local</module>
|
||||
<module>rse/plugins/org.eclipse.rse.services.ssh</module>
|
||||
<module>rse/plugins/org.eclipse.rse.services.telnet</module>
|
||||
<module>rse/plugins/org.eclipse.rse.shells.ui</module>
|
||||
<module>rse/plugins/org.eclipse.rse.subsystems.files.core</module>
|
||||
<module>rse/plugins/org.eclipse.rse.subsystems.files.dstore</module>
|
||||
<module>rse/plugins/org.eclipse.rse.subsystems.files.ftp</module>
|
||||
<module>rse/plugins/org.eclipse.rse.subsystems.files.local</module>
|
||||
<module>rse/plugins/org.eclipse.rse.subsystems.files.scp</module>
|
||||
<module>rse/plugins/org.eclipse.rse.subsystems.files.ssh</module>
|
||||
<module>rse/plugins/org.eclipse.rse.subsystems.processes.core</module>
|
||||
<module>rse/plugins/org.eclipse.rse.subsystems.processes.dstore</module>
|
||||
<module>rse/plugins/org.eclipse.rse.subsystems.processes.local</module>
|
||||
<module>rse/plugins/org.eclipse.rse.subsystems.processes.shell.linux</module>
|
||||
<module>rse/plugins/org.eclipse.rse.subsystems.shells.core</module>
|
||||
<module>rse/plugins/org.eclipse.rse.subsystems.shells.dstore</module>
|
||||
<module>rse/plugins/org.eclipse.rse.subsystems.shells.local</module>
|
||||
<module>rse/plugins/org.eclipse.rse.subsystems.shells.ssh</module>
|
||||
<module>rse/plugins/org.eclipse.rse.subsystems.shells.telnet</module>
|
||||
<module>rse/plugins/org.eclipse.rse.subsystems.terminals.core</module>
|
||||
<module>rse/plugins/org.eclipse.rse.subsystems.terminals.ssh</module>
|
||||
<module>rse/plugins/org.eclipse.rse.terminals.ui</module>
|
||||
<module>rse/plugins/org.eclipse.rse.ui</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.sdk</module> -->
|
||||
<!-- <module>rse/features/org.eclipse.rse.useractions.sdk-feature</module> -->
|
||||
|
||||
<!-- Windows CE subsystem and support for RSE -->
|
||||
<module>wince/org.eclipse.rse.wince-feature</module>
|
||||
<module>wince/org.eclipse.rse.subsystems.wince</module>
|
||||
<module>wince/org.eclipse.tm.rapi</module>
|
||||
|
||||
<module>releng/org.eclipse.tm.repo</module>
|
||||
<!-- RSE features and plug-ins -->
|
||||
<module>rse</module>
|
||||
<!-- Windows CE subsystem and support for RSE -->
|
||||
<module>wince</module>
|
||||
</modules>
|
||||
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>tests</id>
|
||||
<modules>
|
||||
<module>rse/tests/org.eclipse.rse.tests</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.examples</module>
|
||||
</modules>
|
||||
</profile>
|
||||
</profiles>
|
||||
</project>
|
||||
|
|
|
@ -1,11 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<projectDescription>
|
||||
<name>org.eclipse.tm.repo</name>
|
||||
<comment></comment>
|
||||
<projects>
|
||||
</projects>
|
||||
<buildSpec>
|
||||
</buildSpec>
|
||||
<natures>
|
||||
</natures>
|
||||
</projectDescription>
|
|
@ -1,118 +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>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../admin/pom-build.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<artifactId>org.eclipse.tm.repo</artifactId>
|
||||
<packaging>eclipse-repository</packaging>
|
||||
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>build-server</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<artifactId>maven-antrun-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>prepare-serverruntime</id>
|
||||
<phase>prepare-package</phase>
|
||||
<goals>
|
||||
<goal>run</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<target>
|
||||
<property name="buildDirectory" value="${project.build.directory}/../../../"/>
|
||||
<property name="builder" value="${project.build.directory}/../../../releng/"/>
|
||||
<property name="buildId" value="3.6.0"/>
|
||||
<ant antfile="${project.build.directory}/../../../dstoreTargets-git.xml">
|
||||
<target name="serverruntime"/>
|
||||
</ant>
|
||||
</target>
|
||||
</configuration>
|
||||
</execution>
|
||||
<execution>
|
||||
<id>deploy</id>
|
||||
<phase>install</phase>
|
||||
<goals>
|
||||
<goal>run</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<target>
|
||||
<delete includeemptydirs="false">
|
||||
<fileset dir="${tm-install}">
|
||||
<include name="**"/>
|
||||
</fileset>
|
||||
</delete>
|
||||
<copy includeemptydirs="false" todir="${tm-install}">
|
||||
<fileset dir="target/repository">
|
||||
<include name="**"/>
|
||||
</fileset>
|
||||
<fileset dir="target">
|
||||
<include name="${tm-zipfile}"/>
|
||||
</fileset>
|
||||
</copy>
|
||||
<copy includeemptydirs="false" todir="${tm-install}/rseserver">
|
||||
<fileset dir="${project.build.directory}/../../../">
|
||||
<include name="rseserver*"/>
|
||||
</fileset>
|
||||
</copy>
|
||||
<chmod perm="g+w">
|
||||
<fileset dir="${tm-install}">
|
||||
<include name="**"/>
|
||||
</fileset>
|
||||
</chmod>
|
||||
</target>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>local-build</id>
|
||||
<properties>
|
||||
<tm-install>${project.build.directory}/../../../../</tm-install>
|
||||
<tm-zipfile>${project.artifactId}.zip</tm-zipfile>
|
||||
</properties>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<artifactId>maven-antrun-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>deploy</id>
|
||||
<phase>install</phase>
|
||||
<goals>
|
||||
<goal>run</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<target>
|
||||
<copy file="target/${tm-zipfile}" todir="${tm-install}">
|
||||
</copy>
|
||||
<chmod perm="g+w">
|
||||
<fileset dir="${tm-install}">
|
||||
<include name="**"/>
|
||||
</fileset>
|
||||
</chmod>
|
||||
</target>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
</profiles>
|
||||
</project>
|
|
@ -3,10 +3,9 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.doc</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<artifactId>org.eclipse.dstore.doc.isv</artifactId>
|
||||
|
|
|
@ -3,10 +3,9 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.doc</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<artifactId>org.eclipse.rse.doc.isv</artifactId>
|
||||
|
|
|
@ -3,10 +3,9 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.doc</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<artifactId>org.eclipse.rse.doc.user</artifactId>
|
||||
|
|
33
rse/doc/pom.xml
Normal file
33
rse/doc/pom.xml
Normal file
|
@ -0,0 +1,33 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
Copyright (c) 2017 Eclipse Foundation and others.
|
||||
All rights reserved. This program and the accompanying materials
|
||||
are made available under the terms of the Eclipse Distribution License v1.0
|
||||
which accompanies this distribution, and is available at
|
||||
http://www.eclipse.org/org/documents/edl-v10.php
|
||||
|
||||
Contributors:
|
||||
Nick Boldt (Red Hat) - initial implementation
|
||||
Rob Stryker (Red Hat) - initial implementation
|
||||
-->
|
||||
<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.rse</groupId>
|
||||
<artifactId>org.eclipse.tm.rse</artifactId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<artifactId>org.eclipse.tm.rse.doc</artifactId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<modules>
|
||||
<module>org.eclipse.dstore.doc.isv</module>
|
||||
<module>org.eclipse.rse.doc.isv</module>
|
||||
<module>org.eclipse.rse.doc.user</module>
|
||||
</modules>
|
||||
</project>
|
|
@ -62,7 +62,7 @@
|
|||
install-size="33"
|
||||
version="0.0.0"
|
||||
unpack="false"/>
|
||||
|
||||
<!--
|
||||
<plugin
|
||||
id="org.eclipse.rse.examples.daytime.source"
|
||||
download-size="0"
|
||||
|
@ -76,5 +76,5 @@
|
|||
install-size="0"
|
||||
version="0.0.0"
|
||||
unpack="false"/>
|
||||
|
||||
-->
|
||||
</feature>
|
||||
|
|
|
@ -3,13 +3,12 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.examples</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<artifactId>org.eclipse.rse.examples</artifactId>
|
||||
<version>3.7.0.qualifier</version>
|
||||
<version>3.7.0-SNAPSHOT</version>
|
||||
<packaging>eclipse-feature</packaging>
|
||||
</project>
|
||||
|
|
|
@ -3,10 +3,9 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.examples</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<artifactId>org.eclipse.rse.examples.daytime</artifactId>
|
||||
|
|
|
@ -3,10 +3,9 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.examples</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<artifactId>org.eclipse.rse.examples.dstore</artifactId>
|
||||
|
|
|
@ -3,10 +3,9 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.examples</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<artifactId>org.eclipse.rse.examples.tutorial</artifactId>
|
||||
|
|
34
rse/examples/pom.xml
Normal file
34
rse/examples/pom.xml
Normal file
|
@ -0,0 +1,34 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
Copyright (c) 2017 Eclipse Foundation and others.
|
||||
All rights reserved. This program and the accompanying materials
|
||||
are made available under the terms of the Eclipse Distribution License v1.0
|
||||
which accompanies this distribution, and is available at
|
||||
http://www.eclipse.org/org/documents/edl-v10.php
|
||||
|
||||
Contributors:
|
||||
Nick Boldt (Red Hat) - initial implementation
|
||||
Rob Stryker (Red Hat) - initial implementation
|
||||
-->
|
||||
<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.rse</groupId>
|
||||
<artifactId>org.eclipse.tm.rse</artifactId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<artifactId>org.eclipse.tm.rse.examples</artifactId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<modules>
|
||||
<module>org.eclipse.rse.examples.daytime</module>
|
||||
<module>org.eclipse.rse.examples.dstore</module>
|
||||
<module>org.eclipse.rse.examples-feature</module>
|
||||
<module>org.eclipse.rse.examples.tutorial</module>
|
||||
</modules>
|
||||
</project>
|
|
@ -3,14 +3,13 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.features</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm.features</groupId>
|
||||
<artifactId>org.eclipse.rse</artifactId>
|
||||
<version>3.7.3.qualifier</version>
|
||||
<version>3.7.3-SNAPSHOT</version>
|
||||
<packaging>eclipse-feature</packaging>
|
||||
|
||||
<build>
|
||||
|
|
|
@ -3,14 +3,13 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.features</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm.features</groupId>
|
||||
<artifactId>org.eclipse.rse.core</artifactId>
|
||||
<version>3.7.3.qualifier</version>
|
||||
<version>3.7.3-SNAPSHOT</version>
|
||||
<packaging>eclipse-feature</packaging>
|
||||
|
||||
<build>
|
||||
|
|
|
@ -3,14 +3,13 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.features</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm.features</groupId>
|
||||
<artifactId>org.eclipse.rse.core.source</artifactId>
|
||||
<version>3.7.3.qualifier</version>
|
||||
<version>3.7.3-SNAPSHOT</version>
|
||||
<packaging>eclipse-feature</packaging>
|
||||
|
||||
<build>
|
||||
|
|
|
@ -3,14 +3,13 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.features</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm.features</groupId>
|
||||
<artifactId>org.eclipse.rse.dstore</artifactId>
|
||||
<version>3.7.0.qualifier</version>
|
||||
<version>3.7.0-SNAPSHOT</version>
|
||||
<packaging>eclipse-feature</packaging>
|
||||
|
||||
<build>
|
||||
|
|
|
@ -3,14 +3,13 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.features</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm.features</groupId>
|
||||
<artifactId>org.eclipse.rse.dstore.source</artifactId>
|
||||
<version>3.7.0.qualifier</version>
|
||||
<version>3.7.0-SNAPSHOT</version>
|
||||
<packaging>eclipse-feature</packaging>
|
||||
|
||||
<build>
|
||||
|
|
|
@ -3,14 +3,13 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.features</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm.features</groupId>
|
||||
<artifactId>org.eclipse.rse.ftp</artifactId>
|
||||
<version>3.7.1.qualifier</version>
|
||||
<version>3.7.1-SNAPSHOT</version>
|
||||
<packaging>eclipse-feature</packaging>
|
||||
|
||||
<build>
|
||||
|
|
|
@ -3,14 +3,13 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.features</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm.features</groupId>
|
||||
<artifactId>org.eclipse.rse.ftp.source</artifactId>
|
||||
<version>3.7.0.qualifier</version>
|
||||
<version>3.7.0-SNAPSHOT</version>
|
||||
<packaging>eclipse-feature</packaging>
|
||||
|
||||
<build>
|
||||
|
|
|
@ -3,14 +3,13 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.features</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm.features</groupId>
|
||||
<artifactId>org.eclipse.rse.local</artifactId>
|
||||
<version>3.7.0.qualifier</version>
|
||||
<version>3.7.0-SNAPSHOT</version>
|
||||
<packaging>eclipse-feature</packaging>
|
||||
|
||||
<build>
|
||||
|
|
|
@ -3,14 +3,13 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.features</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm.features</groupId>
|
||||
<artifactId>org.eclipse.rse.local.source</artifactId>
|
||||
<version>3.7.0.qualifier</version>
|
||||
<version>3.7.0-SNAPSHOT</version>
|
||||
<packaging>eclipse-feature</packaging>
|
||||
|
||||
<build>
|
||||
|
|
|
@ -55,12 +55,12 @@
|
|||
install-size="0"
|
||||
version="0.0.0"
|
||||
unpack="false"/>
|
||||
|
||||
<!--
|
||||
<plugin
|
||||
id="org.eclipse.rse.subsystems.files.scp.source"
|
||||
download-size="0"
|
||||
install-size="0"
|
||||
version="0.0.0"
|
||||
unpack="false"/>
|
||||
|
||||
-->
|
||||
</feature>
|
||||
|
|
|
@ -3,14 +3,13 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.features</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm.features</groupId>
|
||||
<artifactId>org.eclipse.rse.scp</artifactId>
|
||||
<version>3.7.0.qualifier</version>
|
||||
<version>3.7.0-SNAPSHOT</version>
|
||||
<packaging>eclipse-feature</packaging>
|
||||
|
||||
<build>
|
||||
|
|
|
@ -39,30 +39,6 @@
|
|||
id="org.eclipse.rse"
|
||||
version="0.0.0"/>
|
||||
|
||||
<includes
|
||||
id="org.eclipse.rse.core.source"
|
||||
version="0.0.0"/>
|
||||
|
||||
<includes
|
||||
id="org.eclipse.rse.dstore.source"
|
||||
version="0.0.0"/>
|
||||
|
||||
<includes
|
||||
id="org.eclipse.rse.ftp.source"
|
||||
version="0.0.0"/>
|
||||
|
||||
<includes
|
||||
id="org.eclipse.rse.local.source"
|
||||
version="0.0.0"/>
|
||||
|
||||
<includes
|
||||
id="org.eclipse.rse.ssh.source"
|
||||
version="0.0.0"/>
|
||||
|
||||
<includes
|
||||
id="org.eclipse.rse.telnet.source"
|
||||
version="0.0.0"/>
|
||||
|
||||
<plugin
|
||||
id="org.eclipse.rse.sdk"
|
||||
download-size="7"
|
||||
|
|
|
@ -3,14 +3,13 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.features</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm.features</groupId>
|
||||
<artifactId>org.eclipse.rse.sdk</artifactId>
|
||||
<version>3.7.3.qualifier</version>
|
||||
<version>3.7.3-SNAPSHOT</version>
|
||||
<packaging>eclipse-feature</packaging>
|
||||
|
||||
<build>
|
||||
|
|
|
@ -3,14 +3,13 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.features</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm.features</groupId>
|
||||
<artifactId>org.eclipse.rse.ssh</artifactId>
|
||||
<version>3.7.0.qualifier</version>
|
||||
<version>3.7.0-SNAPSHOT</version>
|
||||
<packaging>eclipse-feature</packaging>
|
||||
|
||||
<build>
|
||||
|
|
|
@ -3,14 +3,13 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.features</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm.features</groupId>
|
||||
<artifactId>org.eclipse.rse.ssh.source</artifactId>
|
||||
<version>3.7.0.qualifier</version>
|
||||
<version>3.7.0-SNAPSHOT</version>
|
||||
<packaging>eclipse-feature</packaging>
|
||||
|
||||
<build>
|
||||
|
|
|
@ -3,14 +3,13 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.features</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm.features</groupId>
|
||||
<artifactId>org.eclipse.rse.telnet</artifactId>
|
||||
<version>3.7.0.qualifier</version>
|
||||
<version>3.7.0-SNAPSHOT</version>
|
||||
<packaging>eclipse-feature</packaging>
|
||||
|
||||
<build>
|
||||
|
|
|
@ -3,14 +3,13 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.features</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm.features</groupId>
|
||||
<artifactId>org.eclipse.rse.telnet.source</artifactId>
|
||||
<version>3.7.0.qualifier</version>
|
||||
<version>3.7.0-SNAPSHOT</version>
|
||||
<packaging>eclipse-feature</packaging>
|
||||
|
||||
<build>
|
||||
|
|
|
@ -3,14 +3,13 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.features</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm.features</groupId>
|
||||
<artifactId>org.eclipse.rse.terminals</artifactId>
|
||||
<version>3.8.0.qualifier</version>
|
||||
<version>3.8.0-SNAPSHOT</version>
|
||||
<packaging>eclipse-feature</packaging>
|
||||
|
||||
<build>
|
||||
|
|
|
@ -3,14 +3,13 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.features</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm.features</groupId>
|
||||
<artifactId>org.eclipse.rse.terminals.source</artifactId>
|
||||
<version>3.8.0.qualifier</version>
|
||||
<version>3.8.0-SNAPSHOT</version>
|
||||
<packaging>eclipse-feature</packaging>
|
||||
|
||||
<build>
|
||||
|
|
|
@ -3,14 +3,13 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.features</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm.features</groupId>
|
||||
<artifactId>org.eclipse.rse.useractions</artifactId>
|
||||
<version>3.7.0.qualifier</version>
|
||||
<version>3.7.0-SNAPSHOT</version>
|
||||
<packaging>eclipse-feature</packaging>
|
||||
|
||||
<build>
|
||||
|
|
|
@ -39,10 +39,6 @@
|
|||
id="org.eclipse.rse.useractions"
|
||||
version="0.0.0"/>
|
||||
|
||||
<includes
|
||||
id="org.eclipse.rse.useractions.source"
|
||||
version="0.0.0"/>
|
||||
|
||||
<plugin
|
||||
id="org.eclipse.rse.useractions.sdk"
|
||||
download-size="7"
|
||||
|
|
|
@ -3,14 +3,13 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.features</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm.features</groupId>
|
||||
<artifactId>org.eclipse.rse.useractions.sdk</artifactId>
|
||||
<version>3.7.0.qualifier</version>
|
||||
<version>3.7.0-SNAPSHOT</version>
|
||||
<packaging>eclipse-feature</packaging>
|
||||
|
||||
<build>
|
||||
|
|
42
rse/features/pom.xml
Normal file
42
rse/features/pom.xml
Normal file
|
@ -0,0 +1,42 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
Copyright (c) 2017 Eclipse Foundation and others.
|
||||
All rights reserved. This program and the accompanying materials
|
||||
are made available under the terms of the Eclipse Distribution License v1.0
|
||||
which accompanies this distribution, and is available at
|
||||
http://www.eclipse.org/org/documents/edl-v10.php
|
||||
|
||||
Contributors:
|
||||
Nick Boldt (Red Hat) - initial implementation
|
||||
Rob Stryker (Red Hat) - initial implementation
|
||||
-->
|
||||
<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.rse</groupId>
|
||||
<artifactId>org.eclipse.tm.rse</artifactId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<artifactId>org.eclipse.tm.rse.features</artifactId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<modules>
|
||||
<module>org.eclipse.rse.core-feature</module>
|
||||
<module>org.eclipse.rse.dstore-feature</module>
|
||||
<module>org.eclipse.rse-feature</module>
|
||||
<module>org.eclipse.rse.ftp-feature</module>
|
||||
<module>org.eclipse.rse.local-feature</module>
|
||||
<module>org.eclipse.rse.scp-feature</module>
|
||||
<module>org.eclipse.rse.sdk-feature</module>
|
||||
<module>org.eclipse.rse.ssh-feature</module>
|
||||
<module>org.eclipse.rse.telnet-feature</module>
|
||||
<module>org.eclipse.rse.terminals-feature</module>
|
||||
<module>org.eclipse.rse.useractions-feature</module>
|
||||
<module>org.eclipse.rse.useractions.sdk-feature</module>
|
||||
</modules>
|
||||
</project>
|
Binary file not shown.
|
@ -3,10 +3,9 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.plugins</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<artifactId>org.eclipse.dstore.core</artifactId>
|
||||
|
|
|
@ -3,10 +3,9 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.plugins</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<artifactId>org.eclipse.dstore.extra</artifactId>
|
||||
|
|
|
@ -3,10 +3,9 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.plugins</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<artifactId>org.eclipse.rse.connectorservice.dstore</artifactId>
|
||||
|
|
|
@ -3,10 +3,9 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.plugins</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<artifactId>org.eclipse.rse.connectorservice.local</artifactId>
|
||||
|
|
|
@ -3,10 +3,9 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.plugins</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<artifactId>org.eclipse.rse.connectorservice.ssh</artifactId>
|
||||
|
|
|
@ -3,10 +3,9 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.plugins</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<artifactId>org.eclipse.rse.connectorservice.telnet</artifactId>
|
||||
|
|
|
@ -3,13 +3,12 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.plugins</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<artifactId>org.eclipse.rse.core</artifactId>
|
||||
<version>3.3.100.qualifier</version>
|
||||
<version>3.3.100-SNAPSHOT</version>
|
||||
<packaging>eclipse-plugin</packaging>
|
||||
</project>
|
||||
|
|
|
@ -3,10 +3,9 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.plugins</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<artifactId>org.eclipse.rse.dstore.security</artifactId>
|
||||
|
|
|
@ -3,10 +3,9 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.plugins</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<artifactId>org.eclipse.rse.efs.ui</artifactId>
|
||||
|
|
|
@ -3,10 +3,9 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.plugins</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<artifactId>org.eclipse.rse.efs</artifactId>
|
||||
|
|
|
@ -3,10 +3,9 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.plugins</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<artifactId>org.eclipse.rse.files.ui</artifactId>
|
||||
|
|
|
@ -3,10 +3,9 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.plugins</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<artifactId>org.eclipse.rse.importexport</artifactId>
|
||||
|
|
|
@ -3,10 +3,9 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.plugins</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<artifactId>org.eclipse.rse.processes.ui</artifactId>
|
||||
|
|
|
@ -3,10 +3,9 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.plugins</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<artifactId>org.eclipse.rse.sdk</artifactId>
|
||||
|
|
|
@ -3,10 +3,9 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.plugins</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<artifactId>org.eclipse.rse.services.dstore</artifactId>
|
||||
|
|
|
@ -3,10 +3,9 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.plugins</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<artifactId>org.eclipse.rse.services.files.ftp</artifactId>
|
||||
|
|
|
@ -3,13 +3,12 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.plugins</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<artifactId>org.eclipse.rse.services.local</artifactId>
|
||||
<version>2.2.1.qualifier</version>
|
||||
<version>2.2.1-SNAPSHOT</version>
|
||||
<packaging>eclipse-plugin</packaging>
|
||||
</project>
|
||||
|
|
|
@ -3,10 +3,9 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.plugins</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<artifactId>org.eclipse.rse.services.ssh</artifactId>
|
||||
|
|
|
@ -3,10 +3,9 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.plugins</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<artifactId>org.eclipse.rse.services.telnet</artifactId>
|
||||
|
|
|
@ -3,10 +3,9 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.plugins</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<artifactId>org.eclipse.rse.services</artifactId>
|
||||
|
|
|
@ -3,10 +3,9 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.plugins</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<artifactId>org.eclipse.rse.shells.ui</artifactId>
|
||||
|
|
|
@ -3,10 +3,9 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.plugins</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<artifactId>org.eclipse.rse.subsystems.files.core</artifactId>
|
||||
|
|
|
@ -3,10 +3,9 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.plugins</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<artifactId>org.eclipse.rse.subsystems.files.dstore</artifactId>
|
||||
|
|
|
@ -3,10 +3,9 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.plugins</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<artifactId>org.eclipse.rse.subsystems.files.ftp</artifactId>
|
||||
|
|
|
@ -3,10 +3,9 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.plugins</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<artifactId>org.eclipse.rse.subsystems.files.local</artifactId>
|
||||
|
|
|
@ -3,10 +3,9 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.plugins</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<artifactId>org.eclipse.rse.subsystems.files.scp</artifactId>
|
||||
|
|
|
@ -3,10 +3,9 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.plugins</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<artifactId>org.eclipse.rse.subsystems.files.ssh</artifactId>
|
||||
|
|
|
@ -3,10 +3,9 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.plugins</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<artifactId>org.eclipse.rse.subsystems.processes.core</artifactId>
|
||||
|
|
|
@ -3,10 +3,9 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.plugins</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<artifactId>org.eclipse.rse.subsystems.processes.dstore</artifactId>
|
||||
|
|
|
@ -3,10 +3,9 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.plugins</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<artifactId>org.eclipse.rse.subsystems.processes.local</artifactId>
|
||||
|
|
|
@ -3,10 +3,9 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.plugins</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<artifactId>org.eclipse.rse.subsystems.processes.shell.linux</artifactId>
|
||||
|
|
|
@ -3,10 +3,9 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.plugins</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<artifactId>org.eclipse.rse.subsystems.shells.core</artifactId>
|
||||
|
|
|
@ -3,10 +3,9 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.plugins</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<artifactId>org.eclipse.rse.subsystems.shells.dstore</artifactId>
|
||||
|
|
|
@ -3,10 +3,9 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.plugins</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<artifactId>org.eclipse.rse.subsystems.shells.local</artifactId>
|
||||
|
|
|
@ -3,10 +3,9 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.plugins</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<artifactId>org.eclipse.rse.subsystems.shells.ssh</artifactId>
|
||||
|
|
|
@ -3,10 +3,9 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.plugins</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<artifactId>org.eclipse.rse.subsystems.shells.telnet</artifactId>
|
||||
|
|
|
@ -3,10 +3,9 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.plugins</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<artifactId>org.eclipse.rse.subsystems.terminals.core</artifactId>
|
||||
|
|
|
@ -3,10 +3,9 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.plugins</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<artifactId>org.eclipse.rse.subsystems.terminals.ssh</artifactId>
|
||||
|
|
|
@ -3,10 +3,9 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.plugins</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<artifactId>org.eclipse.rse.terminals.ui</artifactId>
|
||||
|
|
|
@ -3,10 +3,9 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.plugins</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<artifactId>org.eclipse.rse.ui.capabilities</artifactId>
|
||||
|
|
|
@ -3,13 +3,12 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.plugins</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<artifactId>org.eclipse.rse.ui</artifactId>
|
||||
<version>3.3.400.qualifier</version>
|
||||
<version>3.3.400-SNAPSHOT</version>
|
||||
<packaging>eclipse-plugin</packaging>
|
||||
</project>
|
||||
|
|
|
@ -3,10 +3,9 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.plugins</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<artifactId>org.eclipse.rse.useractions.sdk</artifactId>
|
||||
|
|
|
@ -3,10 +3,9 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.plugins</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<artifactId>org.eclipse.rse.useractions</artifactId>
|
||||
|
|
|
@ -3,10 +3,9 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.plugins</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<artifactId>org.eclipse.rse</artifactId>
|
||||
|
|
74
rse/plugins/pom.xml
Normal file
74
rse/plugins/pom.xml
Normal file
|
@ -0,0 +1,74 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
Copyright (c) 2017 Eclipse Foundation and others.
|
||||
All rights reserved. This program and the accompanying materials
|
||||
are made available under the terms of the Eclipse Distribution License v1.0
|
||||
which accompanies this distribution, and is available at
|
||||
http://www.eclipse.org/org/documents/edl-v10.php
|
||||
|
||||
Contributors:
|
||||
Nick Boldt (Red Hat) - initial implementation
|
||||
Rob Stryker (Red Hat) - initial implementation
|
||||
-->
|
||||
<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.rse</groupId>
|
||||
<artifactId>org.eclipse.tm.rse</artifactId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<artifactId>org.eclipse.tm.rse.plugins</artifactId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<modules>
|
||||
<module>org.eclipse.dstore.core</module>
|
||||
<module>org.eclipse.dstore.extra</module>
|
||||
<module>org.eclipse.rse</module>
|
||||
<module>org.eclipse.rse.connectorservice.dstore</module>
|
||||
<module>org.eclipse.rse.connectorservice.local</module>
|
||||
<module>org.eclipse.rse.connectorservice.ssh</module>
|
||||
<module>org.eclipse.rse.connectorservice.telnet</module>
|
||||
<module>org.eclipse.rse.core</module>
|
||||
<module>org.eclipse.rse.dstore.security</module>
|
||||
<module>org.eclipse.rse.efs</module>
|
||||
<module>org.eclipse.rse.efs.ui</module>
|
||||
<module>org.eclipse.rse.files.ui</module>
|
||||
<module>org.eclipse.rse.importexport</module>
|
||||
<module>org.eclipse.rse.processes.ui</module>
|
||||
<module>org.eclipse.rse.sdk</module>
|
||||
<module>org.eclipse.rse.services</module>
|
||||
<module>org.eclipse.rse.services.dstore</module>
|
||||
<module>org.eclipse.rse.services.files.ftp</module>
|
||||
<module>org.eclipse.rse.services.local</module>
|
||||
<module>org.eclipse.rse.services.ssh</module>
|
||||
<module>org.eclipse.rse.services.telnet</module>
|
||||
<module>org.eclipse.rse.shells.ui</module>
|
||||
<module>org.eclipse.rse.subsystems.files.core</module>
|
||||
<module>org.eclipse.rse.subsystems.files.dstore</module>
|
||||
<module>org.eclipse.rse.subsystems.files.ftp</module>
|
||||
<module>org.eclipse.rse.subsystems.files.local</module>
|
||||
<module>org.eclipse.rse.subsystems.files.scp</module>
|
||||
<module>org.eclipse.rse.subsystems.files.ssh</module>
|
||||
<module>org.eclipse.rse.subsystems.processes.core</module>
|
||||
<module>org.eclipse.rse.subsystems.processes.dstore</module>
|
||||
<module>org.eclipse.rse.subsystems.processes.local</module>
|
||||
<module>org.eclipse.rse.subsystems.processes.shell.linux</module>
|
||||
<module>org.eclipse.rse.subsystems.shells.core</module>
|
||||
<module>org.eclipse.rse.subsystems.shells.dstore</module>
|
||||
<module>org.eclipse.rse.subsystems.shells.local</module>
|
||||
<module>org.eclipse.rse.subsystems.shells.ssh</module>
|
||||
<module>org.eclipse.rse.subsystems.shells.telnet</module>
|
||||
<module>org.eclipse.rse.subsystems.terminals.core</module>
|
||||
<module>org.eclipse.rse.subsystems.terminals.ssh</module>
|
||||
<module>org.eclipse.rse.terminals.ui</module>
|
||||
<module>org.eclipse.rse.ui</module>
|
||||
<module>org.eclipse.rse.ui.capabilities</module>
|
||||
<module>org.eclipse.rse.useractions</module>
|
||||
<module>org.eclipse.rse.useractions.sdk</module>
|
||||
</modules>
|
||||
</project>
|
36
rse/pom.xml
Normal file
36
rse/pom.xml
Normal file
|
@ -0,0 +1,36 @@
|
|||
<?xml version='1.0' encoding='UTF-8' standalone='no'?>
|
||||
<!--
|
||||
Copyright (c) 2012, 2013 Eclipse Foundation and others.
|
||||
All rights reserved. This program and the accompanying materials
|
||||
are made available under the terms of the Eclipse Distribution License v1.0
|
||||
which accompanies this distribution, and is available at
|
||||
http://www.eclipse.org/org/documents/edl-v10.php
|
||||
|
||||
Contributors:
|
||||
Thanh Ha (Eclipse Foundation) - initial implementation
|
||||
Nick Boldt (Red Hat Inc.) - support for Tycho 1.0 and upstream component builds
|
||||
-->
|
||||
<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>
|
||||
|
||||
<parent>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<artifactId>tm-parent</artifactId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<artifactId>org.eclipse.tm.rse</artifactId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<modules>
|
||||
<module>doc</module>
|
||||
<module>examples</module>
|
||||
<module>features</module>
|
||||
<module>plugins</module>
|
||||
<module>tests</module>
|
||||
<module>site</module>
|
||||
</modules>
|
||||
</project>
|
|
@ -9,9 +9,6 @@
|
|||
<feature url="features/org.eclipse.rse.terminals_0.0.0.jar" id="org.eclipse.rse.terminals" version="0.0.0">
|
||||
<category name="rse_38_main"/>
|
||||
</feature>
|
||||
<feature url="features/org.eclipse.rse.terminals.source_0.0.0.jar" id="org.eclipse.rse.terminals.source" version="0.0.0">
|
||||
<category name="rse_38_main"/>
|
||||
</feature>
|
||||
<feature url="features/org.eclipse.rse.useractions_0.0.0.jar" id="org.eclipse.rse.useractions" version="0.0.0">
|
||||
<category name="rse_38_main"/>
|
||||
</feature>
|
14
rse/site/pom.xml
Executable file
14
rse/site/pom.xml
Executable file
|
@ -0,0 +1,14 @@
|
|||
<?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">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<artifactId>org.eclipse.tm.rse</artifactId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<artifactId>org.eclipse.tm.rse.site</artifactId>
|
||||
<packaging>eclipse-repository</packaging>
|
||||
</project>
|
|
@ -80,18 +80,4 @@
|
|||
version="0.0.0"
|
||||
unpack="false"/>
|
||||
|
||||
<plugin
|
||||
id="org.eclipse.rse.tests.source"
|
||||
download-size="0"
|
||||
install-size="0"
|
||||
version="0.0.0"
|
||||
unpack="false"/>
|
||||
|
||||
<plugin
|
||||
id="org.eclipse.rse.tests.framework.source"
|
||||
download-size="0"
|
||||
install-size="0"
|
||||
version="0.0.0"
|
||||
unpack="false"/>
|
||||
|
||||
</feature>
|
||||
|
|
|
@ -3,13 +3,12 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.tests</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm.features</groupId>
|
||||
<artifactId>org.eclipse.rse.tests</artifactId>
|
||||
<version>3.6.100.qualifier</version>
|
||||
<version>3.6.100-SNAPSHOT</version>
|
||||
<packaging>eclipse-feature</packaging>
|
||||
</project>
|
||||
|
|
|
@ -3,10 +3,9 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.tests</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<artifactId>org.eclipse.rse.tests.framework.examples</artifactId>
|
||||
|
|
|
@ -3,10 +3,9 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.tests</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<artifactId>org.eclipse.rse.tests.framework</artifactId>
|
||||
|
|
|
@ -3,14 +3,13 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../../admin/pom-build.xml</relativePath>
|
||||
<artifactId>org.eclipse.tm.rse.tests</artifactId>
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<artifactId>org.eclipse.rse.tests</artifactId>
|
||||
<version>3.4.100.qualifier</version>
|
||||
<version>3.4.100-SNAPSHOT</version>
|
||||
<!-- <packaging>eclipse-plugin</packaging> -->
|
||||
<packaging>eclipse-test-plugin</packaging>
|
||||
<build>
|
||||
|
|
34
rse/tests/pom.xml
Normal file
34
rse/tests/pom.xml
Normal file
|
@ -0,0 +1,34 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
Copyright (c) 2017 Eclipse Foundation and others.
|
||||
All rights reserved. This program and the accompanying materials
|
||||
are made available under the terms of the Eclipse Distribution License v1.0
|
||||
which accompanies this distribution, and is available at
|
||||
http://www.eclipse.org/org/documents/edl-v10.php
|
||||
|
||||
Contributors:
|
||||
Nick Boldt (Red Hat) - initial implementation
|
||||
Rob Stryker (Red Hat) - initial implementation
|
||||
-->
|
||||
<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.rse</groupId>
|
||||
<artifactId>org.eclipse.tm.rse</artifactId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<artifactId>org.eclipse.tm.rse.tests</artifactId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<modules>
|
||||
<module>org.eclipse.rse.tests</module>
|
||||
<module>org.eclipse.rse.tests-feature</module>
|
||||
<module>org.eclipse.rse.tests.framework</module>
|
||||
<module>org.eclipse.rse.tests.framework.examples</module>
|
||||
</modules>
|
||||
</project>
|
31
rse/tools/pom.xml
Normal file
31
rse/tools/pom.xml
Normal file
|
@ -0,0 +1,31 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
Copyright (c) 2017 Eclipse Foundation and others.
|
||||
All rights reserved. This program and the accompanying materials
|
||||
are made available under the terms of the Eclipse Distribution License v1.0
|
||||
which accompanies this distribution, and is available at
|
||||
http://www.eclipse.org/org/documents/edl-v10.php
|
||||
|
||||
Contributors:
|
||||
Nick Boldt (Red Hat) - initial implementation
|
||||
Rob Stryker (Red Hat) - initial implementation
|
||||
-->
|
||||
<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.rse</groupId>
|
||||
<artifactId>org.eclipse.tm.rse</artifactId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
<groupId>org.eclipse.tm.rse</groupId>
|
||||
<artifactId>org.eclipse.tm.rse.tools</artifactId>
|
||||
<version>3.6.0-SNAPSHOT</version>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<modules>
|
||||
<module>org.eclipse.rse.tools.workspace</module>
|
||||
</modules>
|
||||
</project>
|
|
@ -3,10 +3,9 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<artifactId>org.eclipse.tm.wince</artifactId>
|
||||
<groupId>org.eclipse.tm.wince</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../admin/pom-build.xml</relativePath>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<artifactId>org.eclipse.rse.subsystems.wince</artifactId>
|
||||
|
|
|
@ -59,7 +59,7 @@
|
|||
install-size="26"
|
||||
version="0.0.0"
|
||||
unpack="false"/>
|
||||
|
||||
<!--
|
||||
<plugin
|
||||
id="org.eclipse.rse.subsystems.wince.source"
|
||||
download-size="0"
|
||||
|
@ -73,5 +73,5 @@
|
|||
install-size="0"
|
||||
version="0.0.0"
|
||||
unpack="false"/>
|
||||
|
||||
-->
|
||||
</feature>
|
||||
|
|
|
@ -3,14 +3,13 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<artifactId>org.eclipse.tm.wince</artifactId>
|
||||
<groupId>org.eclipse.tm.wince</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../admin/pom-build.xml</relativePath>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm.features</groupId>
|
||||
<artifactId>org.eclipse.rse.wince</artifactId>
|
||||
<version>4.0.0.qualifier</version>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<packaging>eclipse-feature</packaging>
|
||||
<build>
|
||||
<plugins>
|
||||
|
|
|
@ -3,10 +3,9 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<artifactId>org.eclipse.tm.maven-build</artifactId>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<artifactId>org.eclipse.tm.wince</artifactId>
|
||||
<groupId>org.eclipse.tm.wince</groupId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<relativePath>../../admin/pom-build.xml</relativePath>
|
||||
</parent>
|
||||
<groupId>org.eclipse.tm</groupId>
|
||||
<artifactId>org.eclipse.tm.rapi</artifactId>
|
||||
|
|
33
wince/pom.xml
Normal file
33
wince/pom.xml
Normal file
|
@ -0,0 +1,33 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
Copyright (c) 2017 Eclipse Foundation and others.
|
||||
All rights reserved. This program and the accompanying materials
|
||||
are made available under the terms of the Eclipse Distribution License v1.0
|
||||
which accompanies this distribution, and is available at
|
||||
http://www.eclipse.org/org/documents/edl-v10.php
|
||||
|
||||
Contributors:
|
||||
Nick Boldt (Red Hat) - initial implementation
|
||||
Rob Stryker (Red Hat) - initial implementation
|
||||
-->
|
||||
<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>tm-parent</artifactId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
<groupId>org.eclipse.tm.wince</groupId>
|
||||
<artifactId>org.eclipse.tm.wince</artifactId>
|
||||
<version>4.0.0-SNAPSHOT</version>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<modules>
|
||||
<module>org.eclipse.rse.wince-feature</module>
|
||||
<module>org.eclipse.rse.subsystems.wince</module>
|
||||
<module>org.eclipse.tm.rapi</module>
|
||||
</modules>
|
||||
</project>
|
Loading…
Add table
Reference in a new issue