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.

bundle.xml 1.1KB

1234567891011121314151617181920212223242526
  1. <assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd">
  4. <id>dist</id>
  5. <formats>
  6. <format>zip</format>
  7. </formats>
  8. <includeBaseDirectory>false</includeBaseDirectory>
  9. <dependencySets>
  10. <dependencySet>
  11. <includes>
  12. <include>org.apache.poi:poi-examples:jar</include>
  13. <include>org.apache.poi:poi-excelant:jar</include>
  14. <include>org.apache.poi:poi-main:jar</include>
  15. <include>org.apache.poi:poi-ooxml:jar</include>
  16. <include>org.apache.poi:poi-ooxml-schemas:jar</include>
  17. <include>org.apache.poi:poi-scratchpad:jar</include>
  18. </includes>
  19. <unpack>false</unpack>
  20. <outputDirectory>dist</outputDirectory>
  21. </dependencySet>
  22. </dependencySets>
  23. </assembly>