ko/kosample/client/src/main/assembly/webpages.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>webpages</id>
jaroslav@1941
    25
  <formats>
jaroslav@1941
    26
      <format>zip</format>
jaroslav@1941
    27
  </formats>
jaroslav@1941
    28
  <baseDirectory>/</baseDirectory>
jaroslav@1941
    29
  <fileSets>
jaroslav@1941
    30
      <fileSet>
jaroslav@1941
    31
          <directory>src/main/webapp/pages</directory>
jaroslav@1941
    32
          <outputDirectory>/</outputDirectory>
jaroslav@1941
    33
          <filtered>false</filtered>
jaroslav@1941
    34
      </fileSet>
jaroslav@1941
    35
  </fileSets>
jaroslav@1941
    36
</assembly>