Created
March 8, 2013 01:54
-
-
Save mraible/5113636 to your computer and use it in GitHub Desktop.
Replacing GWT's dependencies with Vaadin's
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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