gwt-app-archetypes
Description
This project provides a set of archetypes for starting your GWT application. Starting a project from scratch is often a hassle, so the objective of this project is to help GWT developers getting started quickly by providing them with ready to use applications structure.
Requirements
- GWT 2.8.0
- JDK 1.8
Available archetypes
| Archetype | Description | Dependencies |
|---|---|---|
| gwt-simple | minimal ready to run gwt project with an empty entry point class. |
|
| gwt-simple-mojo-plugin | same as gwt-simple except that it uses the org.codehaus.mojo |
|
| spring-boot-gwt | This archetype is an integration of GWT into a spring boot application. There are two predefined profiles for running GWT dev mode and for running the application in production. |
|
Usage
On windows:
mvn archetype:generate -DarchetypeGroupId=com.gwidgets.maven
-DarchetypeArtifactId={artifactName}
-DarchetypeVersion=0.2-SNAPSHOT
-DgroupId={yourGroupId}
-DartifactId={yourArtifactID}
-Dmodule={moduleName}
-Dversion={yourVersion}
On Linux/MacOs:
mvn archetype:generate -DarchetypeGroupId=com.gwidgets.maven
-DarchetypeArtifactId={artifactName}
-DarchetypeVersion=0.2-SNAPSHOT
-DgroupId={yourGroupId}
-DartifactId={yourArtifactID}
-Dmodule={moduleName}
-Dversion={yourVersion}
