We use a different build tool but it works with this version of GWT. I don't use Maven so not sure how it is normally integrated. However, to configure it manually you can go to "Project Structure" dialog then "Project Settings / Facets / Default" section and set "Path to GWT installation directory" to something like "/Users/peter/.m2/repository/org/realityforge/com/google/gwt/gwt-dev/2.8.2-v20191108" and this will be picked up by any GWT facets and thus work in IDE.
HTH On Tue, Dec 3, 2019 at 6:00 AM Nick Stolwijk <[email protected]> wrote: > Thanks. > > I was able to use them in my Maven build. Only my IDE, IntelliJ doesn't > pick them up. Do you if it is possible to use these as the compiler in > IntelliJ? > > With regards, > > Nick S. > > On Monday, 11 November 2019 04:20:20 UTC+1, Peter Donald wrote: >> >> GWT is a development toolkit for building and optimizing complex >> browser-based applications. Its goal is to enable productive >> development of high-performance web applications without the >> developer having to be an expert in browser quirks, >> XMLHttpRequest, and JavaScript. It’s open-source, completely >> free, and used by thousands of developers around the world. >> >> https://github.com/gwtproject/gwt >> >> This is an unofficial release to Maven Central with the groupId >> prefixed with "org.realityforge.". The intent is to get the current >> version of GWT into more people's hands earlier. Please don't bug >> the GWT project. Versions are released on demand. >> >> The one significant difference in the way that it has been packaged >> is to release the jsinterop-annotations artifact with the coordinate >> >> org.realityforge.com.google.jsinterop:jsinterop-annotations:jar:2.8.2-v20191108 >> >> >> For most Maven users, it should be sufficient to update your >> dependency declarations to something like: >> >> <dependency> >> <groupId>org.realityforge.com.google.gwt</groupId> >> <artifactId>gwt-user</artifactId> >> <version>2.8.2-v20191108</version> >> </dependency> >> <dependency> >> <groupId>org.realityforge.com.google.gwt</groupId> >> <artifactId>gwt-dev</artifactId> >> <version>2.8.2-v20191108</version> >> </dependency> >> >> Hope this helps, >> >> Peter Donald >> > -- > You received this message because you are subscribed to the Google Groups > "GWT Users" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To view this discussion on the web visit > https://groups.google.com/d/msgid/google-web-toolkit/313e9b2b-886f-4848-80ee-2c5deff39815%40googlegroups.com > <https://groups.google.com/d/msgid/google-web-toolkit/313e9b2b-886f-4848-80ee-2c5deff39815%40googlegroups.com?utm_medium=email&utm_source=footer> > . > -- Cheers, Peter Donald -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/google-web-toolkit/CACiKNc4cXHgmYkRmBvVsJKEn5KZ7S2b2o5Y1RdXWw3fy6i-MDA%40mail.gmail.com.
