chat/client/bck2brwsr-assembly.xml
author Jaroslav Tulach <jtulach@netbeans.org>
Mon, 06 May 2013 17:40:19 +0200
changeset 13 fd9a16bbfd0e
permissions -rw-r--r--
Splitting the client/server example into three independent modules
jtulach@13
     1
<?xml version="1.0"?>
jtulach@13
     2
<!--
jtulach@13
     3
jtulach@13
     4
    The MIT License (MIT)
jtulach@13
     5
jtulach@13
     6
    Copyright (C) 2013 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
jtulach@13
     7
jtulach@13
     8
    Permission is hereby granted, free of charge, to any person obtaining a copy
jtulach@13
     9
    of this software and associated documentation files (the "Software"), to deal
jtulach@13
    10
    in the Software without restriction, including without limitation the rights
jtulach@13
    11
    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
jtulach@13
    12
    copies of the Software, and to permit persons to whom the Software is
jtulach@13
    13
    furnished to do so, subject to the following conditions:
jtulach@13
    14
jtulach@13
    15
    The above copyright notice and this permission notice shall be included in
jtulach@13
    16
    all copies or substantial portions of the Software.
jtulach@13
    17
jtulach@13
    18
    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
jtulach@13
    19
    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
jtulach@13
    20
    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
jtulach@13
    21
    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
jtulach@13
    22
    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
jtulach@13
    23
    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
jtulach@13
    24
    THE SOFTWARE.
jtulach@13
    25
jtulach@13
    26
-->
jtulach@13
    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@13
    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@13
    29
  
jtulach@13
    30
  <id>bck2brwsr</id>
jtulach@13
    31
  <formats>
jtulach@13
    32
      <format>zip</format>
jtulach@13
    33
  </formats>
jtulach@13
    34
  <baseDirectory>client</baseDirectory>
jtulach@13
    35
  <dependencySets>
jtulach@13
    36
    <dependencySet>
jtulach@13
    37
        <useProjectArtifact>false</useProjectArtifact>
jtulach@13
    38
        <scope>runtime</scope>
jtulach@13
    39
        <outputDirectory>lib</outputDirectory>
jtulach@13
    40
        <includes>
jtulach@13
    41
            <include>*:jar</include>
jtulach@13
    42
            <include>*:rt</include>
jtulach@13
    43
        </includes>
jtulach@13
    44
    </dependencySet>
jtulach@13
    45
    <dependencySet>
jtulach@13
    46
        <useProjectArtifact>false</useProjectArtifact>
jtulach@13
    47
        <scope>provided</scope>
jtulach@13
    48
        <includes>
jtulach@13
    49
            <include>*:js</include>
jtulach@13
    50
        </includes>
jtulach@13
    51
        <unpack>true</unpack>
jtulach@13
    52
        <outputDirectory>/</outputDirectory>
jtulach@13
    53
    </dependencySet>
jtulach@13
    54
  </dependencySets> 
jtulach@13
    55
  <files>
jtulach@13
    56
    <file>
jtulach@13
    57
      <source>${project.build.directory}/${project.build.finalName}.jar</source>
jtulach@13
    58
      <outputDirectory>/</outputDirectory>
jtulach@13
    59
    </file>
jtulach@13
    60
    <file>
jtulach@13
    61
      <source>${project.build.directory}/classes/org/apidesign/html/chatserver/client/chat.html</source>
jtulach@13
    62
      <outputDirectory>/</outputDirectory>
jtulach@13
    63
      <destName>index.html</destName>
jtulach@13
    64
    </file>
jtulach@13
    65
  </files>
jtulach@13
    66
jtulach@13
    67
</assembly>