diff options
author | Ray Cromwell <cromwellian@gmail.com> | 2008-06-03 07:18:45 +0000 |
---|---|---|
committer | Ray Cromwell <cromwellian@gmail.com> | 2008-06-03 07:18:45 +0000 |
commit | e706b8b5da89557e0476b8e43300a59eeb98954d (patch) | |
tree | 43dbc4621950be87aefa69a941c8598b9f901a0f /samples/pom.xml | |
parent | 135769dca69b8664006e76f6b8f039dfb59cf009 (diff) | |
download | gwtquery-e706b8b5da89557e0476b8e43300a59eeb98954d.tar.gz gwtquery-e706b8b5da89557e0476b8e43300a59eeb98954d.zip |
Refactoring for 0.2 release
Diffstat (limited to 'samples/pom.xml')
-rw-r--r-- | samples/pom.xml | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/samples/pom.xml b/samples/pom.xml new file mode 100644 index 00000000..0859ac53 --- /dev/null +++ b/samples/pom.xml @@ -0,0 +1,65 @@ +<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>gwtquery</groupId> + <artifactId>gwtquery-project</artifactId> + <version>0.2-SNAPSHOT</version> + </parent> + + <name>GwtQuery Samples</name> + <artifactId>gwtquery-samples</artifactId> + <packaging>jar</packaging> + <dependencies> + <dependency> + <groupId>${groupId}</groupId> + <artifactId>gwtquery</artifactId> + <version>${version}</version> + <type>jar</type> + </dependency> + + </dependencies> + <build> + <plugins> + <plugin> + <groupId>com.totsp.gwt</groupId> + <artifactId>maven-googlewebtoolkit2-plugin</artifactId> + <configuration> + <gwtVersion>${gwtversion}</gwtVersion> + <logLevel>INFO</logLevel> + <runTarget> + gwtquery.samples.GQueryDemo/index.html + </runTarget> + <compileTargets> + <compileTarget> + gwtquery.samples.GQueryDemo + </compileTarget> + <compileTarget> + gwtquery.samples.GQueryBench + </compileTarget> + <compileTarget> + gwtquery.samples.GQuerySample + </compileTarget> + </compileTargets> + <style>OBF</style> + </configuration> + <executions> + <execution> + <id>setupgwt</id> + <phase>validate</phase> + <goals> + <goal>setup</goal> + <goal>extractGwt</goal> + </goals> + </execution> + <execution> + <id>compilegwt</id> + <goals> + <goal>compile</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + </build> + +</project> |