build.xml 930 B

123456789101112131415161718192021222324252627282930
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Licensed Materials - Property of IBM
  4. IBM Cognos Products: cpscrn
  5. (C) Copyright IBM Corp. 2005, 2013
  6. US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  7. -->
  8. <!--
  9. Copyright (C) 2008 Cognos ULC, an IBM Company. All rights reserved.
  10. Cognos (R) is a trademark of Cognos ULC, (formerly Cognos Incorporated).
  11. -->
  12. <project name="websphere_portlets_war" default="war">
  13. <property file="build.properties"/>
  14. <target name="war">
  15. <mkdir dir="portlets"/>
  16. <delete quiet="true" file="${war.filepath}"/>
  17. <copy file="portlet.xml" tofile="webapps/portlets/WEB-INF/portlet.xml" overwrite="true" encoding="UTF-8">
  18. <filterset>
  19. <filtersfile file="build.properties"/>
  20. </filterset>
  21. </copy>
  22. <jar jarfile="${war.filepath}">
  23. <fileset dir="webapps/portlets"/>
  24. </jar>
  25. </target>
  26. </project>