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