<!--
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
Copyright (c) 2012-2014 ForgeRock AS. All Rights Reserved
The contents of this file are subject to the terms
of the Common Development and Distribution License
(the License). You may not use this file except in
compliance with the License.
You can obtain a copy of the License at
http://forgerock.org/license/CDDLv1.0.html
See the License for the specific language governing
permission and limitations under the License.
When distributing Covered Code, include this CDDL
Header Notice in each file and include the License file
at http://forgerock.org/license/CDDLv1.0.html
If applicable, add the following below the CDDL Header,
with the fields enclosed by brackets [] replaced by
your own identifying information:
"Portions Copyrighted [year] [name of copyright owner]"
-->
<project default="fedlet">
<target name="fedlet">
<mkdir dir="built/dist/.zip"/>
<fail message="Source code is not compiled yet">
<condition>
<not>
<available file="Fedlet/Fedlet/bin/Release/Fedlet.dll" />
</not>
</condition>
</fail>
<copy todir="built/dist/.zip" file="readme.txt" />
<copy todir="built/dist/.zip/bin" file="Fedlet/Fedlet/bin/Release/Fedlet.dll" />
<copy todir="built/dist/.zip/bin" file="Fedlet/Fedlet/bin/Release/Fedlet.pdb" />
<copy todir="built/dist/.zip/conf">
<fileset dir="Fedlet/Fedlet/conf">
<include name="*.cot-template"/>
<include name="*.xml-template"/>
</fileset>
</copy>
<copy todir="built/dist/.zip/SampleApp">
<fileset dir="Fedlet/SampleApp">
<include name="Web.config"/>
<include name="site.master"/>
<include name="App_Data/*" />
<include name="bin/*.dll" />
<include name="**/*.aspx"/>
<include name="**/*.png"/>
<include name="**/*.jpg"/>
<include name="**/*.gif"/>
<include name="**/*.css"/>
<include name="**/*.js"/>
</fileset>
</copy>
<zip destfile="built/dist/Fedlet-aspnet.zip">
<zipfileset dir="built/dist/.zip" prefix=""/>
</zip>
<delete dir="built/dist/.zip" />
<checksum file="built/dist/Fedlet-aspnet.zip" algorithm="SHA" fileext=".sha" />
<tstamp>
<format property="time.stamp" pattern="yyyyMMdd"/>
</tstamp>
<filter token="BUILD_DATE" value="${time.stamp}" />
<copy file="build_date.js.template"
tofile="built/dist/build_date.js" filtering="true"/>
</target>
<target name="clean">
<delete dir="built" />
</target>
</project>