owl-cli 7.12.0 → 7.13.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8" ?>
|
|
2
2
|
<project name="owlPasswordService" default="all" basedir=".">
|
|
3
|
-
<property file="../../
|
|
3
|
+
<property file="../../buildProperties/build.properties"></property>
|
|
4
|
+
<property name="libpath" value="${antlibpath}"></property>
|
|
4
5
|
<target name="build">
|
|
5
6
|
<mkdir dir="out"/>
|
|
6
7
|
<exec executable="java">
|
|
7
8
|
<arg line="-jar"></arg>
|
|
8
|
-
<arg path="
|
|
9
|
+
<arg path="${libpath}/appBuilder.jar"/>
|
|
9
10
|
<arg line="src/"></arg>
|
|
10
11
|
<arg line="out/owlPasswordService.zip"/>
|
|
11
12
|
</exec>
|
|
@@ -14,7 +15,7 @@
|
|
|
14
15
|
<target name="deploy">
|
|
15
16
|
<exec executable="java">
|
|
16
17
|
<arg line="-jar "></arg>
|
|
17
|
-
<arg path="
|
|
18
|
+
<arg path="${libpath}/appDeployer.jar"/>
|
|
18
19
|
<arg line="${deployUrl}"></arg>
|
|
19
20
|
<arg line="${deployPass}"></arg>
|
|
20
21
|
<arg line="out/owlPasswordService.zip"/>
|