Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.m2e.importer.tests/resources')
-rw-r--r--org.eclipse.m2e.importer.tests/resources/examples/example1/module1/pom.xml19
-rw-r--r--org.eclipse.m2e.importer.tests/resources/examples/example1/module1/src/main/java/module1/Dummy.java16
-rw-r--r--org.eclipse.m2e.importer.tests/resources/examples/example1/pom.xml20
3 files changed, 55 insertions, 0 deletions
diff --git a/org.eclipse.m2e.importer.tests/resources/examples/example1/module1/pom.xml b/org.eclipse.m2e.importer.tests/resources/examples/example1/module1/pom.xml
new file mode 100644
index 00000000..68f28d4b
--- /dev/null
+++ b/org.eclipse.m2e.importer.tests/resources/examples/example1/module1/pom.xml
@@ -0,0 +1,19 @@
+<!-- Copyright (c) 2016 Red Hat Inc. and others
+
+All rights reserved. This program and the accompanying materials
+are made available under the terms of the Eclipse Public License v1.0
+which accompanies this distribution, and is available at
+http://www.eclipse.org/legal/epl-v10.html
+
+Contributors:
+ Mickael Istria (Red Hat Inc.) - 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>
+ <groupId>org.eclipse.m2e.tests.example1</groupId>
+ <artifactId>parent</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ </parent>
+ <artifactId>module1</artifactId>
+</project> \ No newline at end of file
diff --git a/org.eclipse.m2e.importer.tests/resources/examples/example1/module1/src/main/java/module1/Dummy.java b/org.eclipse.m2e.importer.tests/resources/examples/example1/module1/src/main/java/module1/Dummy.java
new file mode 100644
index 00000000..8d8dacf5
--- /dev/null
+++ b/org.eclipse.m2e.importer.tests/resources/examples/example1/module1/src/main/java/module1/Dummy.java
@@ -0,0 +1,16 @@
+/*******************************************************************************
+ * Copyright (c) 2016 Red Hat Inc. and others
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Mickael Istria (Red Hat Inc.) - Initial implementation
+ *******************************************************************************/
+package module1;
+
+public class Dummy {
+
+}
diff --git a/org.eclipse.m2e.importer.tests/resources/examples/example1/pom.xml b/org.eclipse.m2e.importer.tests/resources/examples/example1/pom.xml
new file mode 100644
index 00000000..2457b14b
--- /dev/null
+++ b/org.eclipse.m2e.importer.tests/resources/examples/example1/pom.xml
@@ -0,0 +1,20 @@
+<!-- Copyright (c) 2016 Red Hat Inc. and others
+
+All rights reserved. This program and the accompanying materials
+are made available under the terms of the Eclipse Public License v1.0
+which accompanies this distribution, and is available at
+http://www.eclipse.org/legal/epl-v10.html
+
+Contributors:
+ Mickael Istria (Red Hat Inc.) - 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>
+ <groupId>org.eclipse.m2e.tests.example1</groupId>
+ <artifactId>parent</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ <packaging>pom</packaging>
+ <modules>
+ <module>module1</module>
+ </modules>
+</project> \ No newline at end of file

Back to the top