blob: d12c96e34ffd9544bc0ff9968bbaca40a00329a7 [file] [log] [blame]
<?xml version="1.0" encoding="ISO-8859-1"?>
<!--
Copyright (c) 2018 Oracle and/or its affiliates. All rights reserved.
This program and the accompanying materials are made available under the
terms of the Eclipse Public License v. 2.0, which is available at
http://www.eclipse.org/legal/epl-2.0.
This Source Code may also be made available under the following Secondary
Licenses when the conditions for such availability set forth in the
Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
version 2 with the GNU Classpath Exception, which is available at
https://www.gnu.org/software/classpath/license.html.
SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
-->
<!-- Security Testsuites -->
<!-- Author: jagadesh.munta@sun.com -->
<!DOCTYPE project [
<!ENTITY commonSetup SYSTEM "file:./../../../../config/properties.xml">
<!ENTITY commonBuild SYSTEM "file:./../../../../config/common.xml">
<!ENTITY testProperties SYSTEM "./build.properties">
]>
<project name="ssl-util" default="usage" basedir=".">
&commonSetup;
&commonBuild;
&testProperties;
<target name="usage" >
<echo message="ant all ->compiles the ssl util sources and build the jar in lib directory." />
</target>
<target name="all" depends="build"/>
<target name="clean" depends="init-common">
<antcall target="clean-common"/>
</target>
<target name="compile" depends="clean">
<antcall target="compile-common">
<param name="src" value="."/>
</antcall>
</target>
<target name="build" depends="compile">
<jar destfile="${env.APS_HOME}/lib/sslutil.jar">
<fileset dir="${build.classes.dir}"
includes="**/KeyTool.class"
/>
</jar>
</target>
</project>