Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Alexander Kuppe2013-06-17 12:51:42 +0000
committerMarkus Alexander Kuppe2013-06-17 13:45:00 +0000
commit2db833285f57fe09df0f4492cc33fd29a5dc613a (patch)
tree877ede060ea37b7d3f07f9030d5ff369c9db9a0e /pom.xml
parentbbc6934b849f24fe31717220e96ebfe210159eb8 (diff)
downloadorg.eclipse.e4.tools-2db833285f57fe09df0f4492cc33fd29a5dc613a.tar.gz
org.eclipse.e4.tools-2db833285f57fe09df0f4492cc33fd29a5dc613a.tar.xz
org.eclipse.e4.tools-2db833285f57fe09df0f4492cc33fd29a5dc613a.zip
Bug 403237 - o.e.e4.tools cannot be build with "mvn clean install"I20130619-2200I20130618-2200I20130617-2200
https://bugs.eclipse.org/403237 Change-Id: Icd239c744d74fc4dc7cab0ed0f45526e9ed87812
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml19
1 files changed, 19 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index aabe079f..835d353a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -13,11 +13,30 @@
<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.e4.releng</groupId>
+ <artifactId>eclipse-parent</artifactId>
+ <version>0.14.0-SNAPSHOT</version>
+ </parent>
+
<groupId>org.eclipse.e4.tools</groupId>
<artifactId>e4-tools-aggregator</artifactId>
<version>0.14.0-SNAPSHOT</version>
<packaging>pom</packaging>
+ <repositories>
+ <repository>
+ <releases>
+ <enabled>true</enabled>
+ </releases>
+ <snapshots>
+ <enabled>true</enabled>
+ </snapshots>
+ <id>eclipse-hosted</id>
+ <url>https://repo.eclipse.org/content/repositories/eclipse/</url>
+ </repository>
+ </repositories>
+
<modules>
<module>./bundles/org.eclipse.e4.tools</module>
<module>./bundles/org.eclipse.e4.tools.services</module>

Back to the top