Marc Kupietz | 73397d8 | 2022-12-21 21:08:03 +0100 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <assembly xmlns="http://maven.apache.org/ASSEMBLY/2.1.0" |
| 3 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.1.0 http://maven.apache.org/xsd/assembly-2.1.0.xsd"> |
| 5 | <id>standalone</id> |
| 6 | <formats> |
| 7 | <format>jar</format> |
| 8 | </formats> |
| 9 | <includeBaseDirectory>false</includeBaseDirectory> |
| 10 | <dependencySets> |
| 11 | <dependencySet> |
| 12 | <outputDirectory>/</outputDirectory> |
| 13 | <useProjectArtifact>false</useProjectArtifact> |
| 14 | <unpack>true</unpack> |
| 15 | <scope>runtime</scope> |
| 16 | </dependencySet> |
| 17 | </dependencySets> |
| 18 | <fileSets> |
| 19 | <fileSet> |
| 20 | <directory>${project.basedir}</directory> |
| 21 | <outputDirectory>META-INF/</outputDirectory> |
| 22 | <includes> |
| 23 | <include>README*</include> |
| 24 | <include>Readme*</include> |
| 25 | <include>LICENSE*</include> |
| 26 | </includes> |
| 27 | <useDefaultExcludes>true</useDefaultExcludes> |
| 28 | </fileSet> |
| 29 | <fileSet> |
| 30 | <outputDirectory>/</outputDirectory> |
| 31 | <directory>${project.build.outputDirectory}</directory> |
| 32 | </fileSet> |
| 33 | </fileSets> |
| 34 | </assembly> |