-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.xml
41 lines (26 loc) · 794 Bytes
/
build.xml
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
<?xml version="1.0" encoding="UTF-8" ?>
<!-- Created by baris Meral 2018.07.07 -->
<project>
<target name = "compile">
<mkdir dir= "build/classes"/>
<javac srcdir = "src" destdir = "build/classes"/>
</target>
<target name = "jar">
<mkdir dir = "build/jar" />
<jar destfile = "build/jar/SplashFrame.jar" basedir = "build/classes" >
<fileset dir="res" />
<fileset dir="." includes="res/Java.png"/>
<manifest>
<attribute name = "Manifest-Version" value = "1.0" />
<attribute name = "Created-By" value = "BarisMeral"/>
<attribute name = "Main-Class" value = "com.barismeral.screen.splashscreen.Main" />
</manifest>
</jar>
</target>
<target name="run">
<java jar="build/jar/SplashFrame.jar" fork= "true" />
</target>
<target name="clean">
<delete dir="build"/>
</target>
</project>