diff options
author | Manolo Carrasco <manolo@apache.org> | 2014-12-21 08:30:53 +0100 |
---|---|---|
committer | Manolo Carrasco <manolo@apache.org> | 2014-12-21 08:48:32 +0100 |
commit | 7a54cd8a80b59cfbe6f69bc782e14a23fa83625a (patch) | |
tree | 82510a2ab430da7360a65c5a0b3119061081c7be /devtest | |
parent | 8d14bba23b22cc88312dcefd6e2a8e9cabfb37b2 (diff) | |
download | gwtquery-7a54cd8a80b59cfbe6f69bc782e14a23fa83625a.tar.gz gwtquery-7a54cd8a80b59cfbe6f69bc782e14a23fa83625a.zip |
Implement API based on jQuery for special events
- SpecialEvents have an API with three methods: setup tearDown add remove
- Migrated mouse special events to use this API
Diffstat (limited to 'devtest')
-rw-r--r-- | devtest/pom.xml | 33 | ||||
-rw-r--r-- | devtest/src/main/java/com/google/gwt/query/DevTestRunner.gwt.xml | 1 |
2 files changed, 1 insertions, 33 deletions
diff --git a/devtest/pom.xml b/devtest/pom.xml index 2ba90061..36100cde 100644 --- a/devtest/pom.xml +++ b/devtest/pom.xml @@ -33,29 +33,12 @@ </dependency> </dependencies> <build> - <resources> - <resource> - <directory>${basedir}/src/main/java</directory> - </resource> - <resource> - <directory>${basedir}/src/main/resources</directory> - </resource> - </resources> - <testResources> - <testResource> - <directory>${basedir}/src/test/java</directory> - </testResource> - <testResource> - <directory>${basedir}/src/test/resources</directory> - </testResource> - </testResources> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>gwt-maven-plugin</artifactId> <version>${gwtmaven}</version> <configuration> - <!-- <style>PRETTY</style> --> <gwtVersion>${gwtversion}</gwtVersion> <modules> <module>com.google.gwt.query.DevTestRunner</module> @@ -73,22 +56,6 @@ </execution> </executions> </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-eclipse-plugin</artifactId> - <configuration> - <downloadSources>true</downloadSources> - <downloadJavadocs>false</downloadJavadocs> - <additionalBuildcommands> - <buildCommand> - <name>com.google.gwt.eclipse.core.gwtProjectValidator</name> - </buildCommand> - </additionalBuildcommands> - <additionalProjectnatures> - <projectnature>com.google.gwt.eclipse.core.gwtNature</projectnature> - </additionalProjectnatures> - </configuration> - </plugin> </plugins> <outputDirectory>${project.build.directory}/${project.build.finalName}/WEB-INF/classes</outputDirectory> </build> diff --git a/devtest/src/main/java/com/google/gwt/query/DevTestRunner.gwt.xml b/devtest/src/main/java/com/google/gwt/query/DevTestRunner.gwt.xml index b3ce809f..373d2f15 100644 --- a/devtest/src/main/java/com/google/gwt/query/DevTestRunner.gwt.xml +++ b/devtest/src/main/java/com/google/gwt/query/DevTestRunner.gwt.xml @@ -2,5 +2,6 @@ <inherits name='com.google.gwt.query.Query'/> <entry-point class='com.google.gwt.query.client.DevTestRunner'/> <set-property name="compiler.useSourceMaps" value="false"/> + <add-linker name="xsiframe"/> </module> |