Mercurial > hg > ConflictEditor
changeset 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 | 76b2dafcb1b4 |
children | 3201f93801d0 |
files | conflict-editor/pom.xml pom.xml |
diffstat | 2 files changed, 52 insertions(+), 34 deletions(-) [+] |
line wrap: on
line diff
--- a/conflict-editor/pom.xml Fri Oct 07 05:59:38 2011 +0200 +++ b/conflict-editor/pom.xml Sun Oct 09 07:29:59 2011 +0200 @@ -1,17 +1,14 @@ <?xml version="1.0" encoding="UTF-8"?> <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>de.codedo</groupId> + <parent> + <groupId>de.codedo</groupId> + <artifactId>conflict-editor-parent</artifactId> + <version>1.0-SNAPSHOT</version> + </parent> <artifactId>conflict-editor</artifactId> - <version>1.0-SNAPSHOT</version> <packaging>jar</packaging> <name>Conflict Editor</name> - <url>http://maven.apache.org</url> - - <properties> - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> - <vmtype>org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType</vmtype> - </properties> <dependencies> <dependency> @@ -51,30 +48,4 @@ <scope>test</scope> </dependency> </dependencies> - - <build> - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-compiler-plugin</artifactId> - <version>2.3.2</version> - <configuration> - <source>1.6</source> - <target>1.6</target> - <encoding>UTF-8</encoding> - </configuration> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-eclipse-plugin</artifactId> - <version>2.8</version> - <configuration> - <downloadSources>true</downloadSources> - <classpathContainers> - <classpathContainer>org.eclipse.jdt.launching.JRE_CONTAINER/${vmtype}/JavaSE-1.6</classpathContainer> - </classpathContainers> - </configuration> - </plugin> - </plugins> - </build> </project>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pom.xml Sun Oct 09 07:29:59 2011 +0200 @@ -0,0 +1,47 @@ +<?xml version="1.0" encoding="UTF-8"?> +<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>de.codedo</groupId> + <artifactId>conflict-editor-parent</artifactId> + <version>1.0-SNAPSHOT</version> + <packaging>pom</packaging> + <name>Conflict Editor Parent</name> + <url>http://xanthippe.dyndns.org/ConflictEditor</url> + + <properties> + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + <vmtype>org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType</vmtype> + </properties> + + <modules> + <module>conflict-editor</module> + </modules> + + <build> + <pluginManagement> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <version>2.3.2</version> + <configuration> + <source>1.6</source> + <target>1.6</target> + <encoding>UTF-8</encoding> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-eclipse-plugin</artifactId> + <version>2.8</version> + <configuration> + <downloadSources>true</downloadSources> + <classpathContainers> + <classpathContainer>org.eclipse.jdt.launching.JRE_CONTAINER/${vmtype}/JavaSE-1.6</classpathContainer> + </classpathContainers> + </configuration> + </plugin> + </plugins> + </pluginManagement> + </build> +</project>