This repository was archived by the owner on Jul 18, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
executable file
·78 lines (67 loc) · 2.61 KB
/
Copy pathbuild.xml
File metadata and controls
executable file
·78 lines (67 loc) · 2.61 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<?xml version="1.0" encoding="UTF-8"?>
<project basedir="." default="all" name="buscaJava">
<target name="init">
<mkdir dir="${basedir}/classes" />
</target>
<target name="compile" depends="init" >
<javac debug="true" destdir="${basedir}/classes" deprecation="true" srcdir="src" source="1.5" target="1.5" encoding="Latin1"/>
</target>
<target name="jar" depends="init,compile" >
<jar basedir="${basedir}/classes"
compress="true"
jarfile="buscaJava.jar"
manifest="src/buscaJava.mf"/>
</target>
<target name="all" depends="init,javadoc,jar,clean">
<echo message="Tudo feito!"/>
</target>
<target name="run" depends="jar" >
<java classname="util.AppletDemoBusca" failonerror="true" fork="yes" >
<classpath>
<pathelement location="buscaJava.jar"/>
</classpath>
</java>
</target>
<target name="run-puzzle" depends="jar" >
<nbprofiledirect>
<classpath>
<pathelement location="buscaJava.jar"/>
</classpath>
</nbprofiledirect>
<java classname="exemplos.Estado8Puzzle" failonerror="true" fork="yes" >
<classpath>
<pathelement location="buscaJava.jar"/>
</classpath>
<jvmarg line="${profiler.info.jvmargs.agent}"/>
<!-- -agentpath:/Applications/NetBeans.app/Contents/Resources/NetBeans/profiler1/lib/deployed/jdk15/mac/libprofilerinterface.jnilib=/Applications/NetBeans.app/Contents/Resources/NetBeans/profiler1/lib,5140" /-->
</java>
</target>
<target name="javadoc" depends="init">
<mkdir dir="doc/apidoc"/>
<javadoc destdir="doc/apidoc" packagenames="busca.*">
<sourcepath>
<pathelement location="src"/>
</sourcepath>
</javadoc>
</target>
<target name="publica" depends="all">
<property name="zipFileDir" location="/home/jomi/lci/public_html/ia/busca"/>
<property name="zipFile" location="${zipFileDir}/buscaJava.zip"/>
<zip destfile="${zipFile}"
basedir=".."
includes="buscaJava/**" />
<delete dir="${zipFileDir}/buscaJava"/>
<unzip src="${zipFile}" dest="${zipFileDir}"/>
</target>
<target name="clean" depends="init" >
<delete>
<fileset dir=".">
<include name="**/*.class"/>
</fileset>
<fileset dir=".">
<include name="**/.nbattrs"/>
</fileset>
</delete>
<delete dir="classes"/>
</target>
</project>