Skip to content

Instantly share code, notes, and snippets.

@mraible
Created March 8, 2013 01:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mraible/5113636 to your computer and use it in GitHub Desktop.
Save mraible/5113636 to your computer and use it in GitHub Desktop.
Replacing GWT's dependencies with Vaadin's
diff --git a/web/gwt/pom.xml b/web/gwt/pom.xml
index 4982ccc..882268a 100755
--- a/web/gwt/pom.xml
+++ b/web/gwt/pom.xml
@@ -301,17 +301,22 @@
</dependency>
<!-- gwt dependencies -->
- <dependency>
- <groupId>com.google.gwt</groupId>
- <artifactId>gwt-servlet</artifactId>
- <version>${gwt.version}</version>
- </dependency>
- <dependency>
- <groupId>com.google.gwt</groupId>
- <artifactId>gwt-user</artifactId>
- <version>${gwt.version}</version>
- <scope>provided</scope>
- </dependency>
+ <dependency>
+ <groupId>com.vaadin</groupId>
+ <artifactId>vaadin-server</artifactId>
+ <version>${vaadin.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.vaadin</groupId>
+ <artifactId>vaadin-client-compiled</artifactId>
+ <version>${vaadin.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.vaadin</groupId>
+ <artifactId>vaadin-client</artifactId>
+ <version>${vaadin.version}</version>
+ <scope>provided</scope>
+ </dependency>
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
@@ -409,6 +414,7 @@
<properties>
<gwtModuleSuffix></gwtModuleSuffix>
<gwtModuleName>${project.groupId}.webapp.MainModule${gwtModuleSuffix}</gwtModuleName>
+ <vaadin.version>7.0.1</vaadin.version>
</properties>
<reporting>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment