PageRenderTime 44ms CodeModel.GetById 23ms RepoModel.GetById 1ms app.codeStats 0ms

/bundles/plugins-trunk/WincryptCipher/build.xml

#
XML | 69 lines | 42 code | 7 blank | 20 comment | 0 complexity | a144fe8c677a860480d837ed73d5a36b MD5 | raw file
Possible License(s): BSD-3-Clause, AGPL-1.0, Apache-2.0, LGPL-2.0, LGPL-3.0, GPL-2.0, CC-BY-SA-3.0, LGPL-2.1, GPL-3.0, MPL-2.0-no-copyleft-exception, IPL-1.0
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!--
  3. - WincryptCipherPlugin - A jEdit plugin as wincrypt cipher implementation for the CipherPlugin
  4. - :tabSize=4:indentSize=4:noTabs=true:
  5. -
  6. - Copyright (C) 2007 Björn "Vampire" Kautler
  7. -
  8. - This program is free software; you can redistribute it and/or
  9. - modify it under the terms of the GNU General Public License
  10. - as published by the Free Software Foundation; either version 2
  11. - of the License, or (at your option) any later version.
  12. -
  13. - This program is distributed in the hope that it will be useful,
  14. - but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. - GNU General Public License for more details.
  17. -
  18. - You should have received a copy of the GNU General Public License
  19. - along with this program; if not, write to the Free Software
  20. - Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  21. -->
  22. <project name="WincryptCipher"
  23. default="build">
  24. <description>
  25. This is an ant build.xml file for building the Wincrypt Cipher plugin for jEdit.
  26. </description>
  27. <property file="../build.properties" />
  28. <property file="build.properties" />
  29. <property name="build.support"
  30. value="../../jEdit/build-support" />
  31. <property name="compiler.target"
  32. value="1.5" />
  33. <property name="compiler.source"
  34. value="1.5" />
  35. <property name="compiler.debug"
  36. value="on" />
  37. <property name="javadoc.packagenames"
  38. value="wincrypt" />
  39. <property name="user-doc.out"
  40. value="docs/index.html" />
  41. <property name="dist.target"
  42. value="dist.complete" />
  43. <import file="${build.support}/plugin-build.xml" />
  44. <target name="build.post">
  45. <copy file="lib/WincryptCipher.dll"
  46. todir="${install.dir}" />
  47. </target>
  48. <path id="project.class.path">
  49. <pathelement location="${install.dir}/Cipher.jar" />
  50. <pathelement location="${install.dir}/commons-codec-1.3.jar" />
  51. <pathelement location="${findbugs.lib.dir}/annotations.jar" />
  52. </path>
  53. <selector id="compileFiles">
  54. <filename name="src/**/*.java" />
  55. </selector>
  56. <selector id="docSrcFiles">
  57. <or>
  58. <filename name="docs/users-guide.xml" />
  59. <filename name="docs/fdl.xml" />
  60. </or>
  61. </selector>
  62. </project>