You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

build-plugins.xml 750B

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>