|
6 | 6 | <modelVersion>4.0.0</modelVersion> |
7 | 7 | <artifactId>xd-common</artifactId> |
8 | 8 | <name>NHIN Direct XD* Common Library</name> |
9 | | - <version>6.0-SNAPSHOT</version> |
| 9 | + <version>6.0</version> |
10 | 10 | <description>Library for common XD* operations and objects</description> |
11 | 11 | <inceptionYear>2010</inceptionYear> |
12 | | - <url>http://api.nhindirect.org/x/www/api.nhindirect.org/java/site/xd-common/${project.version}</url> |
| 12 | + <url>https://github.com/DirectProjectJavaRI/xd-common</url> |
13 | 13 | <developers> |
14 | 14 | <developer> |
15 | 15 | <name>Vincent Lewis</name> |
|
37 | 37 | <groupId>org.springframework.boot</groupId> |
38 | 38 | <artifactId>spring-boot-dependencies</artifactId> |
39 | 39 | <version>2.1.2.RELEASE</version> |
40 | | - </parent> |
| 40 | + </parent> |
| 41 | + <scm> |
| 42 | + <url>https://github.com/DirectProjectJavaRI/xd-common.git</url> |
| 43 | + <connection>scm:hg:https://github.com/DirectProjectJavaRI/xd-common.git</connection> |
| 44 | + </scm> |
41 | 45 | <dependencies> |
42 | 46 | <dependency> |
43 | 47 | <groupId>org.springframework.boot</groupId> |
|
46 | 50 | <dependency> |
47 | 51 | <groupId>org.nhind</groupId> |
48 | 52 | <artifactId>config-service-client</artifactId> |
49 | | - <version>6.0-SNAPSHOT</version> |
| 53 | + <version>6.0</version> |
50 | 54 | <scope>compile</scope> |
51 | 55 | </dependency> |
52 | 56 | <dependency> |
|
81 | 85 | <dependency> |
82 | 86 | <groupId>org.nhind</groupId> |
83 | 87 | <artifactId>config-service-jar</artifactId> |
84 | | - <version>6.0-SNAPSHOT</version> |
| 88 | + <version>6.0</version> |
85 | 89 | <scope>test</scope> |
86 | 90 | </dependency> |
87 | 91 | <dependency> |
|
128 | 132 | </testResources> |
129 | 133 |
|
130 | 134 | <extensions> |
131 | | - <extension> |
132 | | - <groupId>org.apache.maven.wagon</groupId> |
133 | | - <artifactId>wagon-webdav</artifactId> |
134 | | - <version>RELEASE</version> |
135 | | - </extension> |
| 135 | + <extension> |
| 136 | + <groupId>org.apache.maven.wagon</groupId> |
| 137 | + <artifactId>wagon-webdav-jackrabbit</artifactId> |
| 138 | + <version>3.1.0</version> |
| 139 | + </extension> |
136 | 140 | </extensions> |
137 | 141 |
|
138 | 142 | <plugins> |
|
206 | 210 | </execution> |
207 | 211 | </executions> |
208 | 212 | </plugin> |
209 | | - <plugin> |
210 | | - <groupId>com.atlassian.maven.plugins</groupId> |
211 | | - <artifactId>maven-clover2-plugin</artifactId> |
212 | | - <version>3.0.2</version> |
213 | | - <configuration> |
214 | | - <jdk>1.8</jdk> |
215 | | - <licenseLocation> |
216 | | - ${project.basedir}/../licenses/clover.license |
217 | | - </licenseLocation> |
218 | | - <excludes> |
219 | | - <exclude>**/jaxb/*</exclude> |
220 | | - </excludes> |
221 | | - </configuration> |
222 | | - <executions> |
223 | | - <execution> |
224 | | - <phase>pre-site</phase> |
225 | | - <goals> |
226 | | - <goal>instrument</goal> |
227 | | - </goals> |
228 | | - </execution> |
229 | | - </executions> |
230 | | - </plugin> |
231 | | - <!-- for release only |
232 | 213 | <plugin> |
233 | 214 | <groupId>org.apache.maven.plugins</groupId> |
234 | 215 | <artifactId>maven-javadoc-plugin</artifactId> |
235 | 216 | <version>2.6.1</version> |
236 | 217 | <configuration> |
237 | | - <charset>UTF-8</charset> |
238 | | - <docencoding>UTF-8</docencoding> |
239 | | - <docfilessubdirs>true</docfilessubdirs> |
240 | | - <detectJavaApiLink>true</detectJavaApiLink> |
241 | | - <detectLinks>true</detectLinks> |
242 | | - <source>1.6</source> |
243 | | - <show>protected</show> |
| 218 | + <additionalparam>-Xdoclint:none</additionalparam> |
| 219 | + <charset>UTF-8</charset> |
| 220 | + <docencoding>UTF-8</docencoding> |
| 221 | + <docfilessubdirs>true</docfilessubdirs> |
| 222 | + <detectJavaApiLink>true</detectJavaApiLink> |
| 223 | + <detectLinks>true</detectLinks> |
| 224 | + <source>1.8</source> |
| 225 | + <show>public</show> |
244 | 226 | <excludePackageNames> |
245 | 227 | org.nhindirect.xd.transform.parse.ccd.jaxb |
246 | 228 | </excludePackageNames> |
|
255 | 237 | </execution> |
256 | 238 | </executions> |
257 | 239 | </plugin> |
| 240 | + <!-- for release only |
258 | 241 | <plugin> |
259 | 242 | <groupId>org.apache.maven.plugins</groupId> |
260 | 243 | <artifactId>maven-gpg-plugin</artifactId> |
|
269 | 252 | </executions> |
270 | 253 | </plugin> |
271 | 254 | --> |
272 | | - </plugins> |
273 | | - <pluginManagement> |
274 | | - <plugins> |
275 | | - <plugin> |
276 | | - <groupId>org.apache.maven.plugins</groupId> |
277 | | - <artifactId>maven-release-plugin</artifactId> |
278 | | - <version>2.0</version> |
279 | | - <configuration> |
280 | | - <tagBase>scm:hg:https://nhin-d.googlecode.com/hg/nhin-d/java/tags</tagBase> |
281 | | - </configuration> |
282 | | - </plugin> |
283 | | - </plugins> |
284 | | - </pluginManagement> |
| 255 | + </plugins> |
285 | 256 | </build> |
286 | 257 |
|
287 | 258 | <reporting> |
288 | 259 | <plugins> |
289 | 260 | <plugin> |
290 | 261 | <groupId>org.apache.maven.plugins</groupId> |
291 | 262 | <artifactId>maven-project-info-reports-plugin</artifactId> |
292 | | - <version>2.1</version> |
| 263 | + <version>2.9</version> |
293 | 264 | </plugin> |
294 | 265 | <plugin> |
295 | 266 | <groupId>org.apache.maven.plugins</groupId> |
296 | 267 | <artifactId>maven-javadoc-plugin</artifactId> |
297 | 268 | <version>2.6.1</version> |
298 | 269 | <configuration> |
299 | | - <charset>UTF-8</charset> |
300 | | - <docencoding>UTF-8</docencoding> |
301 | | - <docfilessubdirs>true</docfilessubdirs> |
302 | | - <detectJavaApiLink>true</detectJavaApiLink> |
303 | | - <detectLinks>true</detectLinks> |
304 | | - <source>1.8</source> |
305 | | - <show>protected</show> |
| 270 | + <additionalparam>-Xdoclint:none</additionalparam> |
| 271 | + <charset>UTF-8</charset> |
| 272 | + <docencoding>UTF-8</docencoding> |
| 273 | + <docfilessubdirs>true</docfilessubdirs> |
| 274 | + <detectJavaApiLink>true</detectJavaApiLink> |
| 275 | + <detectLinks>true</detectLinks> |
| 276 | + <source>1.8</source> |
| 277 | + <show>public</show> |
306 | 278 | <excludePackageNames> |
307 | 279 | org.nhindirect.xd.transform.parse.ccd.jaxb |
308 | 280 | </excludePackageNames> |
|
323 | 295 | <groupId>org.apache.maven.plugins</groupId> |
324 | 296 | <artifactId>maven-jxr-plugin</artifactId> |
325 | 297 | </plugin> |
326 | | - <plugin> |
327 | | - <groupId>org.apache.maven.plugins</groupId> |
328 | | - <artifactId>maven-changelog-plugin</artifactId> |
329 | | - <configuration> |
330 | | - <dates> |
331 | | - <!-- Insert the date of the most recent release --> |
332 | | - <date>2007-01-01</date> |
333 | | - </dates> |
334 | | - <outputEncoding>UTF-8</outputEncoding> |
335 | | - <type>date</type> |
336 | | - </configuration> |
337 | | - </plugin> |
338 | | - <plugin> |
339 | | - <groupId>org.codehaus.mojo</groupId> |
340 | | - <artifactId>clirr-maven-plugin</artifactId> |
341 | | - <configuration> |
342 | | - <minSeverity>info</minSeverity> |
343 | | - </configuration> |
344 | | - </plugin> |
345 | 298 | <plugin> |
346 | 299 | <groupId>org.codehaus.mojo</groupId> |
347 | 300 | <artifactId>findbugs-maven-plugin</artifactId> |
348 | | - <version>1.2</version> |
349 | 301 | <configuration> |
350 | 302 | <effort>Max</effort> |
351 | 303 | </configuration> |
|
362 | 314 | </tags> |
363 | 315 | </configuration> |
364 | 316 | </plugin> |
365 | | - <plugin> |
366 | | - <groupId>com.atlassian.maven.plugins</groupId> |
367 | | - <artifactId>maven-clover2-plugin</artifactId> |
368 | | - <version>3.0.2</version> |
369 | | - <configuration> |
370 | | - <licenseLocation> |
371 | | - ${project.basedir}/../licenses/clover.license |
372 | | - </licenseLocation> |
373 | | - </configuration> |
374 | | - </plugin> |
375 | 317 | </plugins> |
376 | 318 | </reporting> |
377 | 319 |
|
|
0 commit comments