ko/kosample/client/src/main/assembly/javafx.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 26 Apr 2016 08:04:12 +0200
changeset 1941 621825e167d7
permissions -rw-r--r--
Adding sample module using knockout
jaroslav@1941
     1
<?xml version="1.0"?>
jaroslav@1941
     2
<!--
jaroslav@1941
     3
jaroslav@1941
     4
    Back 2 Browser Bytecode Translator
jaroslav@1941
     5
    Copyright (C) 2012-2015 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
jaroslav@1941
     6
jaroslav@1941
     7
    This program is free software: you can redistribute it and/or modify
jaroslav@1941
     8
    it under the terms of the GNU General Public License as published by
jaroslav@1941
     9
    the Free Software Foundation, version 2 of the License.
jaroslav@1941
    10
jaroslav@1941
    11
    This program is distributed in the hope that it will be useful,
jaroslav@1941
    12
    but WITHOUT ANY WARRANTY; without even the implied warranty of
jaroslav@1941
    13
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
jaroslav@1941
    14
    GNU General Public License for more details.
jaroslav@1941
    15
jaroslav@1941
    16
    You should have received a copy of the GNU General Public License
jaroslav@1941
    17
    along with this program. Look for COPYING file in the top folder.
jaroslav@1941
    18
    If not, see http://opensource.org/licenses/GPL-2.0.
jaroslav@1941
    19
jaroslav@1941
    20
-->
jaroslav@1941
    21
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
jaroslav@1941
    22
  xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd">
jaroslav@1941
    23
  
jaroslav@1941
    24
  <id>javafx</id>
jaroslav@1941
    25
  <formats>
jaroslav@1941
    26
      <format>zip</format>
jaroslav@1941
    27
  </formats>
jaroslav@1941
    28
  <baseDirectory>${project.build.finalName}-app</baseDirectory>
jaroslav@1941
    29
  <dependencySets>
jaroslav@1941
    30
    <dependencySet>
jaroslav@1941
    31
        <useProjectArtifact>false</useProjectArtifact>
jaroslav@1941
    32
        <scope>runtime</scope>
jaroslav@1941
    33
        <outputDirectory>lib</outputDirectory>
jaroslav@1941
    34
    </dependencySet>
jaroslav@1941
    35
  </dependencySets> 
jaroslav@1941
    36
  <files>
jaroslav@1941
    37
    <file>
jaroslav@1941
    38
      <source>${project.build.directory}/${project.build.finalName}.jar</source>
jaroslav@1941
    39
      <outputDirectory>/</outputDirectory>
jaroslav@1941
    40
    </file>
jaroslav@1941
    41
  </files>
jaroslav@1941
    42
  <fileSets>
jaroslav@1941
    43
    <fileSet>
jaroslav@1941
    44
       <directory>src/main/webapp/</directory>
jaroslav@1941
    45
       <outputDirectory>/</outputDirectory>
jaroslav@1941
    46
       <includes>
jaroslav@1941
    47
          <include>pages/**</include>
jaroslav@1941
    48
       </includes>
jaroslav@1941
    49
    </fileSet>
jaroslav@1941
    50
  </fileSets>
jaroslav@1941
    51
</assembly>