I am currently using Maven to download the GWT dependencies from the
Maven central repository as follows:
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-servlet</artifactId>
<version>${gwt.version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-user</artifactId>
<version>${gwt.version}</version>
<scope>provided</scope>
</dependency>
At the same time, I am trying to use the Eclipse GWT plugin I
installed from here:
http://dl.google.com/eclipse/plugin/3.5
I did NOT install the SDK from the update site. However, the plugin
wants to know the location of the GWT SDK. Often when Eclipse plugins
want to know the location of JAR files, I point them to my "~/.m2/
repository" directories -- but so far I see no way to do this with
GWT.
I ask for two reasons:
a) I don't want the plugin to mandate my version of the SDK (it
downloads 2.0.4 right now).
b) I don't want two copies of the JAR files lying around.
Is this possible?
--
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-web-toolkit?hl=en.