Skip to content

Instantly share code, notes, and snippets.

@lofidewanto
Last active October 25, 2020 14:24
Show Gist options
  • Save lofidewanto/31ecb7aa7b14474784fe32d96e4434af to your computer and use it in GitHub Desktop.
Save lofidewanto/31ecb7aa7b14474784fe32d96e4434af to your computer and use it in GitHub Desktop.
IndexedDB with Java Patterns - GWT Boot pom.xml - Maven Plugin
...
<build>
<plugins>
<!-- GWT Maven Plugin -->
<plugin>
<groupId>net.ltgt.gwt.maven</groupId>
<artifactId>gwt-maven-plugin</artifactId>
<configuration>
<moduleName>
com.github.lofi.Calculator
</moduleName>
<startupUrls>
<url>/calculator/</url>
</startupUrls>
<compilerArgs>
<arg>-generateJsInteropExports</arg>
<arg>-compileReport</arg>
<arg>-style</arg>
<arg>PRETTY</arg>
</compilerArgs>
<devmodeArgs>
<arg>-logLevel</arg>
<arg>INFO</arg>
<arg>-generateJsInteropExports</arg>
<arg>-style</arg>
<arg>PRETTY</arg>
</devmodeArgs>
</configuration>
</plugin>
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment