|
31 | 31 |
|
32 | 32 | <properties>
|
33 | 33 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
| 34 | + <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
34 | 35 | <maven.build.timestamp.format>yyyyMMddHHmm</maven.build.timestamp.format>
|
35 | 36 | <jetty.version>9.3.8.v20160314</jetty.version>
|
36 | 37 | <appengine.api.version>1.9.38</appengine.api.version>
|
37 | 38 | <docker.label.prefix>async-</docker.label.prefix>
|
38 |
| - <checkstyle.config.location>checkstyle/google-checks.xml</checkstyle.config.location> |
39 | 39 | </properties>
|
40 | 40 |
|
41 | 41 | <developers>
|
|
152 | 152 | <artifactId>docker-maven-plugin</artifactId>
|
153 | 153 | <version>0.3.2</version>
|
154 | 154 | </plugin>
|
| 155 | + |
155 | 156 | <plugin>
|
156 | 157 | <groupId>org.apache.maven.plugins</groupId>
|
157 | 158 | <artifactId>maven-surefire-plugin</artifactId>
|
158 | 159 | <version>2.18</version>
|
159 | 160 | </plugin>
|
160 | 161 |
|
161 |
| - <plugin> |
| 162 | + <plugin> |
162 | 163 | <groupId>org.apache.maven.plugins</groupId>
|
163 | 164 | <artifactId>maven-source-plugin</artifactId>
|
164 | 165 | <version>2.4</version>
|
|
198 | 199 | <artifactId>maven-deploy-plugin</artifactId>
|
199 | 200 | <version>2.8.2</version>
|
200 | 201 | </plugin>
|
| 202 | + |
201 | 203 | <plugin>
|
202 | 204 | <groupId>org.apache.maven.plugins</groupId>
|
203 | 205 | <artifactId>maven-release-plugin</artifactId>
|
|
226 | 228 | <goal>check</goal>
|
227 | 229 | </goals>
|
228 | 230 | <configuration>
|
| 231 | + <configLocation>checkstyle/google-checks.xml</configLocation> |
| 232 | + <suppressionsLocation>checkstyle/checkstyle-suppressions.xml</suppressionsLocation> |
229 | 233 | <consoleOutput>true</consoleOutput>
|
230 | 234 | <failOnViolation>true</failOnViolation>
|
231 | 235 | <violationSeverity>error</violationSeverity>
|
|
235 | 239 | </execution>
|
236 | 240 | </executions>
|
237 | 241 | </plugin>
|
| 242 | + <plugin> |
| 243 | + <groupId>org.apache.maven.plugins</groupId> |
| 244 | + <artifactId>maven-failsafe-plugin</artifactId> |
| 245 | + <version>2.19.1</version> |
| 246 | + <executions> |
| 247 | + <execution> |
| 248 | + <goals> |
| 249 | + <goal>integration-test</goal> |
| 250 | + <goal>verify</goal> |
| 251 | + </goals> |
| 252 | + </execution> |
| 253 | + </executions> |
| 254 | + <dependencies> |
| 255 | + <dependency> |
| 256 | + <groupId>org.apache.maven.surefire</groupId> |
| 257 | + <artifactId>surefire-junit47</artifactId> |
| 258 | + <version>2.19.1</version> |
| 259 | + </dependency> |
| 260 | + </dependencies> |
| 261 | + </plugin> |
238 | 262 | </plugins>
|
239 | 263 | </build>
|
240 | 264 |
|
|
0 commit comments