# rules_gwt **Repository Path**: mirrors_bazelbuild/rules_gwt ## Basic Information - **Project Name**: rules_gwt - **Description**: Bazel rules for GWT - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2025-10-04 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README [](https://buildkite.com/bazel/rules-gwt-postsubmit) # 📣 [Unmaintained] GWT Rules for Bazel > [!WARNING] > Due to an absence of any maintainers, this repository is archived and currently unmaintained. > > **We discourage any new dependencies on the contents of this repository.** > > If you, or your organization, are interested in revitalizing this project by taking over its maintenance, we welcome your initiative. > To discuss the process of un-archiving and assuming ownership of this repository, please reach out to us via email at `bazel-contrib@googlegroups.com` or join the conversation on our Slack workspace in the `#rules` channel. > You can sign up for Slack access at [https://slack.bazel.build](https://slack.bazel.build).
Attributes | |
---|---|
name |
Name, required
A unique name for this rule. |
srcs |
List of labels, optional
List of .java source files that will be compiled and passed on the classpath to the GWT compiler. |
resources |
List of labels, optional
List of resource files that will be passed on the classpath to the GWT
compiler, e.g. |
modules |
List of strings, required
List of fully-qualified names of modules that will be passed to the GWT
compiler. Usually contains a single module name corresponding to the
application's |
pubs |
List of labels, optional
Files that will be copied directly to the output war, such as static HTML or image resources. Not interpreted by the GWT compiler. |
deps |
List of labels, optional
List of other java_libraries on which the application depends. Both the
class jars and the source jars corresponding to each library as well as
their transitive dependencies will be passed to the GWT compiler's
classpath. These libraries may contain other |
output_root |
String, optional
Directory in the output war in which all outputs will be placed. By default outputs are placed at the root of the war file. |
java_roots |
List of strings, optional
Directories relative to the workspace root that form roots of the
Java package hierarchy (e.g. they contain |
compiler_flags |
List of strings, optional
Additional flags that will be passed to the GWT compiler. See here for a list of available flags. |
compiler_jvm_flags |
List of strings, optional
Additional JVM flags that will be passed to the GWT compiler, such as
|
dev_flags |
List of strings, optional
Additional flags that will be passed to development mode. See here for a list of available flags. |
dev_jvm_flags |
List of strings, optional
Additional JVM flags that will be passed to development mode, such as
|