mirror of
https://github.com/haraldk/TwelveMonkeys.git
synced 2025-08-02 11:05:29 -04:00
213 lines
8.0 KiB
XML
Executable File
213 lines
8.0 KiB
XML
Executable File
<?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/maven-v4_0_0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>com.twelvemonkeys</groupId>
|
|
<artifactId>twelvemonkeys</artifactId>
|
|
<version>3.0-SNAPSHOT</version>
|
|
<packaging>pom</packaging>
|
|
<name>Twelvemonkeys</name>
|
|
|
|
<modules>
|
|
<module>common</module>
|
|
<module>servlet</module>
|
|
<module>imageio</module>
|
|
<!--<module>swing</module>-->
|
|
<!--<module>sandbox</module>-->
|
|
</modules>
|
|
|
|
<developers>
|
|
<developer>
|
|
<id>harald.kuhr</id>
|
|
<name>Harald Kuhr</name>
|
|
<email>harald.kuhr@gmail.com</email>
|
|
<organization>Twelvemonkeys</organization>
|
|
<roles>
|
|
<role>project-owner</role>
|
|
<role>developer</role>
|
|
</roles>
|
|
</developer>
|
|
</developers>
|
|
|
|
<contributors>
|
|
<contributor>
|
|
<name>Erlend Hamnaberg</name>
|
|
<email>erlend@hamnaberg.net</email>
|
|
<roles>
|
|
<role>maven-guru</role>
|
|
</roles>
|
|
</contributor>
|
|
</contributors>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
|
|
<build>
|
|
<finalName>twelvemonkeys-${project.artifactId}-${project.version}</finalName>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<configuration>
|
|
<archive>
|
|
<manifestEntries>
|
|
<Implementation-Title>twelvemonkeys-${project.artifactId}</Implementation-Title>
|
|
<Implementation-Vendor>TwelveMonkeys</Implementation-Vendor>
|
|
<Implementation-Version>${project.version}</Implementation-Version>
|
|
<Implementation-URL>http://github.com/haraldk/TwelveMonkeys</Implementation-URL>
|
|
</manifestEntries>
|
|
</archive>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
|
|
<pluginManagement>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
<version>2.5</version>
|
|
<configuration>
|
|
<encoding>UTF-8</encoding>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<version>2.4</version>
|
|
<inherited>true</inherited>
|
|
<executions>
|
|
<execution>
|
|
<phase>package</phase>
|
|
<id>attach-tests</id>
|
|
<goals>
|
|
<goal>test-jar</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
<version>2.2.1</version>
|
|
<inherited>true</inherited>
|
|
<!-- THIS DOES NOT WORK..?! -->
|
|
<executions>
|
|
<execution>
|
|
<phase>package</phase>
|
|
<id>attach-sources</id>
|
|
<goals>
|
|
<goal>jar</goal>
|
|
<goal>test-jar</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>2.3.2</version>
|
|
<inherited>true</inherited>
|
|
<configuration>
|
|
<source>1.5</source>
|
|
<target>1.5</target>
|
|
<showDeprecation>false</showDeprecation>
|
|
<compilerArgument>-g:lines</compilerArgument>
|
|
<compilerArguments>
|
|
<encoding>iso-8859-1</encoding>
|
|
</compilerArguments>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<version>2.10</version>
|
|
<configuration>
|
|
<systemProperties>
|
|
<property>
|
|
<name>java.awt.headless</name>
|
|
<value>true</value>
|
|
</property>
|
|
</systemProperties>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-idea-plugin</artifactId>
|
|
<inherited>true</inherited>
|
|
<version>2.2</version>
|
|
<configuration>
|
|
<jdkName>1.5</jdkName>
|
|
<jdkLevel>1.5</jdkLevel>
|
|
<downloadSources>true</downloadSources>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
|
|
|
<extensions>
|
|
<extension>
|
|
<groupId>org.jvnet.wagon-svn</groupId>
|
|
<artifactId>wagon-svn</artifactId>
|
|
<version>1.9</version>
|
|
</extension>
|
|
</extensions>
|
|
|
|
</build>
|
|
|
|
<reporting>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
<version>2.9.1</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-report-plugin</artifactId>
|
|
<version>2.16</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>cobertura-maven-plugin</artifactId>
|
|
<version>2.6</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-pmd-plugin</artifactId>
|
|
<version>3.0.1</version>
|
|
<configuration>
|
|
<targetJdk>1.5</targetJdk>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
|
<version>2.10</version>
|
|
</plugin>
|
|
</plugins>
|
|
</reporting>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>maven2-repository.dev.java.net</id>
|
|
<name>Java.net Repository for Maven</name>
|
|
<url>http://download.java.net/maven/2/</url>
|
|
<layout>default</layout>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<distributionManagement>
|
|
<repository>
|
|
<id>java.net-m2-repository</id>
|
|
<url>java-net:/maven2-repository/trunk/repository/</url>
|
|
</repository>
|
|
</distributionManagement>
|
|
|
|
</project>
|