Home | History | Annotate | Download | only in gdx-tools
      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>distribution</id>
      5   <formats>
      6     <format>jar</format>
      7   </formats>
      8   <includeBaseDirectory>false</includeBaseDirectory>
      9   <dependencySets>
     10     <dependencySet>
     11       <outputDirectory>/</outputDirectory>
     12       <useProjectArtifact>true</useProjectArtifact>
     13       <useTransitiveFiltering>true</useTransitiveFiltering>
     14       <unpack>true</unpack>
     15       <scope>runtime</scope>
     16       <excludes>
     17         <exclude>com.badlogicgames.gdx:gdx-backend-lwjgl</exclude>
     18         <exclude>com.badlogicgames.gdx:gdx-backend-headless</exclude>
     19       </excludes>
     20     </dependencySet>
     21     <dependencySet>
     22       <outputDirectory>/</outputDirectory>
     23       <unpack>true</unpack>
     24       <scope>system</scope>
     25     </dependencySet>
     26     <dependencySet>
     27       <outputDirectory>/</outputDirectory>
     28       <unpack>true</unpack>
     29       <scope>provided</scope>
     30     </dependencySet>
     31   </dependencySets>
     32 </assembly>
     33