-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.xml
88 lines (77 loc) · 2.95 KB
/
config.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
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
79
80
81
82
83
84
85
86
87
88
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!--
Configuration file for AntRun.
Use this file to override the default properties contained
in build.xml. For example, to override the build.jar.filename
property (which sets the name of the compiled jar file), add
an element
<jar>
<filename>foo</filename>
</jar>
inside the <build> element.
**Caveat emptor:** in some cases, changing this file and running ant
again will result in Ant using a cached version of the old file! Run
"ant dummy" to make sure that the correct data is being read. Otherwise
you might need to run "ant clean" and start over.
-->
<build>
<!-- Uncomment any of these if you want to override the build
script's default values -->
<!-- The project's name -->
<name>Network packets analysis palette for BeepBeep 3</name>
<!-- The project's version number -->
<version>0.1</version>
<!-- The project's author. Currently this only
shows up in the footer of the Javadoc documentation. -->
<author>Sylvain Hallé</author>
<!-- The project's main class -->
<mainclass>netp.Main</mainclass>
<!-- Installation folders -->
<srcdir>Source/src</srcdir>
<libdir>lib</libdir>
<bindir>Source/bin</bindir>
<depdir>Source/dep</depdir>
<docdir>docs/javadoc</docdir>
<test>
<srcdir>Source/src</srcdir>
<bindir>Source/bin</bindir>
<depdir>Source/dep</depdir>
<docdir>docs/javadoc</docdir>
</test>
<!-- Output jar -->
<jar>
<filename>../netp.jar</filename>
<withdoc>false</withdoc>
</jar>
<!--
Write JAR dependencies here.
-->
<dependencies>
<dependency>
<!-- Jnetpcap. It is hosted on SourceForge, but a direct download is
very unreliable. We instead depend on binaries hosted directly in the
repository. -->
<name>JNetPcap</name>
<classname>org.jnetpcap.packet.JRegistry</classname>
<files>
<!-- Uncomment one of these files, depending on your OS (and optionally change the server)
<zip>https://liflab.github.io/beepbeep-3-jnetpcap-palette/dep/jnetpcap-1.4.r1425-1.win64.zip</zip>
<zip>https://liflab.github.io/beepbeep-3-jnetpcap-palette/dep/jnetpcap-1.4.r1425-1.win32.zip</zip>
<tgz>https://liflab.github.io/beepbeep-3-jnetpcap-palette/dep/jnetpcap-1.4.r1425-1.linux32.i386.tgz</tgz>
<tgz>https://liflab.github.io/beepbeep-3-jnetpcap-palette/dep/jnetpcap-1.4.r1425-1.rhel5.x86_64.tgz</tgz>
-->
<tgz>https://liflab.github.io/beepbeep-3-jnetpcap-palette/dep/jnetpcap-1.4.r1425-1.linux64.x86_64.tgz</tgz>
</files>
<bundle>true</bundle>
</dependency>
<dependency>
<!-- Log4j. It is a Jnetpcap dependency. -->
<name>Log4j</name>
<classname>org.apache.logging.log4j.LogManager</classname>
<files>
<zip>http://apache.mirror.iweb.ca/logging/log4j/2.13.3/apache-log4j-2.13.3-bin.zip</zip>
</files>
<bundle>true</bundle>
</dependency>
</dependencies>
</build>