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>
|
2016-11-13 03:41:53 -05:00
|
|
|
<version>3.16-beta2-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>
|
2016-06-11 13:03:46 -04:00
|
|
|
<argLine>-Duser.language=en -Duser.country=US -Xmx1024m -XX:MaxPermSize=256m -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>
|
2016-03-31 20:57:56 -04:00
|
|
|
<version>1.54</version>
|
2015-08-16 16:51:40 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.bouncycastle</groupId>
|
|
|
|
<artifactId>bcprov-jdk15on</artifactId>
|
2016-03-31 20:57:56 -04:00
|
|
|
<version>1.54</version>
|
2015-08-16 16:51:40 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.santuario</groupId>
|
|
|
|
<artifactId>xmlsec</artifactId>
|
2015-10-22 11:21:25 -04:00
|
|
|
<version>2.0.5</version>
|
2015-08-16 16:51:40 -04:00
|
|
|
</dependency>
|
2015-10-20 05:55:17 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.virtuald</groupId>
|
|
|
|
<artifactId>curvesapi</artifactId>
|
2016-05-30 15:21:49 -04:00
|
|
|
<version>1.04</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
|
|
|
<!-- non-test dependency for OOXMLLite -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
2016-06-11 04:45:28 -04:00
|
|
|
<version>${junit.version}</version>
|
2014-02-15 05:42:43 -05:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|