Package io.freefair.gradle.plugins.gwt
Interface GwtCodeServerOptions
-
- All Superinterfaces:
CommonGwtToolOptions
- All Known Implementing Classes:
GwtCodeServerTask
public interface GwtCodeServerOptions extends CommonGwtToolOptions
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Property<Boolean>
getAllowMissingSrc()
Allows -src flags to reference missing directories.Property<String>
getBindAddress()
Specifies the bind address for the code server and web server (defaults to 127.0.0.1)Property<Boolean>
getCompileTest()
Exits after compiling the modules.Property<Integer>
getCompileTestRecompiles()
The number of times to recompile (after the first one) during a compile test.DirectoryProperty
getLauncherDir()
An output directory where files for launching Super Dev Mode will be written.Property<Integer>
getPort()
The port where the code server will run.Property<Boolean>
getPrecompile()
Precompile modules.DirectoryProperty
getSrc()
A directory containing GWT source to be prepended to the classpath for compiling.Property<Boolean>
getXclosureFormattedOutput()
EXPERIMENTAL: Enables Javascript output suitable for post-compilation by Closure Compiler (defaults to OFF)-
Methods inherited from interface io.freefair.gradle.plugins.gwt.CommonGwtToolOptions
getExcludeJsInteropExports, getFailOnError, getGenerateJsInteropExports, getIncludeJsInteropExports, getIncremental, getLogLevel, getModule, getSetProperty, getSourceLevel, getStyle, getWorkDir, getXmethodNameDisplayMode
-
-
-
-
Method Detail
-
getAllowMissingSrc
@Optional @Input Property<Boolean> getAllowMissingSrc()
Allows -src flags to reference missing directories. (defaults to OFF)
-
getCompileTest
@Optional @Input Property<Boolean> getCompileTest()
Exits after compiling the modules. The exit code will be 0 if the compile succeeded. (defaults to OFF)
-
getCompileTestRecompiles
@Optional @Input Property<Integer> getCompileTestRecompiles()
The number of times to recompile (after the first one) during a compile test.
-
getPrecompile
@Optional @Input Property<Boolean> getPrecompile()
Precompile modules. (defaults to ON)
-
getSrc
@Optional @InputDirectory DirectoryProperty getSrc()
A directory containing GWT source to be prepended to the classpath for compiling.
-
getLauncherDir
@Optional @OutputDirectory DirectoryProperty getLauncherDir()
An output directory where files for launching Super Dev Mode will be written. (Optional.)
-
getBindAddress
@Optional @Input Property<String> getBindAddress()
Specifies the bind address for the code server and web server (defaults to 127.0.0.1)
-
-