|
4 | 4 | <modelVersion>4.0.0</modelVersion> |
5 | 5 | <artifactId>gateway</artifactId> |
6 | 6 | <name>Direct Project Agent Gateways.</name> |
7 | | - <version>6.0.1</version> |
| 7 | + <version>6.0.2</version> |
8 | 8 | <description>Direct Project security agent gateways and bridges.</description> |
9 | 9 | <inceptionYear>2010</inceptionYear> |
10 | 10 | <url>https://github.com/DirectProjectJavaRI/gateway</url> |
|
28 | 28 | <parent> |
29 | 29 | <groupId>org.springframework.boot</groupId> |
30 | 30 | <artifactId>spring-boot-dependencies</artifactId> |
31 | | - <version>2.1.2.RELEASE</version> |
| 31 | + <version>2.1.3.RELEASE</version> |
32 | 32 | </parent> |
33 | 33 | <scm> |
34 | 34 | <url>https://nhin-d.googlecode.com/hg/java/gateway/</url> |
|
45 | 45 | <dependency> |
46 | 46 | <groupId>org.springframework.boot</groupId> |
47 | 47 | <artifactId>spring-boot-dependencies</artifactId> |
48 | | - <version>2.1.2.RELEASE</version> |
| 48 | + <version>2.1.3.RELEASE</version> |
49 | 49 | <type>pom</type> |
50 | 50 | <scope>import</scope> |
51 | 51 | </dependency> |
52 | 52 | <dependency> |
53 | 53 | <groupId>org.springframework.cloud</groupId> |
54 | 54 | <artifactId>spring-cloud-starter-parent</artifactId> |
55 | | - <version>Greenwich.RELEASE</version> |
| 55 | + <version>Greenwich.SR1</version> |
56 | 56 | <type>pom</type> |
57 | 57 | <scope>import</scope> |
58 | 58 | </dependency> |
|
62 | 62 | <dependency> |
63 | 63 | <groupId>org.nhind</groupId> |
64 | 64 | <artifactId>agent</artifactId> |
65 | | - <version>6.0.1</version> |
| 65 | + <version>6.0.2</version> |
66 | 66 | </dependency> |
67 | 67 | <dependency> |
68 | 68 | <groupId>org.nhind</groupId> |
|
103 | 103 | <dependency> |
104 | 104 | <groupId>org.nhind</groupId> |
105 | 105 | <artifactId>agent</artifactId> |
106 | | - <version>6.0</version> |
| 106 | + <version>6.0.2</version> |
107 | 107 | <type>test-jar</type> |
108 | 108 | <scope>test</scope> |
109 | 109 | </dependency> |
|
156 | 156 | <dependency> |
157 | 157 | <groupId>org.nhind</groupId> |
158 | 158 | <artifactId>config-service-jar</artifactId> |
159 | | - <version>6.0</version> |
| 159 | + <version>6.0.1</version> |
160 | 160 | <scope>test</scope> |
161 | 161 | </dependency> |
162 | 162 | <dependency> |
|
288 | 288 | <!--<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> --> |
289 | 289 | </archive> |
290 | 290 | </configuration> |
291 | | - </plugin> |
292 | | - <!-- DOXIA does not yet copy resources to the generated-site or site location. Bug |
293 | | - DOXIA-355 was submitted in July of 09 and is listed to be resolved in DOXIA 1.2. |
294 | | - This plugin a is work around for copying the resources from the book source to |
295 | | - the generate site. --> |
296 | | - <plugin> |
297 | | - <groupId>org.apache.maven.plugins</groupId> |
298 | | - <artifactId>maven-antrun-plugin</artifactId> |
299 | | - <executions> |
300 | | - <execution> |
301 | | - <id>book</id> |
302 | | - <phase>pre-site</phase> |
303 | | - <configuration> |
304 | | - <tasks> |
305 | | - <copy todir="${project.build.directory}/generated-site/xdoc/users-guide/images/"> |
306 | | - <fileset dir="${basedir}/src/books/users-guide/images/" /> |
307 | | - </copy> |
308 | | - <copy todir="${project.build.directory}/site/users-guide/images/"> |
309 | | - <fileset dir="${basedir}/src/books/users-guide/images/" /> |
310 | | - </copy> |
311 | | - </tasks> |
312 | | - </configuration> |
313 | | - <goals> |
314 | | - <goal>run</goal> |
315 | | - </goals> |
316 | | - </execution> |
317 | | - </executions> |
318 | | - </plugin> |
319 | | - <plugin> |
320 | | - <groupId>org.apache.maven.doxia</groupId> |
321 | | - <artifactId>doxia-maven-plugin</artifactId> |
322 | | - <version>1.2</version> |
323 | | - <executions> |
324 | | - <execution> |
325 | | - <phase>pre-site</phase> |
326 | | - <goals> |
327 | | - <goal>render-books</goal> |
328 | | - </goals> |
329 | | - </execution> |
330 | | - </executions> |
331 | | - <configuration> |
332 | | - <books> |
333 | | - <book> |
334 | | - <directory>src/books/users-guide</directory> |
335 | | - <descriptor>src/books/users-guide.xml</descriptor> |
336 | | - <formats> |
337 | | - <format> |
338 | | - <id>xdoc</id> |
339 | | - </format> |
340 | | - </formats> |
341 | | - </book> |
342 | | - </books> |
343 | | - </configuration> |
344 | | - <dependencies> |
345 | | - <dependency> |
346 | | - <groupId>org.codehaus.plexus</groupId> |
347 | | - <artifactId>plexus-utils</artifactId> |
348 | | - <version>1.5.12</version> |
349 | | - </dependency> |
350 | | - <dependency> |
351 | | - <groupId>org.apache.maven.doxia</groupId> |
352 | | - <artifactId>doxia-decoration-model</artifactId> |
353 | | - <version>1.2</version> |
354 | | - </dependency> |
355 | | - <dependency> |
356 | | - <groupId>org.apache.maven.doxia</groupId> |
357 | | - <artifactId>doxia-module-confluence</artifactId> |
358 | | - <version>1.2</version> |
359 | | - </dependency> |
360 | | - </dependencies> |
361 | | - </plugin> |
| 291 | + </plugin> |
362 | 292 | <plugin> |
363 | 293 | <groupId>org.apache.maven.plugins</groupId> |
364 | 294 | <artifactId>maven-javadoc-plugin</artifactId> |
365 | | - <version>2.6.1</version> |
| 295 | + <version>2.9.1</version> |
366 | 296 | <configuration> |
367 | 297 | <additionalparam>-Xdoclint:none</additionalparam> |
368 | 298 | <charset>UTF-8</charset> |
|
413 | 343 | <plugin> |
414 | 344 | <groupId>org.apache.maven.plugins</groupId> |
415 | 345 | <artifactId>maven-javadoc-plugin</artifactId> |
416 | | - <version>2.6.1</version> |
| 346 | + <version>2.9.1</version> |
417 | 347 | <configuration> |
418 | 348 | <additionalparam>-Xdoclint:none</additionalparam> |
419 | 349 | <charset>UTF-8</charset> |
|
0 commit comments