Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2015-09-03 13:17:22 +0000
committerAlexander Kurtakov2015-11-13 17:33:41 +0000
commitf9a4df947e4da913325b8523f9812b59da0cdacb (patch)
tree0e9d4abfb81a390defe41eb99a8f09dab06a4cb3 /bundles/org.eclipse.equinox.launcher.gtk.linux.arm/pom.xml
parentdf8289155d6db4a52817db79d942316bfa3c9ece (diff)
downloadrt.equinox.framework-f9a4df947e4da913325b8523f9812b59da0cdacb.tar.gz
rt.equinox.framework-f9a4df947e4da913325b8523f9812b59da0cdacb.tar.xz
rt.equinox.framework-f9a4df947e4da913325b8523f9812b59da0cdacb.zip
Bug 431197 - Provide launchers for arm and aarch64I20151117-0800
Add fragments hook them in the build system but conditionally via profiles. Change-Id: Ia93e5ac1a495bc4c953f861e583747ce89c22256 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
Diffstat (limited to 'bundles/org.eclipse.equinox.launcher.gtk.linux.arm/pom.xml')
-rw-r--r--bundles/org.eclipse.equinox.launcher.gtk.linux.arm/pom.xml30
1 files changed, 30 insertions, 0 deletions
diff --git a/bundles/org.eclipse.equinox.launcher.gtk.linux.arm/pom.xml b/bundles/org.eclipse.equinox.launcher.gtk.linux.arm/pom.xml
new file mode 100644
index 000000000..b6b34cf35
--- /dev/null
+++ b/bundles/org.eclipse.equinox.launcher.gtk.linux.arm/pom.xml
@@ -0,0 +1,30 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright (c) 2015 Red Hat Inc.
+ 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:
+ Red Hat Inc. - initial implementation
+-->
+<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>
+ <artifactId>launcher-binary-parent</artifactId>
+ <groupId>org.eclipse.equinox.framework</groupId>
+ <version>4.6.0-SNAPSHOT</version>
+ <relativePath>../../launcher-binary-parent</relativePath>
+ </parent>
+ <groupId>org.eclipse.equinox</groupId>
+ <artifactId>org.eclipse.equinox.launcher.gtk.linux.arm</artifactId>
+ <version>1.1.300-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+
+ <properties>
+ <os>linux</os>
+ <ws>gtk</ws>
+ <arch>arm</arch>
+ </properties>
+</project>

Back to the top