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>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.apache.poi</groupId>
|
|
|
|
<artifactId>poi-parent</artifactId>
|
2017-09-17 07:07:37 -04:00
|
|
|
<version>4.0.0-SNAPSHOT</version>
|
2014-02-15 05:42:43 -05:00
|
|
|
</parent>
|
|
|
|
<artifactId>poi-ooxml</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<name>Apache POI OOXML package</name>
|
2014-02-27 09:03:27 -05:00
|
|
|
|
2014-02-15 05:42:43 -05:00
|
|
|
<build>
|
2014-02-27 09:03:27 -05:00
|
|
|
<plugins>
|
|
|
|
<!-- copy sources, resources and tests in place as otherwise Sonar does not pick them up correctly! -->
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-resources-plugin</artifactId>
|
2016-06-11 04:45:28 -04:00
|
|
|
<version>${maven.plugin.resources.version}</version>
|
2014-02-27 09:03:27 -05:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>copy-sources</id>
|
|
|
|
<phase>generate-sources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>copy-resources</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<outputDirectory>${basedir}/src/main/java</outputDirectory>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>../../src/ooxml/java</directory>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>copy-resources</id>
|
|
|
|
<phase>generate-resources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>copy-resources</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<outputDirectory>${basedir}/src/main/resources</outputDirectory>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>../../src/resources/ooxml</directory>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>copy-tests</id>
|
|
|
|
<phase>generate-test-sources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>copy-resources</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<outputDirectory>${basedir}/src/test/java</outputDirectory>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>../../src/ooxml/testcases</directory>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2016-06-05 12:23:48 -04:00
|
|
|
|
2014-02-27 09:03:27 -05:00
|
|
|
<!-- clean copied sources afterwards -->
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-clean-plugin</artifactId>
|
2016-06-11 04:45:28 -04:00
|
|
|
<version>${maven.plugin.clean.version}</version>
|
2014-02-27 09:03:27 -05:00
|
|
|
<configuration>
|
|
|
|
<filesets>
|
|
|
|
<fileset>
|
|
|
|
<directory>src</directory>
|
|
|
|
<followSymlinks>false</followSymlinks>
|
|
|
|
</fileset>
|
2015-08-29 10:03:48 -04:00
|
|
|
<fileset>
|
|
|
|
<directory>build</directory>
|
|
|
|
<followSymlinks>false</followSymlinks>
|
|
|
|
</fileset>
|
2014-02-27 09:03:27 -05:00
|
|
|
</filesets>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2016-06-05 12:23:48 -04:00
|
|
|
|
|
|
|
|
|
|
|
<!-- set jvm parameters for surefire plugin -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
2016-06-11 04:45:28 -04:00
|
|
|
<version>${maven.plugin.surefire.version}</version>
|
2016-06-05 12:23:48 -04:00
|
|
|
<configuration>
|
2017-11-21 11:28:07 -05:00
|
|
|
<argLine>@{argLine} -Duser.language=en -Duser.country=US -Xmx1024m -Djava.io.tmpdir=target/tmp -XX:-OmitStackTraceInFastThrow</argLine>
|
2016-06-05 12:23:48 -04:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2014-02-27 09:03:27 -05:00
|
|
|
</plugins>
|
2014-02-15 05:42:43 -05:00
|
|
|
</build>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>poi-ooxml-schema</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>poi-ooxml-schema-encryption</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2015-08-16 16:51:40 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>poi-ooxml-schema-security</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2014-02-15 05:42:43 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>poi-main</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>poi-main</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<type>test-jar</type>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.xmlbeans</groupId>
|
|
|
|
<artifactId>xmlbeans</artifactId>
|
2016-06-11 04:45:28 -04:00
|
|
|
<version>${xmlbeans.version}</version>
|
2014-10-10 02:48:07 -04:00
|
|
|
</dependency>
|
2014-02-15 05:42:43 -05:00
|
|
|
|
2015-08-16 16:51:40 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.bouncycastle</groupId>
|
|
|
|
<artifactId>bcpkix-jdk15on</artifactId>
|
2018-01-26 07:38:49 -05:00
|
|
|
<version>1.59</version>
|
2015-08-16 16:51:40 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.bouncycastle</groupId>
|
|
|
|
<artifactId>bcprov-jdk15on</artifactId>
|
2018-01-26 07:38:49 -05:00
|
|
|
<version>1.59</version>
|
2015-08-16 16:51:40 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.santuario</groupId>
|
|
|
|
<artifactId>xmlsec</artifactId>
|
2017-09-15 14:39:37 -04:00
|
|
|
<version>2.1.0</version>
|
2015-08-16 16:51:40 -04:00
|
|
|
</dependency>
|
2018-06-03 18:09:11 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-compress</artifactId>
|
2018-08-16 14:36:47 -04:00
|
|
|
<version>1.18</version>
|
2018-06-03 18:09:11 -04:00
|
|
|
</dependency>
|
2015-10-20 05:55:17 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.virtuald</groupId>
|
|
|
|
<artifactId>curvesapi</artifactId>
|
2017-09-15 14:39:37 -04:00
|
|
|
<version>1.05</version>
|
2015-10-20 05:55:17 -04:00
|
|
|
</dependency>
|
2015-08-16 16:51:40 -04:00
|
|
|
|
2014-02-15 05:42:43 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
2016-06-11 04:45:28 -04:00
|
|
|
<version>${junit.version}</version>
|
2018-05-27 18:01:33 -04:00
|
|
|
<scope>test</scope>
|
2014-02-15 05:42:43 -05:00
|
|
|
</dependency>
|
2017-05-24 06:07:32 -04:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.openjdk.jmh</groupId>
|
|
|
|
<artifactId>jmh-core</artifactId>
|
2017-09-15 14:39:37 -04:00
|
|
|
<version>1.19</version>
|
2017-05-24 06:07:32 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.openjdk.jmh</groupId>
|
|
|
|
<artifactId>jmh-generator-annprocess</artifactId>
|
2017-09-15 14:39:37 -04:00
|
|
|
<version>1.19</version>
|
2017-05-24 06:07:32 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2014-02-15 05:42:43 -05:00
|
|
|
</dependencies>
|
|
|
|
</project>
|