Mercurial > hg > ConflictEditor
view pom.xml @ 39:3201f93801d0
add a module that generates a webstart package
author | Dirk Olmes <dirk@xanthippe.ping.de> |
---|---|
date | Sun, 09 Oct 2011 08:15:11 +0200 |
parents | 6c85a4fcfe28 |
children | 0c36e54a85b5 |
line wrap: on
line source
<?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> <module>webstart-package</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>