Last change
on this file since 4017 was 3792, checked in by ulf, 17 years ago |
replace the two remaining install targets
|
File size:
622 bytes
|
Line | |
---|
1 | <project name="plastic_laf" default="build" basedir=".">
|
---|
2 |
|
---|
3 | <target name="build">
|
---|
4 | <mkdir dir="dist"></mkdir>
|
---|
5 | <unjar dest="bin" src="lib/looks-2.0.4.jar" />
|
---|
6 | <javac srcdir="src" destdir="bin">
|
---|
7 | <include name="**/*.java" />
|
---|
8 | </javac>
|
---|
9 | <jar destfile="dist/plastic_laf.jar" basedir="bin">
|
---|
10 | <manifest>
|
---|
11 | <attribute name="Plugin-Class" value="plastic_laf.Plugin" />
|
---|
12 | <attribute name="Plugin-Description" value="The great JGoodies Plastic Look and Feel" />
|
---|
13 | <attribute name="Plugin-Early" value="true" />
|
---|
14 | </manifest>
|
---|
15 | </jar>
|
---|
16 | </target>
|
---|
17 |
|
---|
18 | <target name="clean">
|
---|
19 | <delete dir="dist" />
|
---|
20 | </target>
|
---|
21 |
|
---|
22 | </project>
|
---|
Note:
See
TracBrowser
for help on using the repository browser.