Hey,
does anybody managed to use superdev with OpenJdk8, GWT10 and SmartGWT12.1 LGPL.
Everytime when I klick in Eclipse "Open With SDBG Chrome JS Debugger... I get the following error Message:
My Server POM is:
My client POM is as Follows:
The application itselfs runs fine... just the browser debugging does not work.
Thanks
Andy
does anybody managed to use superdev with OpenJdk8, GWT10 and SmartGWT12.1 LGPL.
Everytime when I klick in Eclipse "Open With SDBG Chrome JS Debugger... I get the following error Message:
My Server POM is:
Code:
<dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>testAw-shared</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.google.gwt</groupId> <artifactId>gwt-servlet</artifactId> <version>${gwt.version}</version> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <version>${servlets.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.glassfish.jaxb</groupId> <artifactId>jaxb-runtime</artifactId> <version>2.3.1</version> <scope>runtime</scope> </dependency> </dependencies>
Code:
<dependency> <groupId>com.google.gwt</groupId> <artifactId>gwt-user</artifactId> </dependency> <dependency> <groupId>com.google.gwt</groupId> <artifactId>gwt-dev</artifactId> </dependency> <!-- The SmartGWT core --> <dependency> <groupId>com.isomorphic.smartgwt.lgpl</groupId> <artifactId>smartgwt-lgpl</artifactId> <version>${smartgwt.version}</version> </dependency> <dependency> <groupId>com.isomorphic.smartgwt.lgpl</groupId> <artifactId>smartgwt-skins</artifactId> <version>${smartgwt.version}</version> </dependency> <!-- Application Toolbox --> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava-gwt</artifactId> <version>20.0</version> </dependency>
Thanks
Andy
Comment