235 lines
7.9 KiB
XML
235 lines
7.9 KiB
XML
<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>org.apache.xmlgraphics</groupId>
|
|
<artifactId>xmlgraphics-commons</artifactId>
|
|
<version>2.7</version>
|
|
<name>${project.groupId}:${project.artifactId}</name>
|
|
<description>XML Graphics Commons</description>
|
|
<url>http://xmlgraphics.apache.org/commons/</url>
|
|
|
|
<properties>
|
|
<checkstyle.version>2.15</checkstyle.version>
|
|
<exec.version>1.4.0</exec.version>
|
|
<findbugs.version>3.0.4</findbugs.version>
|
|
<java.version>1.7</java.version>
|
|
<junit.version>4.11</junit.version>
|
|
<project.info.reports.version>2.8</project.info.reports.version>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<release.version>2.5.2</release.version>
|
|
<surefire.version>2.18.1</surefire.version>
|
|
<jdk.path>${env.JAVA_HOME}</jdk.path>
|
|
</properties>
|
|
|
|
<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>
|
|
</license>
|
|
</licenses>
|
|
|
|
<scm>
|
|
<connection>scm:svn:https://svn.apache.org/repos/asf/xmlgraphics/commons/trunk/</connection>
|
|
<url>scm:svn:https://svn.apache.org/repos/asf/xmlgraphics/commons/trunk/</url>
|
|
<developerConnection></developerConnection>
|
|
</scm>
|
|
|
|
<organization>
|
|
<name>Apache Software Foundation</name>
|
|
<url>http://www.apache.org/</url>
|
|
</organization>
|
|
|
|
<distributionManagement>
|
|
<site>
|
|
<id>${project.artifactId}-site</id>
|
|
<url>${project.baseUri}</url>
|
|
</site>
|
|
</distributionManagement>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>commons-io</groupId>
|
|
<artifactId>commons-io</artifactId>
|
|
<version>1.3.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-logging</groupId>
|
|
<artifactId>commons-logging</artifactId>
|
|
<version>1.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>${junit.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.mockito</groupId>
|
|
<artifactId>mockito-core</artifactId>
|
|
<version>2.28.2</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>xml-resolver</groupId>
|
|
<artifactId>xml-resolver</artifactId>
|
|
<version>1.2</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<pluginManagement>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<configuration>
|
|
<source>${java.version}</source>
|
|
<target>${java.version}</target>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-project-info-reports-plugin</artifactId>
|
|
<version>${project.info.reports.version}</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<version>${surefire.version}</version>
|
|
</plugin>
|
|
</plugins>
|
|
</pluginManagement>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
|
<version>${checkstyle.version}</version>
|
|
<configuration>
|
|
<configLocation>${project.baseUri}src/tools/resources/checkstyle/checkstyle.xml</configLocation>
|
|
<headerLocation>${project.baseUri}src/tools/resources/checkstyle/LICENSE.txt</headerLocation>
|
|
<includeResources>false</includeResources>
|
|
<includeTestResources>false</includeTestResources>
|
|
<linkXRef>false</linkXRef>
|
|
<logViolationsToConsole>true</logViolationsToConsole>
|
|
<suppressionsLocation>${project.baseUri}src/tools/resources/checkstyle/suppressions.xml</suppressionsLocation>
|
|
<violationSeverity>warning</violationSeverity>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>findbugs-maven-plugin</artifactId>
|
|
<version>${findbugs.version}</version>
|
|
<configuration>
|
|
<excludeFilterFile>src/tools/resources/findbugs/exclusions.xml</excludeFilterFile>
|
|
<effort>Max</effort>
|
|
<threshold>Low</threshold>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<version>${surefire.version}</version><!--$NO-MVN-MAN-VER$-->
|
|
<configuration>
|
|
<includes>
|
|
<include>**/*TestCase.java</include>
|
|
<include>**/*TestCases.java</include>
|
|
</includes>
|
|
<redirectTestOutputToFile>true</redirectTestOutputToFile>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
<resources>
|
|
<resource>
|
|
<directory>src/main/resources</directory>
|
|
</resource>
|
|
<resource>
|
|
<directory>${basedir}</directory>
|
|
<includes>
|
|
<include>LICENSE</include>
|
|
<include>NOTICE</include>
|
|
</includes>
|
|
<targetPath>META-INF</targetPath>
|
|
</resource>
|
|
</resources>
|
|
<testResources>
|
|
<testResource>
|
|
<!-- TBD - move following *.{png,tiff,txt,xmp} into test/resources, then remove these rules -->
|
|
<directory>src/test/java</directory>
|
|
<includes>
|
|
<include>**/*.png</include>
|
|
<include>**/*.tiff</include>
|
|
<include>**/*.txt</include>
|
|
<include>**/*.xmp</include>
|
|
</includes>
|
|
</testResource>
|
|
<testResource>
|
|
<directory>src/test/resources</directory>
|
|
<includes>
|
|
<include>**/*</include>
|
|
</includes>
|
|
</testResource>
|
|
</testResources>
|
|
</build>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>custom-javac</id>
|
|
<activation>
|
|
<property>
|
|
<name>jdk.path</name>
|
|
</property>
|
|
</activation>
|
|
<build>
|
|
<pluginManagement>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<configuration>
|
|
<source>${java.version}</source>
|
|
<target>${java.version}</target>
|
|
<executable>${jdk.path}/bin/javac</executable>
|
|
<fork>true</fork>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</pluginManagement>
|
|
</build>
|
|
</profile>
|
|
</profiles>
|
|
|
|
<reporting>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
|
<version>${checkstyle.version}</version>
|
|
<configuration>
|
|
<configLocation>${project.baseUri}src/tools/resources/checkstyle/checkstyle.xml</configLocation>
|
|
<headerLocation>${project.baseUri}src/tools/resources/checkstyle/LICENSE.txt</headerLocation>
|
|
<includeResources>false</includeResources>
|
|
<includeTestResources>false</includeTestResources>
|
|
<linkXRef>false</linkXRef>
|
|
<suppressionsLocation>${project.baseUri}src/tools/resources/checkstyle/suppressions.xml</suppressionsLocation>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>findbugs-maven-plugin</artifactId>
|
|
<version>${findbugs.version}</version>
|
|
<configuration>
|
|
<excludeFilterFile>src/tools/resources/findbugs/exclusions.xml</excludeFilterFile>
|
|
<effort>Max</effort>
|
|
<findBugsXmlOutput>true</findBugsXmlOutput>
|
|
<findBugsXmlWithMessages>true</findBugsXmlWithMessages>
|
|
<threshold>Low</threshold>
|
|
<xmlOutput>true</xmlOutput>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</reporting>
|
|
|
|
</project>
|