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
     1 <?xml version="1.0"?>
     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">
     3   <id>rt</id>
     4   <formats>
     5     <format>jar</format>
     6   </formats>
     7   <includeBaseDirectory>false</includeBaseDirectory>
     8   <dependencySets>
     9     <dependencySet>
    10       <useProjectArtifact>true</useProjectArtifact>
    11       <unpack>true</unpack>
    12       <scope>provided</scope>
    13       <unpackOptions>
    14         <excludes>
    15           <exclude>META-INF/maven/**</exclude>
    16         </excludes>
    17       </unpackOptions>
    18     </dependencySet>
    19   </dependencySets>
    20   <fileSets>
    21     <fileSet>
    22       <directory>${project.build.outputDirectory}</directory>
    23       <outputDirectory>/</outputDirectory>
    24     </fileSet>
    25   </fileSets>
    26 </assembly>