chess/src/main/assembly/bck2brwsr.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 24 Sep 2013 22:20:24 +0200
branchchess
changeset 49 945fbfff28f3
permissions -rw-r--r--
Advanced version of the chess game
jaroslav@49
     1
<?xml version="1.0"?>
jaroslav@49
     2
<!--
jaroslav@49
     3
jaroslav@49
     4
    The MIT License (MIT)
jaroslav@49
     5
jaroslav@49
     6
    Copyright (C) 2013 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
jaroslav@49
     7
jaroslav@49
     8
    Permission is hereby granted, free of charge, to any person obtaining a copy
jaroslav@49
     9
    of this software and associated documentation files (the "Software"), to deal
jaroslav@49
    10
    in the Software without restriction, including without limitation the rights
jaroslav@49
    11
    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
jaroslav@49
    12
    copies of the Software, and to permit persons to whom the Software is
jaroslav@49
    13
    furnished to do so, subject to the following conditions:
jaroslav@49
    14
jaroslav@49
    15
    The above copyright notice and this permission notice shall be included in
jaroslav@49
    16
    all copies or substantial portions of the Software.
jaroslav@49
    17
jaroslav@49
    18
    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
jaroslav@49
    19
    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
jaroslav@49
    20
    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
jaroslav@49
    21
    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
jaroslav@49
    22
    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
jaroslav@49
    23
    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
jaroslav@49
    24
    THE SOFTWARE.
jaroslav@49
    25
jaroslav@49
    26
-->
jaroslav@49
    27
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
jaroslav@49
    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">
jaroslav@49
    29
  
jaroslav@49
    30
  <id>bck2brwsr</id>
jaroslav@49
    31
  <formats>
jaroslav@49
    32
      <format>zip</format>
jaroslav@49
    33
  </formats>
jaroslav@49
    34
  <baseDirectory>public_html</baseDirectory>
jaroslav@49
    35
  <dependencySets>
jaroslav@49
    36
    <dependencySet>
jaroslav@49
    37
        <useProjectArtifact>false</useProjectArtifact>
jaroslav@49
    38
        <scope>runtime</scope>
jaroslav@49
    39
        <outputDirectory>lib</outputDirectory>
jaroslav@49
    40
        <includes>
jaroslav@49
    41
            <include>*:jar</include>
jaroslav@49
    42
            <include>*:rt</include>
jaroslav@49
    43
        </includes>
jaroslav@49
    44
    </dependencySet>
jaroslav@49
    45
    <dependencySet>
jaroslav@49
    46
        <useProjectArtifact>false</useProjectArtifact>
jaroslav@49
    47
        <scope>provided</scope>
jaroslav@49
    48
        <includes>
jaroslav@49
    49
            <include>*:js</include>
jaroslav@49
    50
        </includes>
jaroslav@49
    51
        <unpack>true</unpack>
jaroslav@49
    52
        <outputDirectory>/</outputDirectory>
jaroslav@49
    53
    </dependencySet>
jaroslav@49
    54
  </dependencySets> 
jaroslav@49
    55
  <fileSets>
jaroslav@49
    56
      <fileSet>
jaroslav@49
    57
          <directory>src/main/webapp/pages</directory>
jaroslav@49
    58
          <outputDirectory>/</outputDirectory>
jaroslav@49
    59
          <excludes>
jaroslav@49
    60
              <exclude>*.png</exclude>
jaroslav@49
    61
          </excludes>
jaroslav@49
    62
          <filtered>true</filtered>
jaroslav@49
    63
      </fileSet>
jaroslav@49
    64
      <fileSet>
jaroslav@49
    65
          <directory>src/main/webapp/pages</directory>
jaroslav@49
    66
          <outputDirectory>/</outputDirectory>
jaroslav@49
    67
          <includes>
jaroslav@49
    68
              <include>*.png</include>
jaroslav@49
    69
          </includes>
jaroslav@49
    70
          <filtered>false</filtered>
jaroslav@49
    71
      </fileSet>
jaroslav@49
    72
  </fileSets>
jaroslav@49
    73
  <files>
jaroslav@49
    74
    <file>
jaroslav@49
    75
      <source>${project.build.directory}/${project.build.finalName}.jar</source>
jaroslav@49
    76
      <outputDirectory>/</outputDirectory>
jaroslav@49
    77
    </file>
jaroslav@49
    78
  </files>
jaroslav@49
    79
</assembly>