generated from wearefrank/skeleton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.xml
18 lines (18 loc) · 903 Bytes
/
build.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<project default="restart-HaalCentraal Connector">
<target name="restart-HaalCentraal Connector">
<basename property="project.dir" file="${basedir}"/>
<condition property="exe" value="../frank-runner/restart.bat" else="/bin/bash">
<os family="windows"/>
</condition>
<condition property="arg" value="../frank-runner/restart.sh" else="">
<os family="unix"/>
</condition>
<exec executable="${exe}" vmlauncher="false" failonerror="true">
<arg value="${arg}"/>
<arg value="-Dprojects.dir=${basedir}/.."/>
<arg value="-Dproject.dir=${project.dir}"/>
<arg value="-D credentialFactory.class=nl.nn.credentialprovider.PropertyFileCredentialFactory" />
<arg value="-D credentialFactory.map.properties=${basedir}/src/main/secrets/credentials.properties"/>
</exec>
</target>
</project>