|
2 | 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
3 | 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
4 | 4 | <modelVersion>4.0.0</modelVersion>
|
5 |
| - |
| 5 | + <parent> |
| 6 | + <groupId>com.alipay.sofa.lookout</groupId> |
| 7 | + <artifactId>lookout-parent</artifactId> |
| 8 | + <version>1.6.0</version> |
| 9 | + </parent> |
6 | 10 | <groupId>com.alipay.sofa.lookout</groupId>
|
7 | 11 | <artifactId>lookout-client-parent</artifactId>
|
8 | 12 | <version>1.6.0</version>
|
|
23 | 27 | <cobertura.maven.plugin>2.6</cobertura.maven.plugin>
|
24 | 28 | <coveralls.maven.plugin>3.1.0</coveralls.maven.plugin>
|
25 | 29 | <maven.java.formatter.plugin>0.4</maven.java.formatter.plugin>
|
26 |
| - <maven.javadoc.plugin>2.9.1</maven.javadoc.plugin> |
27 |
| - |
28 | 30 | <metrics.client.version>1.6.0</metrics.client.version>
|
29 | 31 | </properties>
|
30 | 32 |
|
|
44 | 46 | </developer>
|
45 | 47 | </developers>
|
46 | 48 |
|
47 |
| - <scm> |
48 |
| - <connection>scm:git:git://github.com/alipay/sofa-lookout.git</connection> |
49 |
| - <developerConnection>scm:git:ssh://github.com/alipay/sofa-lookout.git</developerConnection> |
50 |
| - <url>https://github.com/alipay/sofa-lookout/tree/master</url> |
51 |
| - </scm> |
52 |
| - |
53 | 49 | <dependencyManagement>
|
54 | 50 | <!-- lookout client modules-->
|
55 | 51 | <dependencies>
|
|
208 | 204 | <plugin>
|
209 | 205 | <groupId>com.mycila</groupId>
|
210 | 206 | <artifactId>license-maven-plugin</artifactId>
|
211 |
| - <version>${license.maven.plugin}</version> |
212 |
| - <executions> |
213 |
| - <execution> |
214 |
| - <phase>generate-sources</phase> |
215 |
| - <goals> |
216 |
| - <goal>remove</goal> |
217 |
| - <goal>format</goal> |
218 |
| - </goals> |
219 |
| - </execution> |
220 |
| - </executions> |
221 |
| - <configuration> |
222 |
| - <quiet>true</quiet> |
223 |
| - <header>${user.dir}/HEADER</header> |
224 |
| - <includes> |
225 |
| - <include>**/src/main/java/**</include> |
226 |
| - <include>**/src/test/java/**</include> |
227 |
| - </includes> |
228 |
| - <excludes> |
229 |
| - <exclude>**/Step*.java</exclude> |
230 |
| - <exclude>**/Clock.java</exclude> |
231 |
| - </excludes> |
232 |
| - <strictCheck>true</strictCheck> |
233 |
| - <mapping> |
234 |
| - <java>SLASHSTAR_STYLE</java> |
235 |
| - </mapping> |
236 |
| - </configuration> |
237 | 207 | </plugin>
|
238 | 208 | <plugin>
|
239 | 209 | <groupId>org.apache.maven.plugins</groupId>
|
240 | 210 | <artifactId>maven-jar-plugin</artifactId>
|
241 |
| - <version>2.2</version> |
242 | 211 | </plugin>
|
243 | 212 | <plugin>
|
244 | 213 | <groupId>org.apache.maven.plugins</groupId>
|
|
253 | 222 | <plugin>
|
254 | 223 | <groupId>org.apache.maven.plugins</groupId>
|
255 | 224 | <artifactId>maven-source-plugin</artifactId>
|
256 |
| - <version>2.0.2</version> |
257 |
| - <executions> |
258 |
| - <execution> |
259 |
| - <id>attach-sources</id> |
260 |
| - <goals> |
261 |
| - <goal>jar</goal> |
262 |
| - </goals> |
263 |
| - </execution> |
264 |
| - </executions> |
265 | 225 | </plugin>
|
266 | 226 | <plugin>
|
267 | 227 | <groupId>org.apache.maven.plugins</groupId>
|
268 | 228 | <artifactId>maven-surefire-plugin</artifactId>
|
269 |
| - <version>2.21.0</version> |
270 |
| - <configuration> |
271 |
| - <includes> |
272 |
| - <include>**/*Test*.java</include> |
273 |
| - </includes> |
274 |
| - </configuration> |
275 |
| - </plugin> |
276 |
| - <plugin> |
277 |
| - <groupId>org.apache.maven.plugins</groupId> |
278 |
| - <artifactId>maven-javadoc-plugin</artifactId> |
279 |
| - <version>${maven.javadoc.plugin}</version> |
280 |
| - <executions> |
281 |
| - <execution> |
282 |
| - <id>attach-javadocs</id> |
283 |
| - <goals> |
284 |
| - <goal>jar</goal> |
285 |
| - </goals> |
286 |
| - </execution> |
287 |
| - </executions> |
288 |
| - <configuration> |
289 |
| - <additionalparam>-Xdoclint:none</additionalparam> |
290 |
| - </configuration> |
291 | 229 | </plugin>
|
292 | 230 | <plugin>
|
293 | 231 | <groupId>com.googlecode.maven-java-formatter-plugin</groupId>
|
294 | 232 | <artifactId>maven-java-formatter-plugin</artifactId>
|
295 |
| - <version>${maven.java.formatter.plugin}</version> |
296 |
| - <executions> |
297 |
| - <execution> |
298 |
| - <goals> |
299 |
| - <goal>format</goal> |
300 |
| - </goals> |
301 |
| - </execution> |
302 |
| - </executions> |
303 |
| - <configuration> |
304 |
| - <configFile>${user.dir}/Formatter.xml</configFile> |
305 |
| - <encoding>${project.encoding}</encoding> |
306 |
| - </configuration> |
307 | 233 | </plugin>
|
308 | 234 | <plugin>
|
309 | 235 | <groupId>org.eluder.coveralls</groupId>
|
310 | 236 | <artifactId>coveralls-maven-plugin</artifactId>
|
311 |
| - <version>${coveralls.maven.plugin}</version> |
312 |
| - <configuration> |
313 |
| - <sourceEncoding>${project.encoding}</sourceEncoding> |
314 |
| - </configuration> |
315 | 237 | </plugin>
|
316 | 238 |
|
317 | 239 | <plugin>
|
318 | 240 | <groupId>org.codehaus.mojo</groupId>
|
319 | 241 | <artifactId>cobertura-maven-plugin</artifactId>
|
320 |
| - <version>${cobertura.maven.plugin}</version> |
321 |
| - <configuration> |
322 |
| - <encoding>${project.encoding}</encoding> |
323 |
| - <aggregate>true</aggregate> |
324 |
| - <formats> |
325 |
| - <format>xml</format> |
326 |
| - <format>html</format> |
327 |
| - </formats> |
328 |
| - </configuration> |
| 242 | + </plugin> |
| 243 | + <plugin> |
| 244 | + <groupId>org.apache.maven.plugins</groupId> |
| 245 | + <artifactId>maven-javadoc-plugin</artifactId> |
329 | 246 | </plugin>
|
330 | 247 | </plugins>
|
331 | 248 | </build>
|
332 | 249 |
|
333 |
| - |
334 |
| - <profiles> |
335 |
| - <profile> |
336 |
| - <id>release</id> |
337 |
| - <build> |
338 |
| - <plugins> |
339 |
| - <plugin> |
340 |
| - <groupId>org.sonatype.plugins</groupId> |
341 |
| - <artifactId>nexus-staging-maven-plugin</artifactId> |
342 |
| - <version>1.6.7</version> |
343 |
| - <extensions>true</extensions> |
344 |
| - <configuration> |
345 |
| - <serverId>ossrh</serverId> |
346 |
| - <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
347 |
| - <autoReleaseAfterClose>false</autoReleaseAfterClose> |
348 |
| - </configuration> |
349 |
| - </plugin> |
350 |
| - <plugin> |
351 |
| - <groupId>org.apache.maven.plugins</groupId> |
352 |
| - <artifactId>maven-gpg-plugin</artifactId> |
353 |
| - <version>1.5</version> |
354 |
| - <executions> |
355 |
| - <execution> |
356 |
| - <id>sign-artifacts</id> |
357 |
| - <phase>verify</phase> |
358 |
| - <goals> |
359 |
| - <goal>sign</goal> |
360 |
| - </goals> |
361 |
| - </execution> |
362 |
| - </executions> |
363 |
| - </plugin> |
364 |
| - </plugins> |
365 |
| - </build> |
366 |
| - <distributionManagement> |
367 |
| - <snapshotRepository> |
368 |
| - <id>ossrh</id> |
369 |
| - <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
370 |
| - </snapshotRepository> |
371 |
| - <repository> |
372 |
| - <id>ossrh</id> |
373 |
| - <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
374 |
| - </repository> |
375 |
| - </distributionManagement> |
376 |
| - </profile> |
377 |
| - </profiles> |
378 | 250 | </project>
|
0 commit comments