annotate pom.xml @ 38:6c85a4fcfe28

add a toplevel pom, make this a reactor build
author Dirk Olmes <dirk@xanthippe.ping.de>
date Sun, 09 Oct 2011 07:29:59 +0200
parents
children 3201f93801d0
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
38
6c85a4fcfe28 add a toplevel pom, make this a reactor build
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
1 <?xml version="1.0" encoding="UTF-8"?>
6c85a4fcfe28 add a toplevel pom, make this a reactor build
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
2 <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">
6c85a4fcfe28 add a toplevel pom, make this a reactor build
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
3 <modelVersion>4.0.0</modelVersion>
6c85a4fcfe28 add a toplevel pom, make this a reactor build
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
4 <groupId>de.codedo</groupId>
6c85a4fcfe28 add a toplevel pom, make this a reactor build
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
5 <artifactId>conflict-editor-parent</artifactId>
6c85a4fcfe28 add a toplevel pom, make this a reactor build
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
6 <version>1.0-SNAPSHOT</version>
6c85a4fcfe28 add a toplevel pom, make this a reactor build
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
7 <packaging>pom</packaging>
6c85a4fcfe28 add a toplevel pom, make this a reactor build
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
8 <name>Conflict Editor Parent</name>
6c85a4fcfe28 add a toplevel pom, make this a reactor build
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
9 <url>http://xanthippe.dyndns.org/ConflictEditor</url>
6c85a4fcfe28 add a toplevel pom, make this a reactor build
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
10
6c85a4fcfe28 add a toplevel pom, make this a reactor build
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
11 <properties>
6c85a4fcfe28 add a toplevel pom, make this a reactor build
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
12 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
6c85a4fcfe28 add a toplevel pom, make this a reactor build
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
13 <vmtype>org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType</vmtype>
6c85a4fcfe28 add a toplevel pom, make this a reactor build
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
14 </properties>
6c85a4fcfe28 add a toplevel pom, make this a reactor build
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
15
6c85a4fcfe28 add a toplevel pom, make this a reactor build
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
16 <modules>
6c85a4fcfe28 add a toplevel pom, make this a reactor build
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
17 <module>conflict-editor</module>
6c85a4fcfe28 add a toplevel pom, make this a reactor build
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
18 </modules>
6c85a4fcfe28 add a toplevel pom, make this a reactor build
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
19
6c85a4fcfe28 add a toplevel pom, make this a reactor build
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
20 <build>
6c85a4fcfe28 add a toplevel pom, make this a reactor build
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
21 <pluginManagement>
6c85a4fcfe28 add a toplevel pom, make this a reactor build
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
22 <plugins>
6c85a4fcfe28 add a toplevel pom, make this a reactor build
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
23 <plugin>
6c85a4fcfe28 add a toplevel pom, make this a reactor build
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
24 <groupId>org.apache.maven.plugins</groupId>
6c85a4fcfe28 add a toplevel pom, make this a reactor build
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
25 <artifactId>maven-compiler-plugin</artifactId>
6c85a4fcfe28 add a toplevel pom, make this a reactor build
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
26 <version>2.3.2</version>
6c85a4fcfe28 add a toplevel pom, make this a reactor build
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
27 <configuration>
6c85a4fcfe28 add a toplevel pom, make this a reactor build
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
28 <source>1.6</source>
6c85a4fcfe28 add a toplevel pom, make this a reactor build
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
29 <target>1.6</target>
6c85a4fcfe28 add a toplevel pom, make this a reactor build
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
30 <encoding>UTF-8</encoding>
6c85a4fcfe28 add a toplevel pom, make this a reactor build
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
31 </configuration>
6c85a4fcfe28 add a toplevel pom, make this a reactor build
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
32 </plugin>
6c85a4fcfe28 add a toplevel pom, make this a reactor build
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
33 <plugin>
6c85a4fcfe28 add a toplevel pom, make this a reactor build
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
34 <groupId>org.apache.maven.plugins</groupId>
6c85a4fcfe28 add a toplevel pom, make this a reactor build
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
35 <artifactId>maven-eclipse-plugin</artifactId>
6c85a4fcfe28 add a toplevel pom, make this a reactor build
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
36 <version>2.8</version>
6c85a4fcfe28 add a toplevel pom, make this a reactor build
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
37 <configuration>
6c85a4fcfe28 add a toplevel pom, make this a reactor build
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
38 <downloadSources>true</downloadSources>
6c85a4fcfe28 add a toplevel pom, make this a reactor build
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
39 <classpathContainers>
6c85a4fcfe28 add a toplevel pom, make this a reactor build
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
40 <classpathContainer>org.eclipse.jdt.launching.JRE_CONTAINER/${vmtype}/JavaSE-1.6</classpathContainer>
6c85a4fcfe28 add a toplevel pom, make this a reactor build
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
41 </classpathContainers>
6c85a4fcfe28 add a toplevel pom, make this a reactor build
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
42 </configuration>
6c85a4fcfe28 add a toplevel pom, make this a reactor build
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
43 </plugin>
6c85a4fcfe28 add a toplevel pom, make this a reactor build
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
44 </plugins>
6c85a4fcfe28 add a toplevel pom, make this a reactor build
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
45 </pluginManagement>
6c85a4fcfe28 add a toplevel pom, make this a reactor build
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
46 </build>
6c85a4fcfe28 add a toplevel pom, make this a reactor build
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
47 </project>