]> source.dussan.org Git - gwtquery.git/commitdiff
Fix JsInterop in 2.8-SNAPSHOT
authorManolo Carrasco <manolo@apache.org>
Sat, 23 May 2015 13:49:26 +0000 (15:49 +0200)
committerManolo Carrasco <manolo@apache.org>
Sat, 23 May 2015 13:50:24 +0000 (15:50 +0200)
gwtquery-core/src/test/java/com/google/gwt/query/client/GQueryJsInteropTestGwt.java
pom.xml

index 1a3ebf6854734073c6303fa8ebd12d687ee7f8a9..a01a9923ceaa87217120f20249b7c5a080954f5a 100644 (file)
@@ -58,23 +58,23 @@ public class GQueryJsInteropTestGwt extends GWTTestCase {
     }
   }
 
-  @JsType(prototype = "Window", isNative = true)
+  @JsType(prototype = "Window")
   public interface HTMLWindow {
       @JsProperty String getName();
       @JsProperty void setName(String name);
   }
 
-  @JsType(prototype = "Window", isNative = true)
+  @JsType(prototype = "Window")
   public interface HWindow {
       @JsProperty HDocument document();
   }
 
-  @JsType(prototype = "HTMLDocument", isNative = false)
+  @JsType(prototype = "HTMLDocument")
   public interface HDocument {
       HElement createElement(String tag);
   }
   
-  @JsType(prototype = "HTMLElement", isNative = false)
+  @JsType(prototype = "HTMLElement")
   public interface HElement {
       @JsProperty void id(String s);
   }
diff --git a/pom.xml b/pom.xml
index ae507ddaa19c75803ba45918dc94130c623e07c1..db200cfcaac7ebc45475af1e5e765197a92a870d 100644 (file)
--- a/pom.xml
+++ b/pom.xml
     </repositories>
 
     <properties>
-        <gwtversion>2.7.0</gwtversion>
-        <gwtmaven>2.7.0</gwtmaven>
+        <gwtversion>2.8.0-SNAPSHOT</gwtversion>
+        <gwtmaven>2.8.0-SNAPSHOT</gwtmaven>
         <gqueryclassifier />
         <gwt.loglevel>INFO</gwt.loglevel>
         <gwt.outputstyle>OBF</gwt.outputstyle>