Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Vogel2013-11-08 16:13:08 +0000
committerLars Vogel2013-11-08 17:43:44 +0000
commit227cf14966f95889bc55f7d4ad2fbff5d6ad352c (patch)
tree55549b0d7a5606a56d5ec249cacf04159d7e2067
parent17d6330e7ba6fb7f7838c09e37f193e791349d5d (diff)
downloadeclipse.platform.ui-227cf14966f95889bc55f7d4ad2fbff5d6ad352c.tar.gz
eclipse.platform.ui-227cf14966f95889bc55f7d4ad2fbff5d6ad352c.tar.xz
eclipse.platform.ui-227cf14966f95889bc55f7d4ad2fbff5d6ad352c.zip
Bug 421291 - Integrate org.eclipse.ui.images into platform aggregator
build Change-Id: I2a7d521ff1a6b921643888b55e20a4814e51c1b2 Signed-off-by: Lars Vogel <Lars.Vogel@gmail.com>
-rw-r--r--bundles/org.eclipse.ui.images/pom.xml24
-rw-r--r--pom.xml2
2 files changed, 26 insertions, 0 deletions
diff --git a/bundles/org.eclipse.ui.images/pom.xml b/bundles/org.eclipse.ui.images/pom.xml
new file mode 100644
index 00000000000..ddcf502c3bb
--- /dev/null
+++ b/bundles/org.eclipse.ui.images/pom.xml
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright (c) 2013 - vogella GmbH
+ 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:
+ Lars Vogel - 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>eclipse.platform.ui</artifactId>
+ <groupId>eclipse.platform.ui</groupId>
+ <version>4.4.0-SNAPSHOT</version>
+ <relativePath>../../</relativePath>
+ </parent>
+ <groupId>org.eclipse.ui</groupId>
+ <artifactId>org.eclipse.ui.images</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+</project>
diff --git a/pom.xml b/pom.xml
index 48bcb5a4627..2091318f50d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -8,6 +8,7 @@
Contributors:
Igor Fedorenko - initial implementation
+ Lars Vogel <Lars.Vogel@gmail.com> - Bug 421291
-->
<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>
@@ -98,6 +99,7 @@
<module>bundles/org.eclipse.ui</module>
<module>bundles/org.eclipse.ui.browser</module>
<module>bundles/org.eclipse.ui.forms</module>
+ <module>bundles/org.eclipse.ui.images</module>
<module>bundles/org.eclipse.ui.views</module>
<module>bundles/org.eclipse.ui.views.properties.tabbed</module>
<module>bundles/org.eclipse.ui.workbench</module>

Back to the top