blob: cbd6d66556608dbe95a19035d0740a5d2d1f84f6 [file]
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2007, 2019 IBM Corporation and others.
This program and the accompanying materials
are made available under the terms of the Eclipse Public License 2.0
which accompanies this distribution, and is available at
https://www.eclipse.org/legal/epl-2.0/
SPDX-License-Identifier: EPL-2.0
Contributors:
IBM Corporation - initial API and implementation
-->
<project
name="xsl-conversion"
default="main"
basedir=".">
<!-- note: this file isn't used in test, just left here as a handy way to test transform
in workspace during development of xsl -->
<target
name="main"
description="Converts log.xml to produce log.html">
<xslt
in="log.xml"
out="log.html"
style="wtplog.xsl"
force="true" />
</target>
</project>