您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

build-plugins.xml 773B

1234567891011121314151617181920212223
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project name="DMDirc-plugins" default="default" basedir=".">
  3. <!-- Netbeans property files -->
  4. <property file="nbproject/project.properties"/>
  5. <property file="nbproject/private/private.properties"/>
  6. <property file="${user.properties.file}"/>
  7. <target name="build-plugins" description="Build all plugins">
  8. <exec executable="bash">
  9. <arg value="createAllPluginJar.sh"/>
  10. <arg value="${src.dir}/com/dmdirc/addons/"/>
  11. </exec>
  12. </target>
  13. <target name="-update-bundled-plugins">
  14. <exec executable="bash">
  15. <arg value="updateBundledPlugins.sh"/>
  16. <arg value="${dist.jar}"/>
  17. </exec>
  18. </target>
  19. </project>