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

# · XML · 22 lines · 12 code · 1 blank · 9 comment · 0 complexity · 82401f276f1c204c92b68e1294f27848 MD5 · raw file

  1. <project name="BufferTabs" default="build" basedir=".">
  2. <!--
  3. This is the standard build.xml file for building the BufferTabs plugin.
  4. To use this template for building your own plugin, make these changes:
  5. - Change 'name' property for the <project> to the name of your plugin
  6. - If necessary, add any dependencies to the 'project.class.path' definition
  7. - If necessary, change the list of files in the 'packageFiles' selector
  8. -->
  9. <property name="user-doc.xml" location = "users-guide.xml"/>
  10. <property file="build.properties"/>
  11. <property file="../build.properties"/>
  12. <property name="build.support" value="../../build-support" />
  13. <import file="${build.support}/plugin-build.xml" />
  14. <selector id="packageFiles">
  15. <and>
  16. <filename name="CHANGELOG.txt" />
  17. </and>
  18. </selector>
  19. </project>