javaquery/demo-twitter/bck2brwsr-assembly.xml
author Jaroslav Tulach <jtulach@netbeans.org>
Thu, 03 Oct 2013 10:03:22 +0200
branchjavac
changeset 1327 217ca48c5b80
parent 951 d98f6b1caaeb
parent 1055 0d7b63408a1e
permissions -rw-r--r--
Bringing in Tomas's no java.io.File file manager
jaroslav@1055
     1
<?xml version="1.0"?>
jaroslav@1055
     2
<!--
jaroslav@1055
     3
jaroslav@1055
     4
    Back 2 Browser Bytecode Translator
jaroslav@1055
     5
    Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
jaroslav@1055
     6
jaroslav@1055
     7
    This program is free software: you can redistribute it and/or modify
jaroslav@1055
     8
    it under the terms of the GNU General Public License as published by
jaroslav@1055
     9
    the Free Software Foundation, version 2 of the License.
jaroslav@1055
    10
jaroslav@1055
    11
    This program is distributed in the hope that it will be useful,
jaroslav@1055
    12
    but WITHOUT ANY WARRANTY; without even the implied warranty of
jaroslav@1055
    13
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
jaroslav@1055
    14
    GNU General Public License for more details.
jaroslav@1055
    15
jaroslav@1055
    16
    You should have received a copy of the GNU General Public License
jaroslav@1055
    17
    along with this program. Look for COPYING file in the top folder.
jaroslav@1055
    18
    If not, see http://opensource.org/licenses/GPL-2.0.
jaroslav@1055
    19
jaroslav@1055
    20
-->
jaroslav@1055
    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@1055
    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@1055
    23
  
jaroslav@1055
    24
  <id>bck2brwsr</id>
jaroslav@1055
    25
  <formats>
jaroslav@1055
    26
      <format>zip</format>
jaroslav@1055
    27
  </formats>
jaroslav@1055
    28
  <baseDirectory>public_html</baseDirectory>
jaroslav@1055
    29
  <dependencySets>
jaroslav@1055
    30
    <dependencySet>
jaroslav@1055
    31
        <useProjectArtifact>false</useProjectArtifact>
jaroslav@1055
    32
        <scope>runtime</scope>
jaroslav@1055
    33
        <outputDirectory>lib</outputDirectory>
jaroslav@1055
    34
        <includes>
jaroslav@1055
    35
            <include>*:jar</include>
jaroslav@1055
    36
            <include>*:rt</include>
jaroslav@1055
    37
        </includes>
jaroslav@1055
    38
    </dependencySet>
jaroslav@1055
    39
  </dependencySets> 
jaroslav@1055
    40
  <fileSets>
jaroslav@1055
    41
      <fileSet>
jaroslav@1055
    42
          <directory>${project.build.directory}/classes/org/apidesign/bck2brwsr/demo/twitter/</directory>
jaroslav@1055
    43
          <includes>
jaroslav@1055
    44
              <include>**/*</include>
jaroslav@1055
    45
          </includes>
jaroslav@1055
    46
          <excludes>
jaroslav@1055
    47
              <exclude>**/*.class</exclude>
jaroslav@1055
    48
          </excludes>
jaroslav@1055
    49
          <outputDirectory>/</outputDirectory>
jaroslav@1055
    50
      </fileSet>
jaroslav@1055
    51
  </fileSets>
jaroslav@1055
    52
  <files>
jaroslav@1055
    53
    <file>
jaroslav@1055
    54
      <source>${project.build.directory}/${project.build.finalName}.jar</source>
jaroslav@1055
    55
      <outputDirectory>/</outputDirectory>
jaroslav@1055
    56
    </file>
jaroslav@1055
    57
    <file>
jaroslav@1055
    58
      <source>${project.build.directory}/bck2brwsr.js</source>
jaroslav@1055
    59
      <outputDirectory>/</outputDirectory>
jaroslav@1055
    60
    </file>
jaroslav@1055
    61
  </files>
jaroslav@1055
    62
</assembly>