diff options
author | Dustin Spicuzza <virtuald@apache.org> | 2015-10-07 02:41:30 +0000 |
---|---|---|
committer | Dustin Spicuzza <virtuald@apache.org> | 2015-10-07 02:41:30 +0000 |
commit | b593db9dfe358ed06e6cc9f7d659a91d99337209 (patch) | |
tree | 0eca10800ad3746685112b9f4a75f71cd85f97ad /sonar/ooxml-schema/pom.xml | |
parent | 15c4dc67fe348877cc2ebf608d14b4f4824aabbb (diff) | |
download | poi-b593db9dfe358ed06e6cc9f7d659a91d99337209.tar.gz poi-b593db9dfe358ed06e6cc9f7d659a91d99337209.zip |
Bug 58048: Add visio schemas to the OOXML jar
- Bumped OOXML jar version also
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1707177 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sonar/ooxml-schema/pom.xml')
-rw-r--r-- | sonar/ooxml-schema/pom.xml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/sonar/ooxml-schema/pom.xml b/sonar/ooxml-schema/pom.xml index 36183c643a..32108f7aa7 100644 --- a/sonar/ooxml-schema/pom.xml +++ b/sonar/ooxml-schema/pom.xml @@ -94,6 +94,29 @@ </execution> </executions> </plugin> + + <!-- include the visio schema --> + <plugin> + <artifactId>maven-resources-plugin</artifactId> + <version>2.6</version> + <executions> + <execution> + <id>copy-sources</id> + <phase>generate-sources</phase> + <goals> + <goal>copy-resources</goal> + </goals> + <configuration> + <outputDirectory>target/schemas/</outputDirectory> + <resources> + <resource> + <directory>../../src/ooxml/resources/org/apache/poi/xdgf/</directory> + </resource> + </resources> + </configuration> + </execution> + </executions> + </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> |