rt/emul/compact/src/main/assembly/rt.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 26 Feb 2013 16:54:16 +0100
changeset 772 d382dacfd73f
parent 692 emul/compact/src/main/assembly/rt.xml@d088fc482c65
child 1735 cf1b6ff9bf06
permissions -rw-r--r--
Moving modules around so the runtime is under one master pom and can be built without building other modules that are in the repository
jaroslav@692
     1
<?xml version="1.0"?>
jaroslav@692
     2
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd">
jaroslav@692
     3
  <id>rt</id>
jaroslav@692
     4
  <formats>
jaroslav@692
     5
    <format>jar</format>
jaroslav@692
     6
  </formats>
jaroslav@692
     7
  <includeBaseDirectory>false</includeBaseDirectory>
jaroslav@692
     8
  <dependencySets>
jaroslav@692
     9
    <dependencySet>
jaroslav@692
    10
      <useProjectArtifact>true</useProjectArtifact>
jaroslav@692
    11
      <unpack>true</unpack>
jaroslav@692
    12
      <scope>provided</scope>
jaroslav@692
    13
      <unpackOptions>
jaroslav@692
    14
        <excludes>
jaroslav@692
    15
          <exclude>META-INF/maven/**</exclude>
jaroslav@692
    16
        </excludes>
jaroslav@692
    17
      </unpackOptions>
jaroslav@692
    18
    </dependencySet>
jaroslav@692
    19
  </dependencySets>
jaroslav@692
    20
  <fileSets>
jaroslav@692
    21
    <fileSet>
jaroslav@692
    22
      <directory>${project.build.outputDirectory}</directory>
jaroslav@692
    23
      <outputDirectory>/</outputDirectory>
jaroslav@692
    24
    </fileSet>
jaroslav@692
    25
  </fileSets>
jaroslav@692
    26
</assembly>