jiakuan / gwt-gradle-plugin

Gradle plugin to support GWT related tasks.
https://gwt-gradle.docstr.org
Other
66 stars 34 forks source link

The launcherDir parameter was removed in version 2.0.12 #81

Closed sayaya1090 closed 2 weeks ago

sayaya1090 commented 2 weeks ago

Hi, I'm currently using this plugin to create a tool that automates testing. When running in GWT Dev Mode, I need to start a separate headless code server and custom web server(not jetty), and it requires a shared variable to define the directory where the servers will operate. In previous versions, "launcherDir" served this purpose, but it seems this variable is missing in the latest version of the plugin.

jiakuan commented 2 weeks ago

Have added a new task superDev with arguments (including launcherDir) The new version 2.1.0 is available now: https://plugins.gradle.org/plugin/org.docstr.gwt Please try and see if it works for your use case.

sayaya1090 commented 2 weeks ago

Thanks!