132 lines
6.1 KiB
XML
132 lines
6.1 KiB
XML
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<!--
|
||
|
|
||
|
Licensed to the Apache Software Foundation (ASF) under one or more
|
||
|
contributor license agreements. See the NOTICE file distributed with
|
||
|
this work for additional information regarding copyright ownership.
|
||
|
The ASF licenses this file to You under the Apache License, Version 2.0
|
||
|
(the "License"); you may not use this file except in compliance with
|
||
|
the License. You may obtain a copy of the License at
|
||
|
|
||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||
|
|
||
|
Unless required by applicable law or agreed to in writing, software
|
||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
See the License for the specific language governing permissions and
|
||
|
limitations under the License.
|
||
|
|
||
|
-->
|
||
|
<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/xsd/maven-4.0.0.xsd">
|
||
|
|
||
|
<parent>
|
||
|
<groupId>org.apache.poi</groupId>
|
||
|
<artifactId>poi</artifactId>
|
||
|
<version>3.11-beta1-SNAPSHOT</version>
|
||
|
</parent>
|
||
|
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
||
|
<groupId>org.apache.poi</groupId>
|
||
|
<artifactId>ooxml-schema-encryption</artifactId>
|
||
|
|
||
|
<artifactId>poi-ooxml-schema-encryption</artifactId>
|
||
|
<packaging>jar</packaging>
|
||
|
|
||
|
<name>Apach POI - Openxmlformats Encryption Schema package</name>
|
||
|
|
||
|
<properties>
|
||
|
<!-- see http://docs.codehaus.org/display/SONAR/Narrowing+the+Focus for details of this property -->
|
||
|
<sonar.exclusions>target/generated-sources/*</sonar.exclusions>
|
||
|
</properties>
|
||
|
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.codehaus.mojo</groupId>
|
||
|
<artifactId>xmlbeans-maven-plugin</artifactId>
|
||
|
<version>2.3.3</version>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<phase>generate-sources</phase>
|
||
|
<goals>
|
||
|
<goal>xmlbeans</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
<configuration>
|
||
|
<schemaDirectory>../../src/ooxml/resources/org/apache/poi/poifs/crypt</schemaDirectory>
|
||
|
<javaSource>1.5</javaSource>
|
||
|
<optimize>yes</optimize>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
|
||
|
<!-- TODO: ugly workaround as XMLBeans in Maven creates slightly different source compared to the Ant XMLBeans task!?!
|
||
|
see http://stackoverflow.com/questions/21796000/xmlbeans-creates-different-code-when-running-via-ant-and-maven
|
||
|
-->
|
||
|
<plugin>
|
||
|
<groupId>com.google.code.maven-replacer-plugin</groupId>
|
||
|
<artifactId>replacer</artifactId>
|
||
|
<!-- Note: There is a bug with version 1.5.2 which caused the replacement to not find any files sometimes! -->
|
||
|
<version>1.5.1</version>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<phase>generate-sources</phase>
|
||
|
<goals>
|
||
|
<goal>replace</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
<configuration>
|
||
|
<includes>
|
||
|
<include>target/generated-sources/xmlbeans/com/microsoft/schemas/office/x2006/encryption/CTKeyEncryptor.java</include>
|
||
|
<include>target/generated-sources/xmlbeans/com/microsoft/schemas/office/x2006/encryption/impl/CTKeyEncryptorImpl.java</include>
|
||
|
<include>target/generated-sources/xmlbeans/com/microsoft/schemas/office/x2006/keyEncryptor/password/impl/EncryptedKeyDocumentImpl.java</include>
|
||
|
<include>target/generated-sources/xmlbeans/com/microsoft/schemas/office/x2006/keyEncryptor/certificate/EncryptedKeyDocument.java</include>
|
||
|
<include>target/generated-sources/xmlbeans/com/microsoft/schemas/office/x2006/keyEncryptor/certificate/impl/EncryptedKeyDocumentImpl.java</include>
|
||
|
<include>target/generated-sources/xmlbeans/com/microsoft/schemas/office/x2006/keyEncryptor/password/EncryptedKeyDocument.java</include>
|
||
|
<include>target/generated-sources/xmlbeans/com/microsoft/schemas/office/x2006/keyEncryptor/password/impl/EncryptedKeyDocumentImpl.java</include>
|
||
|
</includes>
|
||
|
<replacements>
|
||
|
<replacement>
|
||
|
<token>etEncryptedKey2</token>
|
||
|
<value>etEncryptedCertificateKey</value>
|
||
|
</replacement>
|
||
|
<replacement>
|
||
|
<token>etEncryptedKey</token>
|
||
|
<value>etEncryptedPasswordKey</value>
|
||
|
</replacement>
|
||
|
<replacement>
|
||
|
<token>ewEncryptedKey2</token>
|
||
|
<value>ewEncryptedCertificateKey</value>
|
||
|
</replacement>
|
||
|
<replacement>
|
||
|
<token>ewEncryptedKey</token>
|
||
|
<value>ewEncryptedPasswordKey</value>
|
||
|
</replacement>
|
||
|
<replacement>
|
||
|
<token>encryptedKey2\)</token>
|
||
|
<value>encryptedCertificateKey)</value>
|
||
|
</replacement>
|
||
|
<replacement>
|
||
|
<token>encryptedKey\)</token>
|
||
|
<value>encryptedPasswordKey)</value>
|
||
|
</replacement>
|
||
|
</replacements>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
|
||
|
</plugins>
|
||
|
</build>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.xmlbeans</groupId>
|
||
|
<artifactId>xmlbeans</artifactId>
|
||
|
<version>2.3.0</version>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
</project>
|