ko/kosample/client-web/src/main/assembly/teavm.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>teavm</id>
jaroslav@1941
    25
  <formats>
jaroslav@1941
    26
      <format>zip</format>
jaroslav@1941
    27
      <format>dir</format>
jaroslav@1941
    28
  </formats>
jaroslav@1941
    29
  <baseDirectory>public_html</baseDirectory>
jaroslav@1941
    30
  <fileSets>
jaroslav@1941
    31
      <fileSet>
jaroslav@1941
    32
          <directory>target/web/pages</directory>
jaroslav@1941
    33
          <outputDirectory>/</outputDirectory>
jaroslav@1941
    34
          <excludes>
jaroslav@1941
    35
              <exclude>index.html</exclude>
jaroslav@1941
    36
          </excludes>
jaroslav@1941
    37
      </fileSet>
jaroslav@1941
    38
      <fileSet>
jaroslav@1941
    39
          <directory>target/web/pages</directory>
jaroslav@1941
    40
          <outputDirectory>/</outputDirectory>
jaroslav@1941
    41
          <filtered>true</filtered>
jaroslav@1941
    42
          <includes>
jaroslav@1941
    43
              <include>index.html</include>
jaroslav@1941
    44
          </includes>
jaroslav@1941
    45
      </fileSet>
jaroslav@1941
    46
      <fileSet>
jaroslav@1941
    47
          <directory>${project.build.directory}/teavm/</directory>
jaroslav@1941
    48
          <outputDirectory>/</outputDirectory>
jaroslav@1941
    49
          <filtered>false</filtered>
jaroslav@1941
    50
      </fileSet>
jaroslav@1941
    51
  </fileSets>
jaroslav@1941
    52
</assembly>