chess/src/main/assembly/teabrwsr.xml
author Jaroslav Tulach <jtulach@netbeans.org>
Tue, 11 Mar 2014 20:50:57 +0100
branchteavm
changeset 105 ea79b73d590a
permissions -rw-r--r--
Patch by Alexey Andreev to allow use of the chess demo on top of teavm
jtulach@105
     1
<?xml version="1.0"?>
jtulach@105
     2
<!--
jtulach@105
     3
jtulach@105
     4
    The MIT License (MIT)
jtulach@105
     5
jtulach@105
     6
    Copyright (C) 2013 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
jtulach@105
     7
jtulach@105
     8
    Permission is hereby granted, free of charge, to any person obtaining a copy
jtulach@105
     9
    of this software and associated documentation files (the "Software"), to deal
jtulach@105
    10
    in the Software without restriction, including without limitation the rights
jtulach@105
    11
    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
jtulach@105
    12
    copies of the Software, and to permit persons to whom the Software is
jtulach@105
    13
    furnished to do so, subject to the following conditions:
jtulach@105
    14
jtulach@105
    15
    The above copyright notice and this permission notice shall be included in
jtulach@105
    16
    all copies or substantial portions of the Software.
jtulach@105
    17
jtulach@105
    18
    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
jtulach@105
    19
    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
jtulach@105
    20
    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
jtulach@105
    21
    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
jtulach@105
    22
    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
jtulach@105
    23
    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
jtulach@105
    24
    THE SOFTWARE.
jtulach@105
    25
jtulach@105
    26
-->
jtulach@105
    27
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
jtulach@105
    28
  xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd">
jtulach@105
    29
  
jtulach@105
    30
  <id>teabrwsr</id>
jtulach@105
    31
  <formats>
jtulach@105
    32
      <format>zip</format>
jtulach@105
    33
  </formats>
jtulach@105
    34
  <baseDirectory>public_html</baseDirectory>
jtulach@105
    35
  <fileSets>
jtulach@105
    36
      <fileSet>
jtulach@105
    37
          <directory>src/main/webapp/pages</directory>
jtulach@105
    38
          <outputDirectory>/</outputDirectory>
jtulach@105
    39
          <filtered>true</filtered>
jtulach@105
    40
      </fileSet>
jtulach@105
    41
      <fileSet>
jtulach@105
    42
          <directory>${project.build.directory}/teavm/</directory>
jtulach@105
    43
          <outputDirectory>/</outputDirectory>
jtulach@105
    44
          <filtered>false</filtered>
jtulach@105
    45
      </fileSet>
jtulach@105
    46
  </fileSets>
jtulach@105
    47
</assembly>