| author | Thanh Ha | 2012-08-21 11:06:11 (EDT) |
|---|---|---|
| committer | John Arthorne | 2012-09-13 10:00:28 (EDT) |
| commit | 93ab3ff0208dd5597cc4de1efe34e334ba2eb59e (patch) (side-by-side diff) | |
| tree | f5900c7ada21c63c2aefca906e16be5053ad75c0 | |
| parent | d0bf9be2da115a58ad7dbff2e182e0e8a0042440 (diff) | |
| download | eclipse.platform.resources-93ab3ff0208dd5597cc4de1efe34e334ba2eb59e.zip eclipse.platform.resources-93ab3ff0208dd5597cc4de1efe34e334ba2eb59e.tar.gz eclipse.platform.resources-93ab3ff0208dd5597cc4de1efe34e334ba2eb59e.tar.bz2 | |
10 files changed, 279 insertions, 0 deletions
diff --git a/bundles/org.eclipse.core.filesystem.hpux.PA_RISC/pom.xml b/bundles/org.eclipse.core.filesystem.hpux.PA_RISC/pom.xml index fd9329e..5ce48b6 100644 --- a/bundles/org.eclipse.core.filesystem.hpux.PA_RISC/pom.xml +++ b/bundles/org.eclipse.core.filesystem.hpux.PA_RISC/pom.xml @@ -23,4 +23,25 @@ <artifactId>org.eclipse.core.filesystem.hpux.PA_RISC</artifactId> <version>1.0.0-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> + + <build> + <plugins> + <!-- tycho is not able to automatically determine os/ws/arch of this bundle --> + <plugin> + <groupId>org.eclipse.tycho</groupId> + <artifactId>target-platform-configuration</artifactId> + <version>${tycho.version}</version> + <configuration> + <resolver>p2</resolver> + <environments> + <environment> + <os>hpux</os> + <ws>gtk</ws> + <arch>PA_RISC</arch> + </environment> + </environments> + </configuration> + </plugin> + </plugins> + </build> </project> diff --git a/bundles/org.eclipse.core.filesystem.hpux.ia64_32/pom.xml b/bundles/org.eclipse.core.filesystem.hpux.ia64_32/pom.xml index dacb2f5..9de8956 100644 --- a/bundles/org.eclipse.core.filesystem.hpux.ia64_32/pom.xml +++ b/bundles/org.eclipse.core.filesystem.hpux.ia64_32/pom.xml @@ -23,4 +23,25 @@ <artifactId>org.eclipse.core.filesystem.hpux.ia64_32</artifactId> <version>1.0.100-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> + + <build> + <plugins> + <!-- tycho is not able to automatically determine os/ws/arch of this bundle --> + <plugin> + <groupId>org.eclipse.tycho</groupId> + <artifactId>target-platform-configuration</artifactId> + <version>${tycho.version}</version> + <configuration> + <resolver>p2</resolver> + <environments> + <environment> + <os>hpux</os> + <ws>gtk</ws> + <arch>ia64_32</arch> + </environment> + </environments> + </configuration> + </plugin> + </plugins> + </build> </project> diff --git a/bundles/org.eclipse.core.filesystem.linux.ppc/pom.xml b/bundles/org.eclipse.core.filesystem.linux.ppc/pom.xml index 6b47648..40813ac 100644 --- a/bundles/org.eclipse.core.filesystem.linux.ppc/pom.xml +++ b/bundles/org.eclipse.core.filesystem.linux.ppc/pom.xml @@ -23,4 +23,25 @@ <artifactId>org.eclipse.core.filesystem.linux.ppc</artifactId> <version>1.0.200-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> + + <build> + <plugins> + <!-- tycho is not able to automatically determine os/ws/arch of this bundle --> + <plugin> + <groupId>org.eclipse.tycho</groupId> + <artifactId>target-platform-configuration</artifactId> + <version>${tycho.version}</version> + <configuration> + <resolver>p2</resolver> + <environments> + <environment> + <os>linux</os> + <ws>gtk</ws> + <arch>ppc</arch> + </environment> + </environments> + </configuration> + </plugin> + </plugins> + </build> </project> diff --git a/bundles/org.eclipse.core.filesystem.qnx.x86/pom.xml b/bundles/org.eclipse.core.filesystem.qnx.x86/pom.xml index 7625f97..9c97be6 100644 --- a/bundles/org.eclipse.core.filesystem.qnx.x86/pom.xml +++ b/bundles/org.eclipse.core.filesystem.qnx.x86/pom.xml @@ -23,4 +23,25 @@ <artifactId>org.eclipse.core.filesystem.qnx.x86</artifactId> <version>1.0.0-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> + + <build> + <plugins> + <!-- tycho is not able to automatically determine os/ws/arch of this bundle --> + <plugin> + <groupId>org.eclipse.tycho</groupId> + <artifactId>target-platform-configuration</artifactId> + <version>${tycho.version}</version> + <configuration> + <resolver>p2</resolver> + <environments> + <environment> + <os>qnx</os> + <ws>photon</ws> + <arch>x86</arch> + </environment> + </environments> + </configuration> + </plugin> + </plugins> + </build> </project> diff --git a/bundles/org.eclipse.core.filesystem.solaris.sparc/pom.xml b/bundles/org.eclipse.core.filesystem.solaris.sparc/pom.xml index 42fbd0d..f289db8 100644 --- a/bundles/org.eclipse.core.filesystem.solaris.sparc/pom.xml +++ b/bundles/org.eclipse.core.filesystem.solaris.sparc/pom.xml @@ -23,4 +23,25 @@ <artifactId>org.eclipse.core.filesystem.solaris.sparc</artifactId> <version>1.2.0-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> + + <build> + <plugins> + <!-- tycho is not able to automatically determine os/ws/arch of this bundle --> + <plugin> + <groupId>org.eclipse.tycho</groupId> + <artifactId>target-platform-configuration</artifactId> + <version>${tycho.version}</version> + <configuration> + <resolver>p2</resolver> + <environments> + <environment> + <os>solaris</os> + <ws>gtk</ws> + <arch>sparc</arch> + </environment> + </environments> + </configuration> + </plugin> + </plugins> + </build> </project> diff --git a/bundles/org.eclipse.core.filesystem.win32.ia64/pom.xml b/bundles/org.eclipse.core.filesystem.win32.ia64/pom.xml index b8e943f..78e67a3 100644 --- a/bundles/org.eclipse.core.filesystem.win32.ia64/pom.xml +++ b/bundles/org.eclipse.core.filesystem.win32.ia64/pom.xml @@ -23,4 +23,25 @@ <artifactId>org.eclipse.core.filesystem.win32.ia64</artifactId> <version>1.1.300-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> + + <build> + <plugins> + <!-- tycho is not able to automatically determine os/ws/arch of this bundle --> + <plugin> + <groupId>org.eclipse.tycho</groupId> + <artifactId>target-platform-configuration</artifactId> + <version>${tycho.version}</version> + <configuration> + <resolver>p2</resolver> + <environments> + <environment> + <os>win32</os> + <ws>win32</ws> + <arch>ia64</arch> + </environment> + </environments> + </configuration> + </plugin> + </plugins> + </build> </project> diff --git a/bundles/org.eclipse.core.filesystem/fragments/org.eclipse.core.filesystem.aix.ppc/pom.xml b/bundles/org.eclipse.core.filesystem/fragments/org.eclipse.core.filesystem.aix.ppc/pom.xml new file mode 100644 index 0000000..90a8b5c --- a/dev/null +++ b/bundles/org.eclipse.core.filesystem/fragments/org.eclipse.core.filesystem.aix.ppc/pom.xml @@ -0,0 +1,47 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2012 Eclipse Foundation. + 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: + Igor Fedorenko - 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> + <artifactId>eclipse.platform.resources</artifactId> + <groupId>eclipse.platform.resources</groupId> + <version>3.8.0-SNAPSHOT</version> + <relativePath>../../../../</relativePath> + </parent> + <groupId>eclipse.platform.resources</groupId> + <artifactId>org.eclipse.core.filesystem.aix.ppc</artifactId> + <version>1.1.0-SNAPSHOT</version> + <packaging>eclipse-plugin</packaging> + + <build> + <plugins> + <!-- tycho is not able to automatically determine os/ws/arch of this bundle --> + <plugin> + <groupId>org.eclipse.tycho</groupId> + <artifactId>target-platform-configuration</artifactId> + <version>${tycho.version}</version> + <configuration> + <resolver>p2</resolver> + <environments> + <environment> + <os>aix</os> + <ws>gtk</ws> + <arch>ppc</arch> + </environment> + </environments> + </configuration> + </plugin> + </plugins> + </build> +</project> diff --git a/bundles/org.eclipse.core.filesystem/fragments/org.eclipse.core.filesystem.aix.ppc64/pom.xml b/bundles/org.eclipse.core.filesystem/fragments/org.eclipse.core.filesystem.aix.ppc64/pom.xml new file mode 100644 index 0000000..179ad5f --- a/dev/null +++ b/bundles/org.eclipse.core.filesystem/fragments/org.eclipse.core.filesystem.aix.ppc64/pom.xml @@ -0,0 +1,47 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2012 Eclipse Foundation. + 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: + Igor Fedorenko - 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> + <artifactId>eclipse.platform.resources</artifactId> + <groupId>eclipse.platform.resources</groupId> + <version>3.8.0-SNAPSHOT</version> + <relativePath>../../../../</relativePath> + </parent> + <groupId>eclipse.platform.resources</groupId> + <artifactId>org.eclipse.core.filesystem.aix.ppc64</artifactId> + <version>1.1.0-SNAPSHOT</version> + <packaging>eclipse-plugin</packaging> + + <build> + <plugins> + <!-- tycho is not able to automatically determine os/ws/arch of this bundle --> + <plugin> + <groupId>org.eclipse.tycho</groupId> + <artifactId>target-platform-configuration</artifactId> + <version>${tycho.version}</version> + <configuration> + <resolver>p2</resolver> + <environments> + <environment> + <os>aix</os> + <ws>gtk</ws> + <arch>ppc64</arch> + </environment> + </environments> + </configuration> + </plugin> + </plugins> + </build> +</project> diff --git a/bundles/org.eclipse.core.filesystem/fragments/org.eclipse.core.filesystem.solaris.sparcv9/pom.xml b/bundles/org.eclipse.core.filesystem/fragments/org.eclipse.core.filesystem.solaris.sparcv9/pom.xml new file mode 100644 index 0000000..69c19b3 --- a/dev/null +++ b/bundles/org.eclipse.core.filesystem/fragments/org.eclipse.core.filesystem.solaris.sparcv9/pom.xml @@ -0,0 +1,47 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2012 Eclipse Foundation. + 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: + Igor Fedorenko - 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> + <artifactId>eclipse.platform.resources</artifactId> + <groupId>eclipse.platform.resources</groupId> + <version>3.8.0-SNAPSHOT</version> + <relativePath>../../../../</relativePath> + </parent> + <groupId>eclipse.platform.resources</groupId> + <artifactId>org.eclipse.core.filesystem.solaris.sparcv9</artifactId> + <version>1.1.0-SNAPSHOT</version> + <packaging>eclipse-plugin</packaging> + + <build> + <plugins> + <!-- tycho is not able to automatically determine os/ws/arch of this bundle --> + <plugin> + <groupId>org.eclipse.tycho</groupId> + <artifactId>target-platform-configuration</artifactId> + <version>${tycho.version}</version> + <configuration> + <resolver>p2</resolver> + <environments> + <environment> + <os>solaris</os> + <ws>gtk</ws> + <arch>sparcv9</arch> + </environment> + </environments> + </configuration> + </plugin> + </plugins> + </build> +</project> @@ -29,16 +29,28 @@ <modules> <module>bundles/org.eclipse.core.filesystem</module> + <module>bundles/org.eclipse.core.filesystem.hpux.ia64_32</module> + <module>bundles/org.eclipse.core.filesystem.hpux.PA_RISC</module> + <module>bundles/org.eclipse.core.filesystem.linux.ppc</module> <module>bundles/org.eclipse.core.filesystem.linux.x86</module> <module>bundles/org.eclipse.core.filesystem.linux.x86_64</module> <module>bundles/org.eclipse.core.filesystem.macosx</module> + <module>bundles/org.eclipse.core.filesystem.qnx.x86</module> + <module>bundles/org.eclipse.core.filesystem.solaris.sparc</module> + <module>bundles/org.eclipse.core.filesystem.win32.ia64</module> <module>bundles/org.eclipse.core.filesystem.win32.x86</module> <module>bundles/org.eclipse.core.filesystem.win32.x86_64</module> + + <module>bundles/org.eclipse.core.filesystem/fragments/org.eclipse.core.filesystem.aix.ppc</module> + <module>bundles/org.eclipse.core.filesystem/fragments/org.eclipse.core.filesystem.aix.ppc64</module> + <module>bundles/org.eclipse.core.filesystem/fragments/org.eclipse.core.filesystem.solaris.sparcv9</module> + <module>bundles/org.eclipse.core.resources</module> <module>bundles/org.eclipse.core.resources.compatibility</module> <module>bundles/org.eclipse.core.resources.spysupport</module> <module>bundles/org.eclipse.core.resources.win32.x86</module> <module>bundles/org.eclipse.core.tools.resources</module> + <module>tests/org.eclipse.core.tests.resources</module> <module>tests/org.eclipse.core.tests.resources.saveparticipant</module> <module>tests/org.eclipse.core.tests.resources.saveparticipant1</module> |

