You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

pom.xml 1.7KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
  4. http://maven.apache.org/maven-v4_0_0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>org.apache.poi</groupId>
  8. <artifactId>poi-parent</artifactId>
  9. <version>4.1.2-SNAPSHOT</version>
  10. <relativePath>..</relativePath>
  11. </parent>
  12. <artifactId>poi-ooxml-schema-encryption</artifactId>
  13. <packaging>jar</packaging>
  14. <name>Apache POI - Openxmlformats Encryption Schema package</name>
  15. <properties>
  16. <!-- see http://docs.codehaus.org/display/SONAR/Narrowing+the+Focus for details of this property -->
  17. <sonar.exclusions>target/generated-sources/*</sonar.exclusions>
  18. </properties>
  19. <build>
  20. <plugins>
  21. <plugin>
  22. <groupId>org.apache.maven.plugins</groupId>
  23. <artifactId>maven-antrun-plugin</artifactId>
  24. <version>${maven.plugin.antrun.version}</version>
  25. <executions>
  26. <execution>
  27. <id>unzip-schema</id>
  28. <phase>generate-sources</phase>
  29. <goals>
  30. <goal>run</goal>
  31. </goals>
  32. <configuration>
  33. <target>
  34. <copy todir="target/schemas">
  35. <fileset dir="../../src/ooxml/resources/org/apache/poi/poifs/crypt" includes="encryption*.*"/>
  36. </copy>
  37. </target>
  38. </configuration>
  39. </execution>
  40. </executions>
  41. </plugin>
  42. </plugins>
  43. </build>
  44. <dependencies>
  45. <dependency>
  46. <groupId>org.apache.xmlbeans</groupId>
  47. <artifactId>xmlbeans</artifactId>
  48. <version>${xmlbeans.version}</version>
  49. </dependency>
  50. </dependencies>
  51. </project>