forked from opentelecoms-org/lumicall
-
Notifications
You must be signed in to change notification settings - Fork 0
/
custom_rules.xml
44 lines (34 loc) · 1.95 KB
/
custom_rules.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
<?xml version="1.0" encoding="UTF-8"?>
<project>
<available file="assets/app.properties" property="app.properties.present"/>
<target name="-setup-properties" unless="app.properties.present">
<copy file="assets/app.properties-prod" tofile="assets/app.properties"/>
</target>
<target name="-pre-build" depends="-setup-properties">
<property name="gmetric4j.absolute.dir" location="gmetric4j"/>
<subant buildpath="${gmetric4j.absolute.dir}" antfile="build.xml"/>
<copy file="${gmetric4j.absolute.dir}/gmetric4j.jar" todir="${jar.libs.absolute.dir}"/>
<copy todir="${jar.libs.absolute.dir}">
<fileset dir="${gmetric4j.absolute.dir}/lib">
<include name="**/oncrpc-1.0.7.jar"/>
</fileset>
</copy>
<property name="ice4j.absolute.dir" location="ice4j"/>
<subant buildpath="${ice4j.absolute.dir}" antfile="build.xml"/>
<copy file="${ice4j.absolute.dir}/ice4j.jar" todir="${jar.libs.absolute.dir}"/>
<copy todir="${jar.libs.absolute.dir}">
<fileset dir="${ice4j.absolute.dir}/lib">
<include name="**/*.jar"/>
</fileset>
</copy>
<property name="opentelecoms.org-util.absolute.dir" location="opentelecoms.org-util"/>
<subant buildpath="${opentelecoms.org-util.absolute.dir}" antfile="build.xml"/>
<copy file="${opentelecoms.org-util.absolute.dir}/opentelecoms.org-util.jar" todir="${jar.libs.absolute.dir}"/>
<property name="pbkdf2.absolute.dir" location="pbkdf2"/>
<subant buildpath="${pbkdf2.absolute.dir}" antfile="build.xml"/>
<copy file="${pbkdf2.absolute.dir}/pbkdf2.jar" todir="${jar.libs.absolute.dir}"/>
<property name="opentelecoms.org-zrtp.absolute.dir" location="zrtp/zorg-java"/>
<subant buildpath="${opentelecoms.org-zrtp.absolute.dir}" antfile="build.xml"/>
<copy file="${opentelecoms.org-zrtp.absolute.dir}/opentelecoms.org-zrtp.jar" todir="${jar.libs.absolute.dir}"/>
</target>
</project>