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>
|
2015-11-21 14:37:26 -05:00
|
|
|
<relativePath>..</relativePath>
|
2014-02-15 05:42:43 -05:00
|
|
|
</parent>
|
|
|
|
<artifactId>poi-ooxml-schema-encryption</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
2015-11-21 14:37:26 -05:00
|
|
|
<name>Apache POI - Openxmlformats Encryption Schema package</name>
|
2014-02-15 05:42:43 -05:00
|
|
|
|
2014-03-10 15:35:25 -04:00
|
|
|
<properties>
|
|
|
|
<!-- see http://docs.codehaus.org/display/SONAR/Narrowing+the+Focus for details of this property -->
|
|
|
|
<sonar.exclusions>target/generated-sources/*</sonar.exclusions>
|
|
|
|
</properties>
|
|
|
|
|
2015-08-17 21:16:26 -04:00
|
|
|
<build>
|
2014-02-15 05:42:43 -05:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
2015-11-21 14:37:26 -05:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
2016-06-11 04:45:28 -04:00
|
|
|
<version>${maven.plugin.antrun.version}</version>
|
2015-08-17 21:16:26 -04:00
|
|
|
<executions>
|
|
|
|
<execution>
|
2015-11-21 14:37:26 -05:00
|
|
|
<id>unzip-schema</id>
|
2015-08-17 21:16:26 -04:00
|
|
|
<phase>generate-sources</phase>
|
|
|
|
<goals>
|
2015-11-21 14:37:26 -05:00
|
|
|
<goal>run</goal>
|
2015-08-17 21:16:26 -04:00
|
|
|
</goals>
|
2015-11-21 14:37:26 -05:00
|
|
|
<configuration>
|
|
|
|
<target>
|
|
|
|
<copy todir="target/schemas">
|
|
|
|
<fileset dir="../../src/ooxml/resources/org/apache/poi/poifs/crypt" includes="encryption*.*"/>
|
|
|
|
</copy>
|
|
|
|
</target>
|
|
|
|
</configuration>
|
2015-08-17 21:16:26 -04:00
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2014-02-15 05:42:43 -05:00
|
|
|
</plugins>
|
2015-08-17 21:16:26 -04:00
|
|
|
</build>
|
2014-02-15 05:42:43 -05:00
|
|
|
|
2015-08-17 21:16:26 -04:00
|
|
|
<dependencies>
|
2014-02-15 05:42:43 -05:00
|
|
|
<dependency>
|
2015-08-17 21:16:26 -04:00
|
|
|
<groupId>org.apache.xmlbeans</groupId>
|
|
|
|
<artifactId>xmlbeans</artifactId>
|
2016-06-11 04:45:28 -04:00
|
|
|
<version>${xmlbeans.version}</version>
|
2014-02-15 05:42:43 -05:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|