forked from sake/bouncycastle-java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbouncy.xml
48 lines (36 loc) · 1.29 KB
/
bouncy.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
<!DOCTYPE project [
<!ENTITY Common SYSTEM "common.xml">
%Common;
]>
<!--
Bouncy Castle Build Configuration
$RCSfile: bouncy.xml,v $
$Author: bouncy $
$Date: 2005-07-06 13:02:52 $
$Revision: 1.1 $
-->
<project name="bouncy" default="init" basedir=".">
<property file="${user.home}/crypto_env.properties"/>
<property name="junit.jar" value="${user.junit.root}/junit.jar" />
<property name="activation.jar" value="${user.activation.jar}" />
<property name="mail.jar" value="${user.mail.jar}" />
<property name="mailapi.jar" value="${user.mailapi.jar}" />
<!-- include common targets, properties -->
<property name="master.jdk" value="jdk14" />
&Common;
<path id="compile.cp">
<pathelement location="${master.classes}" />
<pathelement location="${activation.jar}" />
<pathelement location="${mail.jar}" />
<pathelement location="${mailapi.jar}" />
<pathelement location="${junit.jar}" />
</path>
<!-- public callable targets -->
<target name="clean" depends="common-clean" />
<target name="test" depends="common-test" />
<target name="dist" depends="common-dist" />
<target name="package" depends="common-package" />
<target name="compile" depends="common-compile" />
<target name="jdoc" depends="common-jdoc" />
<!-- *** Private Targets *** -->
</project>