ko/archetype/src/main/resources/archetype-resources/src/main/assembly/fxbrwsr.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Mon, 24 Jun 2013 17:50:44 +0200
branchclassloader
changeset 1225 73c0973e8e0a
parent 1201 ko-archetype/src/main/resources/archetype-resources/src/main/assembly/fxbrwsr.xml@b6fd8b9ccc7a
child 1273 37ad459579bc
permissions -rw-r--r--
Moving all knockout related code under the 'ko' directory
     1 <?xml version="1.0"?>
     2 <assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.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   
     5   <id>fxbrwsr</id>
     6   <formats>
     7       <format>zip</format>
     8   </formats>
     9   <baseDirectory>${project.build.finalName}-fxbrwsr</baseDirectory>
    10   <dependencySets>
    11     <dependencySet>
    12         <useProjectArtifact>false</useProjectArtifact>
    13         <scope>runtime</scope>
    14         <outputDirectory>lib</outputDirectory>
    15     </dependencySet>
    16   </dependencySets> 
    17   <files>
    18     <file>
    19       <source>${project.build.directory}/${project.build.finalName}.jar</source>
    20       <outputDirectory>/</outputDirectory>
    21     </file>
    22   </files>
    23 </assembly>