File: build-gump.xml

package info (click to toggle)
libcommons-fileupload-java 1.2.2-1%2Bdeb7u2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 904 kB
  • sloc: java: 3,582; xml: 2,126; makefile: 5
file content (36 lines) | stat: -rw-r--r-- 771 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!--

  WARNING: This file is generated! Do not edit by hand!
  
-->

<project name="maven" default="jar" basedir=".">

  <target
    name="jar">
    
    <property name="maven.build.dir" value="target"/>
    <property name="maven.build.dest" value="${maven.build.dir}/classes"/>
    
    <mkdir dir="${maven.build.dest}"/>
    
    <javac
      destdir="${maven.build.dest}"
      excludes="**/package.html"
      debug="false"
      deprecation="false"
      optimize="false">
      <src>
         <pathelement location="src/java"/>
      </src>
    </javac>

    <jar
      jarfile="${maven.build.dir}/${maven.final.name}.jar"
      basedir="${maven.build.dest}"
      excludes="**/package.html"
    />
    
  </target>

</project>