Newer
Older
AnchorGarden_M / assembly.xml
<assembly xmlns="http://maven.apache.org/ASSEMBLY/2.1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.1.0 http://maven.apache.org/xsd/assembly-2.1.0.xsd">
  <!-- TODO: a jarjar format would be better -->
  <id>withResource</id>
  <formats>
    <format>jar</format>
  </formats>
  <includeBaseDirectory>false</includeBaseDirectory>
  <dependencySets>
    <dependencySet>
      <outputDirectory>/</outputDirectory>
      <useProjectArtifact>true</useProjectArtifact>
      <unpack>true</unpack>
      <scope>runtime</scope>
    </dependencySet>
  </dependencySets>

  <fileSets>
    <!-- ここはいらないかも -->
    <fileSet>
      <directory>resource</directory>
      <outputDirectory>/res</outputDirectory>
      <includes>
        <include>*.wav</include>
      </includes>
    </fileSet>
    <!-- こっちは必要。 -->
    <fileSet>
      <directory>resource</directory>
      <outputDirectory>/</outputDirectory>
      <includes>
        <include>*.wav</include>
      </includes>
    </fileSet>
  </fileSets>

</assembly>