/plugins/ClojureShell/tags/1.0/build.xml

# · XML · 47 lines · 16 code · 6 blank · 25 comment · 0 complexity · 32d088e61c34dac23002bbcc692d8720 MD5 · raw file

  1. <?xml version="1.0" ?>
  2. <project name="ClojureShell" default="build" basedir=".">
  3. <!-- mark:build.properties -->
  4. <property file="../../build.properties" />
  5. <!-- /mark:build.properties -->
  6. <!-- <property file="build.properties" /> -->
  7. <!-- <property file="../build.properties" /> -->
  8. <property name="compiler.source" value="1.5" />
  9. <property name="compiler.target" value="1.5" />
  10. <property name="src.dir" value="src" />
  11. <!-- Documentation process
  12. none: if you supply your own html file as this template does.
  13. xsltproc: if you plan on using docbook
  14. -->
  15. <property name="docs-proc.target" value="xsltproc" />
  16. <!-- jEdit installation properties. -->
  17. <!-- mark:properties -->
  18. <!-- /mark:properties -->
  19. <import file="${build.support}/plugin-build.xml" />
  20. <!-- If you want any extra files to be included with your plugin's jar,
  21. such as custom images, you need to specify them here. -->
  22. <selector id="packageFiles">
  23. </selector>
  24. <!-- Add your plugin's specific dependencies here -->
  25. <path id="project.class.path">
  26. <!-- Dependencies that are bundled with your plugin.
  27. These should also be represented in your props file under the,
  28. "plugin.[plugin class].jars" property. -->
  29. <!-- <pathelement path="lib/dependency.jar" /> -->
  30. <!-- mark:libs -->
  31. <!-- /mark:libs -->
  32. <!-- Dependencies that are supplied by other plugins. -->
  33. <!-- <pathelement path="${jedit.plugins.dir}/dependency.jar" /> -->
  34. <!-- mark:plugins -->
  35. <pathelement path="${jedit.plugins.dir}/Console.jar" />
  36. <pathelement path="${jedit.plugins.dir}/ProcessShell.jar" />
  37. <pathelement path="${jedit.plugins.dir}/Clojure.jar" />
  38. <!-- /mark:plugins -->
  39. </path>
  40. </project>
  41. <!-- ::mode=xml:: -->