aboutsummaryrefslogtreecommitdiffstats
path: root/devtest/pom.xml
diff options
context:
space:
mode:
authorManolo Carrasco <manolo@apache.org>2010-05-12 13:47:14 +0000
committerManolo Carrasco <manolo@apache.org>2010-05-12 13:47:14 +0000
commitbd9fe1c2531df1fb5682ace03197a1aa8ded2da4 (patch)
tree2ec903271e616ae9208cf03c3c47e6cdce3ed4e4 /devtest/pom.xml
parent5ecd54adf4d054d7e81208485ddae8ccec7206f6 (diff)
downloadgwtquery-bd9fe1c2531df1fb5682ace03197a1aa8ded2da4.tar.gz
gwtquery-bd9fe1c2531df1fb5682ace03197a1aa8ded2da4.zip
Added a module to speed up testing in development mode
Diffstat (limited to 'devtest/pom.xml')
-rw-r--r--devtest/pom.xml79
1 files changed, 79 insertions, 0 deletions
diff --git a/devtest/pom.xml b/devtest/pom.xml
new file mode 100644
index 00000000..2f9c6438
--- /dev/null
+++ b/devtest/pom.xml
@@ -0,0 +1,79 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>com.google.gwt</groupId>
+ <artifactId>gwtquery-project</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+ </parent>
+
+ <artifactId>devtest</artifactId>
+ <packaging>jar</packaging>
+ <name>dev-mode for testing</name>
+ <dependencies>
+ <dependency>
+ <groupId>${groupId}</groupId>
+ <artifactId>gwtquery</artifactId>
+ <version>${version}</version>
+ <type>jar</type>
+ <scope>provided</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>${groupId}</groupId>
+ <artifactId>gwtquery-plugins</artifactId>
+ <version>${version}</version>
+ <type>jar</type>
+ <scope>provided</scope>
+ </dependency>
+ </dependencies>
+ <build>
+ <outputDirectory>./target/www/WEB-INF/classes</outputDirectory>
+ <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>
+ <configuration>
+ <style>PRETTY</style>
+ <gwtVersion>${gwtversion}</gwtVersion>
+ <modules>
+ <module>com.google.gwt.query.DevTestRunner</module>
+ </modules>
+ <runTarget>test/test.html</runTarget>
+ <hostedWebapp>target/www</hostedWebapp>
+ <soyc>true</soyc>
+ </configuration>
+<!--
+ <executions>
+ <execution>
+ <phase>prepare-package</phase>
+ <goals>
+ <goal>compile</goal>
+ </goals>
+ </execution>
+ </executions>
+-->
+ </plugin>
+
+ </plugins>
+ </build>
+</project>