|
4 | 4 | <modelVersion>4.0.0</modelVersion> |
5 | 5 | <artifactId>direct-msg-monitor</artifactId> |
6 | 6 | <name>Direct Project message monitor</name> |
7 | | - <version>6.0-SNAPSHOT</version> |
| 7 | + <version>6.0</version> |
8 | 8 | <description>Direct Project message monitor for timely and reliable messaging</description> |
9 | 9 | <inceptionYear>2010</inceptionYear> |
10 | 10 | <url>http://api.nhindirect.org/x/www/api.nhindirect.org/java/site/direct-msg-monitor/${project.version}</url> |
|
31 | 31 | <maven>3.0.0</maven> |
32 | 32 | </prerequisites> |
33 | 33 | <scm> |
34 | | - <url>http://code.google.com/p/nhin-d/source/browse/#hg/java/direct-msg-monitor</url> |
35 | | - <connection>scm:hg:https://nhin-d.googlecode.com/hg/nhin-d/java/direct-msg-monitor</connection> |
| 34 | + <url>scm:git:https://github.com/DirectProjectJavaRI/direct-msg-monitor.git</url> |
| 35 | + <connection>scm:git:https://github.com/DirectProjectJavaRI/direct-msg-monitor.git</connection> |
36 | 36 | </scm> |
37 | 37 | <licenses> |
38 | 38 | <license> |
39 | 39 | <name>New BSD License</name> |
40 | 40 | <url>http://nhindirect.org/BSDLicense</url> |
41 | 41 | </license> |
42 | | - </licenses> |
43 | | - <!-- Temp repository for Spring Boot Milestone --> |
44 | | - <repositories> |
45 | | - <repository> |
46 | | - <id>spring-milestone</id> |
47 | | - <name>Spring Milestone Releases</name> |
48 | | - <url>https://repo.spring.io/milestone/</url> |
49 | | - </repository> |
50 | | - </repositories> |
| 42 | + </licenses> |
51 | 43 | <properties> |
52 | 44 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
53 | 45 | <camel.version>2.22.0</camel.version> |
|
64 | 56 | <dependency> |
65 | 57 | <groupId>org.springframework.cloud</groupId> |
66 | 58 | <artifactId>spring-cloud-starter-parent</artifactId> |
67 | | - <version>Greenwich.RC1</version> |
| 59 | + <version>Greenwich.RELEASE</version> |
68 | 60 | <type>pom</type> |
69 | 61 | <scope>import</scope> |
70 | 62 | </dependency> |
|
123 | 115 | <dependency> |
124 | 116 | <groupId>org.nhind</groupId> |
125 | 117 | <artifactId>direct-common</artifactId> |
126 | | - <version>6.0-SNAPSHOT</version> |
| 118 | + <version>6.0</version> |
127 | 119 | </dependency> |
128 | 120 | <dependency> |
129 | 121 | <groupId>org.nhind</groupId> |
130 | 122 | <artifactId>direct-msg-monitor-model</artifactId> |
131 | | - <version>6.0-SNAPSHOT</version> |
| 123 | + <version>6.0</version> |
132 | 124 | </dependency> |
133 | 125 | <dependency> |
134 | 126 | <groupId>javax.mail</groupId> |
|
321 | 313 | </goals> |
322 | 314 | </execution> |
323 | 315 | </executions> |
324 | | - </plugin> |
325 | | - <plugin> |
326 | | - <groupId>com.atlassian.maven.plugins</groupId> |
327 | | - <artifactId>maven-clover2-plugin</artifactId> |
328 | | - <version>3.1.0</version> |
329 | | - <configuration> |
330 | | - <jdk>1.8</jdk> |
331 | | - <licenseLocation> |
332 | | - ${project.basedir}/../licenses/clover.license |
333 | | - </licenseLocation> |
334 | | - </configuration> |
335 | | - <executions> |
336 | | - <execution> |
337 | | - <phase>pre-site</phase> |
338 | | - <goals> |
339 | | - <goal>instrument</goal> |
340 | | - </goals> |
341 | | - </execution> |
342 | | - </executions> |
343 | | - </plugin> |
| 316 | + </plugin> |
344 | 317 | <plugin> |
345 | 318 | <groupId>org.apache.maven.plugins</groupId> |
346 | 319 | <artifactId>maven-jar-plugin</artifactId> |
|
404 | 377 | </dependency> |
405 | 378 | </dependencies> |
406 | 379 | </plugin> |
407 | | - <!-- for releases only |
408 | 380 | <plugin> |
409 | 381 | <groupId>org.apache.maven.plugins</groupId> |
410 | 382 | <artifactId>maven-javadoc-plugin</artifactId> |
411 | 383 | <version>2.6.1</version> |
412 | 384 | <configuration> |
413 | | - <charset>UTF-8</charset> |
414 | | - <docencoding>UTF-8</docencoding> |
415 | | - <docfilessubdirs>true</docfilessubdirs> |
416 | | - <detectJavaApiLink>true</detectJavaApiLink> |
417 | | - <detectLinks>true</detectLinks> |
418 | | - <source>1.8</source> |
419 | | - <show>public</show> |
| 385 | + <additionalparam>-Xdoclint:none</additionalparam> |
| 386 | + <charset>UTF-8</charset> |
| 387 | + <docencoding>UTF-8</docencoding> |
| 388 | + <docfilessubdirs>true</docfilessubdirs> |
| 389 | + <detectJavaApiLink>true</detectJavaApiLink> |
| 390 | + <detectLinks>true</detectLinks> |
| 391 | + <source>1.8</source> |
| 392 | + <show>public</show> |
420 | 393 | </configuration> |
421 | 394 | <executions> |
422 | 395 | <execution> |
|
431 | 404 | </execution> |
432 | 405 | </executions> |
433 | 406 | </plugin> |
| 407 | + <!-- for releases only |
434 | 408 | <plugin> |
435 | 409 | <groupId>org.apache.maven.plugins</groupId> |
436 | 410 | <artifactId>maven-gpg-plugin</artifactId> |
|
462 | 436 | <plugin> |
463 | 437 | <groupId>org.apache.maven.plugins</groupId> |
464 | 438 | <artifactId>maven-javadoc-plugin</artifactId> |
465 | | - <version>3.0.1</version> |
| 439 | + <version>2.6.1</version> |
466 | 440 | <configuration> |
467 | | - <charset>UTF-8</charset> |
468 | | - <docencoding>UTF-8</docencoding> |
469 | | - <docfilessubdirs>true</docfilessubdirs> |
470 | | - <detectJavaApiLink>true</detectJavaApiLink> |
471 | | - <detectLinks>true</detectLinks> |
472 | | - <source>1.8</source> |
473 | | - <show>public</show> |
474 | | - <excludePackageNames> |
475 | | - org.nhindirect.monitor.dao.impl:org.nhindirect.monitor.processor.impl |
476 | | - </excludePackageNames> |
| 441 | + <additionalparam>-Xdoclint:none</additionalparam> |
| 442 | + <charset>UTF-8</charset> |
| 443 | + <docencoding>UTF-8</docencoding> |
| 444 | + <docfilessubdirs>true</docfilessubdirs> |
| 445 | + <detectJavaApiLink>true</detectJavaApiLink> |
| 446 | + <detectLinks>true</detectLinks> |
| 447 | + <source>1.8</source> |
| 448 | + <show>public</show> |
| 449 | + <excludePackageNames> |
| 450 | + org.nhindirect.monitor.dao.impl:org.nhindirect.monitor.processor.impl:org.nhindirect.monitor.repository:org.nhindirect.monitor.springconfig |
| 451 | + </excludePackageNames> |
477 | 452 | </configuration> |
478 | 453 | </plugin> |
479 | 454 | <plugin> |
|
494 | 469 | <plugin> |
495 | 470 | <groupId>org.codehaus.mojo</groupId> |
496 | 471 | <artifactId>findbugs-maven-plugin</artifactId> |
497 | | - <version>1.2</version> |
498 | 472 | <configuration> |
499 | 473 | <effort>Max</effort> |
500 | 474 | <excludeFilterFile>${project.basedir}/src/report/findbugs-exclude.xml</excludeFilterFile> |
|
511 | 485 | <tag>@deprecated</tag> |
512 | 486 | </tags> |
513 | 487 | </configuration> |
514 | | - </plugin> |
515 | | - <plugin> |
516 | | - <groupId>com.atlassian.maven.plugins</groupId> |
517 | | - <artifactId>maven-clover2-plugin</artifactId> |
518 | | - <version>3.1.0</version> |
519 | | - <configuration> |
520 | | - <licenseLocation> |
521 | | - ${project.basedir}/../licenses/clover.license |
522 | | - </licenseLocation> |
523 | | - </configuration> |
524 | | - </plugin> |
| 488 | + </plugin> |
525 | 489 | </plugins> |
526 | 490 | </reporting> |
527 | 491 | <distributionManagement> |
|
0 commit comments