Skip to content

Commit

Permalink
Bump GWT version to 2.3.0
Browse files Browse the repository at this point in the history
Change-Id: I324836febca2f4c13ea1883c0c9750fb77aac1c8
  • Loading branch information
nasserg authored and spearce committed Jun 13, 2011
1 parent b542131 commit 32a5a34
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 3 deletions.
13 changes: 13 additions & 0 deletions gerrit-gwtui/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 changes: 17 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down Expand Up @@ -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>
Expand Down Expand Up @@ -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>
Expand Down

0 comments on commit 32a5a34

Please sign in to comment.