mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-07-30 22:48:07 -07:00
dev-java/laf-plugin: remove unused file.
This commit is contained in:
committed by
Patrice Clement
parent
fe1e3f3032
commit
3560ff925b
@@ -1,46 +0,0 @@
|
||||
<project name="laf_plugin" default="dist" basedir=".">
|
||||
<description>
|
||||
Simple build file made by Alistair Bush for the kunststoff
|
||||
project.
|
||||
</description>
|
||||
|
||||
<property name="src" location="./src"/>
|
||||
<property name="build" location="./build"/>
|
||||
<property name="dist" location="./dist"/>
|
||||
<property name="api" location="api"/>
|
||||
|
||||
<target name="init">
|
||||
<tstamp/>
|
||||
<mkdir dir="${build}"/>
|
||||
<mkdir dir="${api}"/>
|
||||
</target>
|
||||
|
||||
<target name="javadoc" depends="init" description="Produce JavaDoc">
|
||||
<javadoc sourcepath="${src}" destdir="${api}"/>
|
||||
</target>
|
||||
|
||||
<target name="compile" depends="init" description="compile the source">
|
||||
<javac srcdir="${src}" destdir="${build}" >
|
||||
<include name="**/*.java" />
|
||||
</javac>
|
||||
</target>
|
||||
|
||||
<target name="dist" depends="compile"
|
||||
description="generate the distribution" >
|
||||
|
||||
<copy todir="build">
|
||||
<fileset dir="src">
|
||||
<exclude name="**/*.java"/>
|
||||
</fileset>
|
||||
</copy>
|
||||
<mkdir dir="${dist}" />
|
||||
<jar jarfile="${dist}/laf-plugin.jar" basedir="${build}"/>
|
||||
</target>
|
||||
|
||||
<target name="clean" description="Clean up">
|
||||
<delete dir="${build}" />
|
||||
<delete dir="${dist}" />
|
||||
<delete file="./*.jar" />
|
||||
</target>
|
||||
|
||||
</project>
|
||||
Reference in New Issue
Block a user