assembly.xml 890 B

12345678910111213141516171819202122232425
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.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>distribution</id>
  5. <formats>
  6. <format>zip</format>
  7. </formats>
  8. <fileSets>
  9. <fileSet>
  10. <directory>${project.basedir}/src/main/resources</directory>
  11. <outputDirectory>/config</outputDirectory>
  12. </fileSet>
  13. <fileSet>
  14. <directory>${project.basedir}/shell</directory>
  15. <outputDirectory>/</outputDirectory>
  16. </fileSet>
  17. </fileSets>
  18. <dependencySets>
  19. <dependencySet>
  20. <useProjectArtifact>true</useProjectArtifact>
  21. <outputDirectory>lib</outputDirectory>
  22. <scope>runtime</scope>
  23. </dependencySet>
  24. </dependencySets>
  25. </assembly>