blob: b8026dcf669a366be60ced7b2f83bdcae46aee7f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
|
<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.googlecode.gwtquery</groupId>
<artifactId>gwtquery-project</artifactId>
<version>1.4.3-SNAPSHOT</version>
</parent>
<profiles>
<profile>
<!-- example:
$ mvn clean test -Ptest-prod
$ mvn clean test -Ptest-prod -Dgwt.test.htmlunit=FF17
valid emulations are FF17 IE8 IE9 Chrome, but only FF17 works.
-->
<id>test-prod</id>
<properties>
<productionMode>true</productionMode>
</properties>
</profile>
<profile>
<id>test-browser</id>
<properties>
<draftCompile>true</draftCompile>
<style>PRETTY</style>
<productionMode>true</productionMode>
<mode>manual</mode>
</properties>
</profile>
</profiles>
<artifactId>gwtquery</artifactId>
<packaging>jar</packaging>
<name>Gwt Query Core API</name>
<url>http://gquery.org</url>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.7</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-user</artifactId>
<version>${gwtversion}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-dev</artifactId>
<version>${gwtversion}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-elemental</artifactId>
<version>${gwtversion}</version>
</dependency>
</dependencies>
<build>
<resources>
<resource>
<directory>${basedir}/src/main/java</directory>
</resource>
<resource>
<directory>${basedir}/src/main/super</directory>
</resource>
<resource>
<directory>${project.build.directory}/generated-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>emma-maven-plugin</artifactId>
<version>1.0-alpha-1</version>
</plugin>
<!-- Skip normal test execution, we use gwt:test instead -->
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.18</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>gwt-maven-plugin</artifactId>
<version>${gwtmaven}</version>
<executions>
<execution>
<id>gwt-tests</id>
<phase>test</phase>
<goals>
<goal>test</goal>
</goals>
<configuration>
<checkAssertions>true</checkAssertions>
<draftCompile>true</draftCompile>
<gwtVersion>${gwtversion}</gwtVersion>
<productionMode>${productionMode}</productionMode>
<timeOut>300</timeOut>
<includes>**/GQueryGwtSuiteTest.java</includes>
<style>${style}</style>
<mode>${mode}</mode>
</configuration>
</execution>
</executions>
</plugin>
<!-- We include elemental json implementation for JVM so as people
using GQuery json builders and ajax in server side don't have
to include that dependency -->
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>unpack-dependencies</goal>
</goals>
<phase>generate-resources</phase>
<configuration>
<includeGroupIds>com.google.gwt</includeGroupIds>
<includeArtifactIds>gwt-elemental</includeArtifactIds>
<excludeTransitive>true</excludeTransitive>
<includes>elemental/json/**/*</includes>
<outputDirectory>${project.build.directory}/generated-resources</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
|