PageRenderTime 40ms CodeModel.GetById 14ms RepoModel.GetById 0ms app.codeStats 0ms

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

#
XML | 38 lines | 24 code | 6 blank | 8 comment | 0 complexity | b64c37de9115edae437c74c0dfc86c16 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. <project name="SideKick" default="build" basedir=".">
  2. <!--
  3. This is a build.xml file for building the SideKick plugin.
  4. -->
  5. <property file="build.properties"/>
  6. <property file="../build.properties"/>
  7. <!-- Read optional properties from various places -->
  8. <!-- Latter ones override previous properties. -->
  9. <property name="javadoc.packagenames" value="sidekick.*" />
  10. <property name="user-doc.xml" location = "users-guide.xml"/>
  11. <property name="plugin.dependencies" value="ErrorList" />
  12. <property name="dist.target" value="dist.complete" />
  13. <property name="compiler.source" value="1.6" />
  14. <property name="compiler.target" value="1.6" />
  15. <property name="build.support" value="../build-support" />
  16. <property name="jedit.plugins.dir" value="${install.dir}" />
  17. <import file="${build.support}/plugin-build.xml" />
  18. <!-- must define project.class.path AFTER the import for plugin-build.xml.
  19. Don't know why, other than plugin-build.xml will not find the jars listed
  20. here if the import is listed later. Ant bug, maybe? -->
  21. <path id="project.class.path">
  22. <pathelement location="${jedit.install.dir}/jedit.jar" />
  23. <pathelement location="${jedit.plugins.dir}/ErrorList.jar"/>
  24. <pathelement location="${jedit.plugins.dir}/MarkerSets.jar"/>
  25. </path>
  26. <selector id="packageFiles">
  27. <or>
  28. <filename name="macros/*.*" />
  29. <filename name="CHANGES.txt" />
  30. </or>
  31. </selector>
  32. </project>