comparison 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
comparison
equal deleted inserted replaced
37:76b2dafcb1b4 38:6c85a4fcfe28
1 <?xml version="1.0" encoding="UTF-8"?>
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">
3 <modelVersion>4.0.0</modelVersion>
4 <groupId>de.codedo</groupId>
5 <artifactId>conflict-editor-parent</artifactId>
6 <version>1.0-SNAPSHOT</version>
7 <packaging>pom</packaging>
8 <name>Conflict Editor Parent</name>
9 <url>http://xanthippe.dyndns.org/ConflictEditor</url>
10
11 <properties>
12 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
13 <vmtype>org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType</vmtype>
14 </properties>
15
16 <modules>
17 <module>conflict-editor</module>
18 </modules>
19
20 <build>
21 <pluginManagement>
22 <plugins>
23 <plugin>
24 <groupId>org.apache.maven.plugins</groupId>
25 <artifactId>maven-compiler-plugin</artifactId>
26 <version>2.3.2</version>
27 <configuration>
28 <source>1.6</source>
29 <target>1.6</target>
30 <encoding>UTF-8</encoding>
31 </configuration>
32 </plugin>
33 <plugin>
34 <groupId>org.apache.maven.plugins</groupId>
35 <artifactId>maven-eclipse-plugin</artifactId>
36 <version>2.8</version>
37 <configuration>
38 <downloadSources>true</downloadSources>
39 <classpathContainers>
40 <classpathContainer>org.eclipse.jdt.launching.JRE_CONTAINER/${vmtype}/JavaSE-1.6</classpathContainer>
41 </classpathContainers>
42 </configuration>
43 </plugin>
44 </plugins>
45 </pluginManagement>
46 </build>
47 </project>