Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Revert "upgrade gwt-log and remove not needed file" #221

Merged
merged 1 commit into from
Oct 10, 2013
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion zanata-war/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1782,7 +1782,7 @@
<dependency>
<groupId>com.allen-sauer.gwt.log</groupId>
<artifactId>gwt-log</artifactId>
<version>3.2.1</version>
<version>3.1.8</version>
</dependency>

<dependency>
Expand Down
15 changes: 15 additions & 0 deletions zanata-war/src/test/java/com/google/gwt/core/client/GWTBridge.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
package com.google.gwt.core.client;

/**
* After upgrade to GWT 2.5, some of the gwt related libraries start to break.
* i.e. gwt-log see http://code.google.com/p/gwt-log/issues/detail?id=70
* <p/>
* Basically the libraries still reference com.google.gwt.core.client.GWTBridge
* and it's been moved to com.google.gwt.core.shared in GWT 2.5. Before they
* release new version this class needs to be in class path to make things work.
*
* @author Patrick Huang <a
* href="mailto:pahuang@redhat.com">pahuang@redhat.com</a>
*/
public abstract class GWTBridge extends com.google.gwt.core.shared.GWTBridge {
}