This repository has been archived by the owner on Oct 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.xml
114 lines (102 loc) · 3.47 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<?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>Pattern Detection Lab</name>
<!-- 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>patternlab.MainLab</mainclass>
<!-- The name of the exported JAR file -->
<jar>
<filename>pattern-detection-lab.jar</filename>
</jar>
<srcdir>Source/src</srcdir>
<depdir>Source/dep</depdir>
<libdir>Source/lib</libdir>
<bindir>Source/bin</bindir>
<test>
<!-- The filename pattern to recognize test files -->
<filenamepattern>
<src>**/*Test.java</src>
<bin>**/*Test.class</bin>
</filenamepattern>
</test>
<targetjdk>8</targetjdk>
<!--
Write JAR dependencies here.
-->
<dependencies>
<dependency>
<!-- BeepBeep 3 -->
<name>BeepBeep Core</name>
<classname>ca.uqac.lif.cep.Processor</classname>
<files>
<zip>https://github.com/liflab/beepbeep-3/releases/download/v0.10.8-alpha/beepbeep-3-0.10.8-alpha.zip</zip>
</files>
<bundle>true</bundle>
</dependency>
<dependency>
<!-- BeepBeep 3 LTL Palette -->
<name>BeepBeep LTL Palette</name>
<classname>ca.uqac.lif.cep.ltl.Troolean</classname>
<files>
<jar>https://github.com/liflab/beepbeep-3-palettes/releases/download/v20230115/ltl.jar</jar>
</files>
<bundle>true</bundle>
</dependency>
<dependency>
<!-- BeepBeep 3 FSM Palette -->
<name>BeepBeep FSM Palette</name>
<classname>ca.uqac.lif.cep.fsm.MooreMachine</classname>
<files>
<jar>https://github.com/liflab/beepbeep-3-palettes/releases/download/v20230115/fsm.jar</jar>
</files>
<bundle>true</bundle>
</dependency>
<dependency>
<!-- BeepBeep 3 Provenance Palette -->
<name>BeepBeep Provenance Palette</name>
<classname>ca.uqac.lif.cep.provenance.ProvenanceNode</classname>
<files>
<jar>https://github.com/liflab/beepbeep-3-palettes/releases/download/v20230115/provenance.jar</jar>
</files>
<bundle>true</bundle>
</dependency>
<dependency>
<!-- LabPal -->
<name>LabPal</name>
<classname>ca.uqac.lif.labpal.Laboratory</classname>
<files>
<jar>https://github.com/liflab/labpal/releases/download/v2.99-beta1/labpal.jar</jar>
</files>
<bundle>true</bundle>
</dependency>
<dependency>
<!-- Synthia Core -->
<name>Synthia Core</name>
<classname>ca.uqac.lif.synthia.Picker</classname>
<files>
<jar>https://github.com/liflab/synthia/releases/download/v0.3.1/synthia-core.jar</jar>
</files>
<bundle>true</bundle>
</dependency>
</dependencies>
</build>