123456789101112131415161718192021222324252627282930 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- Licensed Materials - Property of IBM
- IBM Cognos Products: cpscrn
- (C) Copyright IBM Corp. 2005, 2013
- US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- -->
- <!--
- Copyright (C) 2008 Cognos ULC, an IBM Company. All rights reserved.
- Cognos (R) is a trademark of Cognos ULC, (formerly Cognos Incorporated).
- -->
- <project name="websphere_portlets_war" default="war">
- <property file="build.properties"/>
- <target name="war">
- <mkdir dir="portlets"/>
- <delete quiet="true" file="${war.filepath}"/>
- <copy file="portlet.xml" tofile="webapps/portlets/WEB-INF/portlet.xml" overwrite="true" encoding="UTF-8">
- <filterset>
- <filtersfile file="build.properties"/>
- </filterset>
- </copy>
- <jar jarfile="${war.filepath}">
- <fileset dir="webapps/portlets"/>
- </jar>
- </target>
- </project>
|