Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike Rennie2013-08-12 18:00:31 +0000
committerMike Rennie2013-08-12 18:00:31 +0000
commitc0c817b0d5f0a0f2e200fc0e7a1541606e2b3d70 (patch)
tree90d6e17cabd85d8ca240844553c1e1644a797f2c
parent2545cb548af6984129ba176759ba8ffc4de1a88e (diff)
downloadeclipse.platform.debug-c0c817b0d5f0a0f2e200fc0e7a1541606e2b3d70.tar.gz
eclipse.platform.debug-c0c817b0d5f0a0f2e200fc0e7a1541606e2b3d70.tar.xz
eclipse.platform.debug-c0c817b0d5f0a0f2e200fc0e7a1541606e2b3d70.zip
[nobug] add / update POMs for new example bundles
-rw-r--r--org.eclipse.debug.examples.memory/pom.xml23
-rw-r--r--org.eclipse.debug.examples.mixedmode/pom.xml23
-rw-r--r--pom.xml2
3 files changed, 48 insertions, 0 deletions
diff --git a/org.eclipse.debug.examples.memory/pom.xml b/org.eclipse.debug.examples.memory/pom.xml
new file mode 100644
index 000000000..7621fe5f1
--- /dev/null
+++ b/org.eclipse.debug.examples.memory/pom.xml
@@ -0,0 +1,23 @@
+<?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:
+ Igor Fedorenko - 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.debug</artifactId>
+ <groupId>eclipse.platform.debug</groupId>
+ <version>4.4.0-SNAPSHOT</version>
+ </parent>
+ <groupId>org.eclipse.debug</groupId>
+ <artifactId>org.eclipse.debug.examples.memory</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+</project>
diff --git a/org.eclipse.debug.examples.mixedmode/pom.xml b/org.eclipse.debug.examples.mixedmode/pom.xml
new file mode 100644
index 000000000..ac5efd849
--- /dev/null
+++ b/org.eclipse.debug.examples.mixedmode/pom.xml
@@ -0,0 +1,23 @@
+<?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:
+ Igor Fedorenko - 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.debug</artifactId>
+ <groupId>eclipse.platform.debug</groupId>
+ <version>4.4.0-SNAPSHOT</version>
+ </parent>
+ <groupId>org.eclipse.debug</groupId>
+ <artifactId>org.eclipse.debug.examples.mixedmode</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+</project>
diff --git a/pom.xml b/pom.xml
index 692b0cf52..7a086fe4a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -46,6 +46,8 @@
<module>org.eclipse.core.variables</module>
<module>org.eclipse.debug.core</module>
<module>org.eclipse.debug.examples.core</module>
+ <module>org.eclipse.debug.examples.memory</module>
+ <module>org.eclipse.debug.examples.mixedmode</module>
<module>org.eclipse.debug.examples.ui</module>
<module>org.eclipse.debug.tests</module>
<module>org.eclipse.debug.ui</module>

Back to the top