<plugin>
<groupId>net.ltgt.gwt.maven</groupId>
<artifactId>gwt-maven-plugin</artifactId>
<version>${gwt-maven-plugin.version}</version>
<inherited>false</inherited>
<extensions>true</extensions>
<configuration>
<failOnError>true</failOnError>
<sourceLevel>1.8</sourceLevel>
<launcherDir>${project.build.directory}/gwt/launcherDir</launcherDir>
<moduleName>com.app</moduleName>
<moduleShortName>app</moduleShortName>
<jvmArgs>
<arg>
-javaagent:${settings.localRepository}/org/projectlombok/lombok/${lombok.version}/lombok-${lombok.version}.jar=ECJ
</arg>
<arg>-Xms1024m</arg>
<arg>-Xmx4096m</arg>
</jvmArgs>
<codeserverArgs>
<arg>-src</arg>
<arg>${project.parent.basedir}/shared/src/main/java</arg>
</codeserverArgs>
</configuration>
</plugin>
@italokrenak
Do you haven a stacktrace or project to look at?
there is some error with latest lombok versions (for my projects)
see: projectlombok/lombok#2883
Maybe it is you error too
gwt-style OBF
. The problem is I have an index.html file where I setup / import some external Vue Files with Sysmte.js like follwing: <script>System.import('./js/main.js').catch(function (err) { console.error(err); });</script>
in main.js the vue component is implemented and I have also an JsInterop with VueGWT(LINK), where i for example make JsInterops like in main.js I have a method hello: function() { .... }
and in my VueComponent.java I have public native void hello();
. Overall this works in Detailed Modus
when I am compiling the gwt app, but in OBF-Modus
it says that the functions are not found . Whats the problem actually ?
hello()
method marked as a jsmethod?