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.

liferay-assembly-descriptor.xml 690B

123456789101112131415161718
  1. <assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3 http://maven.apache.org/xsd/assembly-1.1.3.xsd">
  4. <id>bin</id>
  5. <formats>
  6. <format>zip</format>
  7. </formats>
  8. <includeBaseDirectory>false</includeBaseDirectory>
  9. <fileSets>
  10. <fileSet>
  11. <outputDirectory/>
  12. <directory>${dependency.unpack.directory}</directory>
  13. <includes>
  14. <include>**</include>
  15. </includes>
  16. </fileSet>
  17. </fileSets>
  18. </assembly>