blob: ef8fa017178179069ab0b54e7280f79645e6b1b2 (
plain)
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
|
AMQP JMS API
To build this you will need ant. The build.xml file requires that the amq.home
property be set to point to the location of the root directory under which the
base2 and amqp moduels reside (these contain protocol definitions used in
the code generation).
You can avoid setting it if you have the following structure:
root/
base/
base2/
foreign/
gsl/
amqp/
blaze/
java/
client
build.xml
Readme.txt [this file]
common
Otherwise you can either pass it in on the command line or add it to a file
named build.properties in the same directory as this Readme.txt file.
E.g.:
ant -Damq.home=c:\AMQP\
|