<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>com.xeiam.xchart</groupId> <artifactId>xchart-parent</artifactId> <version>2.5.0-SNAPSHOT</version> <packaging>pom</packaging> <name>XChart Parent</name> <description>Basic Charts for Java Applications</description> <url>http://xeiam.com/xchart.jsp</url> <inceptionYear>2011</inceptionYear> <organization> <name>Xeiam, LLC</name> <url>http://xeiam.com/</url> </organization> <developers> <developer> <name>Tim Molter</name> </developer> </developers> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> <comments>A business-friendly OSS license</comments> </license> </licenses> <issueManagement> <system>GitHub</system> <url>https://github.com/timmolter/XChart/issues</url> </issueManagement> <scm> <connection>scm:git:git@github.com:timmolter/XChart.git</connection> <developerConnection>scm:git:git@github.com:timmolter/XChart.git</developerConnection> <url>git@github.com:timmolter/XChart.git</url> <tag>HEAD</tag> </scm> <ciManagement> <url>https://travis-ci.org/timmolter/XChart</url> </ciManagement> <modules> <module>xchart</module> <module>xchart-demo</module> </modules> <distributionManagement> <snapshotRepository> <id>sonatype-nexus-snapshots</id> <name>Sonatype Nexus Snapshots</name> <url>http://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>sonatype-nexus-staging</id> <name>Nexus Release Repository</name> <url>http://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <downloadUrl>https://oss.sonatype.org/content/groups/public/com/xeiam/xchart</downloadUrl> </distributionManagement> <repositories> <repository> <id>erichseifert.de</id> <url>http://mvn.erichseifert.de/maven2</url> </repository> </repositories> <dependencyManagement> <dependencies> <dependency> <groupId>de.erichseifert.vectorgraphics2d</groupId> <artifactId>VectorGraphics2D</artifactId> <version>0.9.1</version> <optional>true</optional> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> <!-- FEST for fluent test assertions --> <dependency> <groupId>org.easytesting</groupId> <artifactId>fest-assert-core</artifactId> <version>2.0M10</version> <scope>test</scope> </dependency> </dependencies> <profiles> <profile> <id>release-sign-artifacts</id> <activation> <property> <name>performRelease</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>doclint-java8-disable</id> <activation> <jdk>[1.8,)</jdk> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <additionalparam>-Xdoclint:none</additionalparam> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <version>3.4</version> <configuration> <reportPlugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.1</version> <configuration> <additionalparam>-Xdoclint:none</additionalparam> </configuration> </plugin> </reportPlugins> </configuration> </plugin> </plugins> </build> </profile> </profiles> <build> <plugins> <!-- Ensure compilation is done under Java 6 in all environments --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.2</version> <configuration> <source>1.6</source> <target>1.6</target> <showDeprecation>true</showDeprecation> <showWarnings>true</showWarnings> </configuration> </plugin> <!-- Generates a source code JAR during package --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.4</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5.1</version> <configuration> <autoversionsubmodules>true</autoversionsubmodules> </configuration> </plugin> <!-- for header in all .java files --> <plugin> <groupId>com.mycila.maven-license-plugin</groupId> <artifactId>maven-license-plugin</artifactId> <version>1.10.b1</version> <configuration> <header>etc/header.txt</header> <aggregate>true</aggregate> <includes> <include>**/*.java</include> </includes> </configuration> </plugin> </plugins> </build> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> </properties> </project>