2014-02-15 05:42:43 -05:00
<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.poi</groupId>
<artifactId > poi-parent</artifactId>
<packaging > pom</packaging>
2015-08-15 08:23:51 -04:00
<version > 3.13-SNAPSHOT</version>
2014-02-15 05:42:43 -05:00
2014-02-27 09:03:27 -05:00
<name > Apache POI - the Java API for Microsoft Documents</name>
2014-02-15 05:42:43 -05:00
<description > Maven build of Apache POI for Sonar checks</description>
<url > http://poi.apache.org/</url>
<mailingLists >
<mailingList >
<name > POI Users List</name>
<subscribe > user-subscribe@poi.apache.org</subscribe>
<unsubscribe > user-unsubscribe@poi.apache.org</unsubscribe>
<archive > http://mail-archives.apache.org/mod_mbox/poi-user/</archive>
</mailingList>
<mailingList >
<name > POI Developer List</name>
<subscribe > dev-subscribe@poi.apache.org</subscribe>
<unsubscribe > dev-unsubscribe@poi.apache.org</unsubscribe>
<archive > http://mail-archives.apache.org/mod_mbox/poi-dev/</archive>
</mailingList>
</mailingLists>
<licenses >
<license >
<name > The Apache Software License, Version 2.0</name>
<url > http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<organization >
<name > Apache Software Foundation</name>
<url > http://www.apache.org/</url>
</organization>
2014-02-28 11:10:22 -05:00
<issueManagement >
<system > bugzilla</system>
<url > https://issues.apache.org/bugzilla/</url>
</issueManagement>
<scm >
<connection > scm:svn:http://svn.apache.org/repos/asf/poi/trunk</connection>
<developerConnection > scm:svn:https://svn.apache.org/repos/asf/poi/trunk</developerConnection>
<url > http://svn.apache.org/viewvc/poi</url>
</scm>
2014-02-15 05:42:43 -05:00
<modules >
<module > main</module>
<module > ooxml-schema</module>
<module > ooxml-schema-encryption</module>
2015-08-16 16:51:40 -04:00
<module > ooxml-schema-security</module>
2014-02-15 05:42:43 -05:00
<module > ooxml</module>
<module > scratchpad</module>
<module > excelant</module>
<module > examples</module>
</modules>
<properties >
<project.build.sourceEncoding > ASCII</project.build.sourceEncoding>
2015-08-25 03:06:51 -04:00
<sonar.sources > ${basedir}/../src/contrib/src,${basedir}/../src/examples/src,${basedir}/../src/excelant/java,${basedir}/../src/java,${basedir}/../src/ooxml/java,${basedir}/../src/scratchpad/examples,${basedir}/../src/,${basedir}/../src/scratchpad/src</sonar.sources>
<!-- tests are automatically found in Maven ../src/integrationtest,../src/contrib/testcases,../src/excelant/testcases,../src/ooxml/testcases,../src/scratchpad/testcases,../src/testcases -->
</properties>
2014-02-15 05:42:43 -05:00
<build >
<pluginManagement >
<plugins >
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-compiler-plugin</artifactId>
<version > 3.1</version>
<configuration >
<source > 1.6</source>
<target > 1.6</target>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins >
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-surefire-plugin</artifactId>
<version > 2.16</version>
<dependencies >
<dependency >
<groupId > org.apache.maven.surefire</groupId>
<artifactId > surefire-junit47</artifactId>
<version > 2.16</version>
</dependency>
</dependencies>
<configuration >
<systemPropertyVariables >
<POI.testdata.path > ../../test-data</POI.testdata.path>
<java.awt.headless > true</java.awt.headless>
<org.apache.poi.util.POILogger > org.apache.poi.util.NullLogger</org.apache.poi.util.POILogger>
</systemPropertyVariables>
2015-08-16 16:51:40 -04:00
<!-- use to following to analyze OOM issues: - XX:+HeapDumpOnOutOfMemoryError - XX:HeapDumpPath=/tmp -->
2015-08-20 02:33:02 -04:00
<argLine > -Duser.language=en -Duser.country=US -Xmx1024m</argLine>
2014-02-15 05:42:43 -05:00
<excludes >
<exclude > **/All*Tests.java</exclude>
<exclude > **/TestUnfixedBugs.java</exclude>
<exclude > **/TestcaseRecordInputStream.java</exclude>
<exclude > **/POITestCase.java</exclude>
<!-- TODO: error about no public construct, seems to run with JUnit 3.8... -->
<exclude > **/TestWordToConverterSuite*.java</exclude>
<exclude > **/TestExcelConverterSuite*.java</exclude>
</excludes>
<!-- test>TestPPTX2PNG</test -->
<!-- parallel>both</parallel>
<threadCount > 10</threadCount-->
</configuration>
</plugin>
</plugins>
</build>
<dependencies >
<dependency >
<groupId > junit</groupId>
<artifactId > junit</artifactId>
2015-01-03 04:35:21 -05:00
<version > 4.12</version>
2014-02-15 05:42:43 -05:00
<scope > test</scope>
</dependency>
</dependencies>
</project>