Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIgor Fedorenko2011-12-10 04:34:58 +0000
committerIgor Fedorenko2011-12-10 04:34:58 +0000
commitbafa86d50ef92bc0b426f815121a75edf13d9194 (patch)
treeb40cdc9e6a88c0e905221c346f92cbcf0e6bc9f5 /eclipse-parent/pom.xml
downloadeclipse.platform.releng.aggregator-bafa86d50ef92bc0b426f815121a75edf13d9194.tar.gz
eclipse.platform.releng.aggregator-bafa86d50ef92bc0b426f815121a75edf13d9194.tar.xz
eclipse.platform.releng.aggregator-bafa86d50ef92bc0b426f815121a75edf13d9194.zip
initial checkin
Signed-off-by: Igor Fedorenko <igor@ifedorenko.com>
Diffstat (limited to 'eclipse-parent/pom.xml')
-rw-r--r--eclipse-parent/pom.xml104
1 files changed, 104 insertions, 0 deletions
diff --git a/eclipse-parent/pom.xml b/eclipse-parent/pom.xml
new file mode 100644
index 000000000..1c23b9eaf
--- /dev/null
+++ b/eclipse-parent/pom.xml
@@ -0,0 +1,104 @@
+<?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>
+
+ <groupId>org.eclipse</groupId>
+ <artifactId>eclipse-parent</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+ <packaging>pom</packaging>
+
+ <properties>
+ <tycho.version>0.14.0-SNAPSHOT</tycho.version>
+
+ <orbit-repo.url>http://download.eclipse.org/tools/orbit/downloads/drops/S20111018035124/repository/</orbit-repo.url>
+ <emf-repo.url>http://download.eclipse.org/modeling/emf/emf/updates/2.7</emf-repo.url>
+ <jetty-repo.url>http://www.eclipse.org/external/jetty/updates/jetty-bundles-8.x/8.0.4.v20111024/</jetty-repo.url>
+ <ecf-repo.url>http://download.eclipse.org/rt/ecf/3.5.3/site.p2</ecf-repo.url>
+
+ <natives-repo.url>file:///var/tmp/lts/natives</natives-repo.url>
+ </properties>
+
+ <pluginRepositories>
+ <pluginRepository>
+ <id>tycho</id>
+ <url>https://repository.sonatype.org/content/repositories/snapshots/</url>
+ <releases><enabled>false</enabled></releases>
+ <snapshots><enabled>true</enabled></snapshots>
+ </pluginRepository>
+ </pluginRepositories>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-maven-plugin</artifactId>
+ <version>${tycho.version}</version>
+ <extensions>true</extensions>
+ </plugin>
+
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>target-platform-configuration</artifactId>
+ <configuration>
+ <!--
+ org.eclipse.equinox.security requires J2SE-1.4 to resolve a number of javax.crypto.* and javax.security.*
+ packages. This makes J2SE-1.4 effectively the minimal execution environment required by eclipse platform
+ build since many platform bundles directly or indirectly depend on org.eclipse.equinox.security.
+ -->
+ <executionEnvironment>?J2SE-1.4</executionEnvironment>
+ </configuration>
+ </plugin>
+
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-source-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>plugin-source</id>
+ <goals>
+ <goal>plugin-source</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+
+ <pluginManagement>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>target-platform-configuration</artifactId>
+ <version>${tycho.version}</version>
+ </plugin>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-compiler-plugin</artifactId>
+ <version>${tycho.version}</version>
+ </plugin>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-packaging-plugin</artifactId>
+ <version>${tycho.version}</version>
+ </plugin>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-surefire-plugin</artifactId>
+ <version>${tycho.version}</version>
+ </plugin>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-source-plugin</artifactId>
+ <version>${tycho.version}</version>
+ </plugin>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-p2-director-plugin</artifactId>
+ <version>${tycho.version}</version>
+ </plugin>
+ </plugins>
+ </pluginManagement>
+ </build>
+
+</project>

Back to the top