Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThanh Ha2013-06-19 14:19:44 +0000
committerMarkus Knauer2013-08-17 13:07:00 +0000
commit3ba1e3de3451aa926f4f49029a013be6548bf1ea (patch)
tree86976edadc64b6ff8c3cb9c2f2e5e802adf38c53 /packages/org.eclipse.epp.package.dsl
parentd29f793a5b349e43c905436c9cb022fcbe2b0dba (diff)
downloadorg.eclipse.epp.packages-3ba1e3de3451aa926f4f49029a013be6548bf1ea.tar.gz
org.eclipse.epp.packages-3ba1e3de3451aa926f4f49029a013be6548bf1ea.tar.xz
org.eclipse.epp.packages-3ba1e3de3451aa926f4f49029a013be6548bf1ea.zip
Bug 366430 - Building EPP packages with Tycho
Based off original work by Igor Fedorenko: https://github.com/ifedorenko/org.eclipse.epp Signed-off-by: Markus Knauer <mknauer@eclipsesource.com>
Diffstat (limited to 'packages/org.eclipse.epp.package.dsl')
-rw-r--r--packages/org.eclipse.epp.package.dsl/pom.xml28
1 files changed, 28 insertions, 0 deletions
diff --git a/packages/org.eclipse.epp.package.dsl/pom.xml b/packages/org.eclipse.epp.package.dsl/pom.xml
new file mode 100644
index 00000000..2b29c01b
--- /dev/null
+++ b/packages/org.eclipse.epp.package.dsl/pom.xml
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright (c) 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
+-->
+
+<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.epp</groupId>
+ <artifactId>epp-parent</artifactId>
+ <version>2.0.0-SNAPSHOT</version>
+ <relativePath>../../</relativePath>
+ </parent>
+
+ <groupId>org.eclipse.epp</groupId>
+ <artifactId>org.eclipse.epp.package.dsl</artifactId>
+ <version>2.0.0-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+</project>

Back to the top