Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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