Bump GWT version to 2.3.0

Change-Id: I324836febca2f4c13ea1883c0c9750fb77aac1c8
This commit is contained in:
Nasser Grainawi
2011-05-19 10:47:22 -07:00
committed by Shawn O. Pearce
parent b542131966
commit 32a5a34cd1
3 changed files with 31 additions and 3 deletions

View File

@@ -135,6 +135,19 @@ limitations under the License.
<classifier>sources</classifier>
<type>jar</type>
</dependency>
<!-- GWT should require these itself, but doesn't. -->
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<classifier>sources</classifier>
<scope>provided</scope>
</dependency>
</dependencies>
<profiles>

View File

@@ -32,6 +32,7 @@
<extend-property name='locale' values='en'/>
<set-property-fallback name='locale' value='en'/>
<set-property name='locale' value='en'/>
<set-configuration-property name='UiBinder.useSafeHtmlTemplates' value='true'/>
<entry-point class='com.google.gerrit.client.Gerrit'/>
</module>

20
pom.xml
View File

@@ -48,9 +48,9 @@ limitations under the License.
<properties>
<jgitVersion>0.12.1.53-g5ec4977</jgitVersion>
<gwtormVersion>1.1.4</gwtormVersion>
<gwtjsonrpcVersion>1.2.4</gwtjsonrpcVersion>
<gwtjsonrpcVersion>1.2.5</gwtjsonrpcVersion>
<gwtexpuiVersion>1.2.3</gwtexpuiVersion>
<gwtVersion>2.1.1</gwtVersion>
<gwtVersion>2.3.0</gwtVersion>
<slf4jVersion>1.6.1</slf4jVersion>
<guiceVersion>2.0</guiceVersion>
<jettyVersion>7.2.1.v20101111</jettyVersion>
@@ -361,7 +361,7 @@ limitations under the License.
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>gwt-maven-plugin</artifactId>
<version>2.1.0-1</version>
<version>2.3.0</version>
</plugin>
<plugin>
@@ -500,6 +500,20 @@ limitations under the License.
<version>2.0.16</version>
</dependency>
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<version>1.0.0.GA</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<version>1.0.0.GA</version>
<classifier>sources</classifier>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.code.guice</groupId>
<artifactId>guice</artifactId>