Last active
October 25, 2020 14:24
-
-
Save lofidewanto/31ecb7aa7b14474784fe32d96e4434af to your computer and use it in GitHub Desktop.
IndexedDB with Java Patterns - GWT Boot pom.xml - Maven Plugin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
... | |
<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