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.

all-assembly-descriptor.xml 2.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <assembly
  2. xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3 http://maven.apache.org/xsd/assembly-1.1.3.xsd">
  5. <id>bin</id>
  6. <formats>
  7. <format>zip</format>
  8. </formats>
  9. <includeBaseDirectory>false</includeBaseDirectory>
  10. <dependencySets>
  11. <dependencySet>
  12. <outputDirectory />
  13. <useProjectArtifact>false</useProjectArtifact>
  14. <unpack>false</unpack>
  15. <useTransitiveDependencies>false</useTransitiveDependencies>
  16. </dependencySet>
  17. <dependencySet>
  18. <scope>compile</scope>
  19. <outputDirectory>lib</outputDirectory>
  20. <useProjectArtifact>false</useProjectArtifact>
  21. <unpack>false</unpack>
  22. <useTransitiveDependencies>true</useTransitiveDependencies>
  23. <excludes>
  24. <exclude>${project.groupId}:vaadin-shared</exclude>
  25. <exclude>${project.groupId}:vaadin-push</exclude>
  26. <exclude>${project.groupId}:vaadin-server</exclude>
  27. <exclude>${project.groupId}:vaadin-themes</exclude>
  28. <exclude>${project.groupId}:vaadin-client</exclude>
  29. <exclude>${project.groupId}:vaadin-client-compiler</exclude>
  30. <exclude>${project.groupId}:vaadin-client-compiled</exclude>
  31. <exclude>${project.groupId}:vaadin-compatibility-shared</exclude>
  32. <exclude>${project.groupId}:vaadin-compatibility-server</exclude>
  33. <exclude>${project.groupId}:vaadin-compatibility-themes</exclude>
  34. <exclude>${project.groupId}:vaadin-compatibility-client</exclude>
  35. <exclude>${project.groupId}:vaadin-compatibility-client-compiled</exclude>
  36. <exclude>${project.groupId}:vaadin-compatibility-server-gae</exclude>
  37. <exclude>${project.groupId}:vaadin-osgi-integration</exclude>
  38. <exclude>${project.groupId}:vaadin-liferay-integration</exclude>
  39. </excludes>
  40. </dependencySet>
  41. </dependencySets>
  42. <fileSets>
  43. <fileSet>
  44. <outputDirectory />
  45. <directory>${webcontent.dir}</directory>
  46. </fileSet>
  47. </fileSets>
  48. </assembly>