|
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</version> |
| 9 | + <version>8.0.0</version> |
10 | 10 | <description>Library for common XD* operations and objects</description> |
11 | 11 | <inceptionYear>2010</inceptionYear> |
12 | 12 | <url>https://github.com/DirectProjectJavaRI/xd-common</url> |
|
31 | 31 | </license> |
32 | 32 | </licenses> |
33 | 33 | <prerequisites> |
34 | | - <maven>3.0.0</maven> |
| 34 | + <maven>3.5.0</maven> |
35 | 35 | </prerequisites> |
36 | | - <parent> |
| 36 | + <parent> |
37 | 37 | <groupId>org.springframework.boot</groupId> |
38 | 38 | <artifactId>spring-boot-dependencies</artifactId> |
39 | | - <version>2.1.2.RELEASE</version> |
40 | | - </parent> |
| 39 | + <version>2.5.2</version> |
| 40 | + <relativePath /> |
| 41 | + </parent> |
41 | 42 | <scm> |
42 | 43 | <url>https://github.com/DirectProjectJavaRI/xd-common.git</url> |
43 | 44 | <connection>scm:hg:https://github.com/DirectProjectJavaRI/xd-common.git</connection> |
44 | 45 | </scm> |
| 46 | + <properties> |
| 47 | + <javax-mail.version>1.6.2</javax-mail.version> |
| 48 | + <commons-io.version>2.8.0</commons-io.version> |
| 49 | + </properties> |
45 | 50 | <dependencies> |
46 | 51 | <dependency> |
47 | 52 | <groupId>org.springframework.boot</groupId> |
|
50 | 55 | <dependency> |
51 | 56 | <groupId>org.nhind</groupId> |
52 | 57 | <artifactId>config-service-client</artifactId> |
53 | | - <version>6.0</version> |
| 58 | + <version>8.0.0</version> |
54 | 59 | <scope>compile</scope> |
55 | 60 | </dependency> |
56 | 61 | <dependency> |
|
60 | 65 | <dependency> |
61 | 66 | <groupId>commons-io</groupId> |
62 | 67 | <artifactId>commons-io</artifactId> |
63 | | - <version>2.6</version> |
64 | | - </dependency> |
65 | | - <dependency> |
66 | | - <groupId>junit</groupId> |
67 | | - <artifactId>junit</artifactId> |
68 | | - <scope>test</scope> |
| 68 | + <version>${commons-io.version}</version> |
| 69 | + </dependency> |
| 70 | + <dependency> |
| 71 | + <groupId>com.sun.mail</groupId> |
| 72 | + <artifactId>javax.mail</artifactId> |
| 73 | + <version>${javax-mail.version}</version> |
69 | 74 | </dependency> |
70 | | - <dependency> |
71 | | - <groupId>javax.mail</groupId> |
72 | | - <artifactId>mail</artifactId> |
73 | | - <version>1.4.3</version> |
74 | | - <scope>compile</scope> |
75 | | - </dependency> |
76 | 75 | <dependency> |
77 | 76 | <groupId>commons-codec</groupId> |
78 | 77 | <artifactId>commons-codec</artifactId> |
|
85 | 84 | <dependency> |
86 | 85 | <groupId>org.nhind</groupId> |
87 | 86 | <artifactId>config-service-jar</artifactId> |
88 | | - <version>6.0</version> |
| 87 | + <version>8.0.0</version> |
89 | 88 | <scope>test</scope> |
90 | 89 | </dependency> |
91 | 90 | <dependency> |
92 | 91 | <groupId>org.springframework.boot</groupId> |
93 | 92 | <artifactId>spring-boot-starter-test</artifactId> |
94 | 93 | <scope>test</scope> |
95 | 94 | </dependency> |
| 95 | + <dependency> |
| 96 | + <groupId>org.springframework.boot</groupId> |
| 97 | + <artifactId>spring-boot-starter-security</artifactId> |
| 98 | + <scope>test</scope> |
| 99 | + </dependency> |
96 | 100 | <dependency> |
97 | | - <groupId>commons-dbcp</groupId> |
98 | | - <artifactId>commons-dbcp</artifactId> |
99 | | - <version>1.4</version> |
100 | | - <scope>test</scope> |
101 | | - </dependency> |
102 | | - <dependency> |
103 | | - <groupId>org.hsqldb</groupId> |
104 | | - <artifactId>hsqldb</artifactId> |
105 | | - <scope>test</scope> |
| 101 | + <groupId>com.h2database</groupId> |
| 102 | + <artifactId>h2</artifactId> |
| 103 | + <scope>test</scope> |
106 | 104 | </dependency> |
107 | | - <dependency> |
108 | | - <groupId>org.apache.camel</groupId> |
109 | | - <artifactId>camel-spring-boot-starter</artifactId> |
110 | | - <version>2.22.0</version> |
111 | | - <scope>test</scope> |
112 | | - </dependency> |
| 105 | + <dependency> |
| 106 | + <groupId>io.r2dbc</groupId> |
| 107 | + <artifactId>r2dbc-h2</artifactId> |
| 108 | + <scope>test</scope> |
| 109 | + </dependency> |
113 | 110 | </dependencies> |
114 | 111 |
|
115 | 112 | <build> |
|
198 | 195 | <plugin> |
199 | 196 | <groupId>org.apache.maven.plugins</groupId> |
200 | 197 | <artifactId>maven-jxr-plugin</artifactId> |
| 198 | + <version>3.1.1</version> |
201 | 199 | </plugin> |
202 | 200 | <plugin> |
203 | 201 | <groupId>org.apache.maven.plugins</groupId> |
|
213 | 211 | <plugin> |
214 | 212 | <groupId>org.apache.maven.plugins</groupId> |
215 | 213 | <artifactId>maven-javadoc-plugin</artifactId> |
216 | | - <version>2.6.1</version> |
217 | 214 | <configuration> |
218 | | - <additionalparam>-Xdoclint:none</additionalparam> |
| 215 | + <additionalJOption>-Xdoclint:none</additionalJOption> |
219 | 216 | <charset>UTF-8</charset> |
220 | 217 | <docencoding>UTF-8</docencoding> |
221 | 218 | <docfilessubdirs>true</docfilessubdirs> |
|
250 | 247 | </goals> |
251 | 248 | </execution> |
252 | 249 | </executions> |
| 250 | + <version>3.0.1</version> |
253 | 251 | </plugin> |
254 | 252 | --> |
255 | 253 | </plugins> |
|
260 | 258 | <plugin> |
261 | 259 | <groupId>org.apache.maven.plugins</groupId> |
262 | 260 | <artifactId>maven-project-info-reports-plugin</artifactId> |
263 | | - <version>2.9</version> |
264 | 261 | </plugin> |
265 | 262 | <plugin> |
266 | 263 | <groupId>org.apache.maven.plugins</groupId> |
267 | 264 | <artifactId>maven-javadoc-plugin</artifactId> |
268 | | - <version>2.6.1</version> |
269 | 265 | <configuration> |
270 | | - <additionalparam>-Xdoclint:none</additionalparam> |
| 266 | + <additionalJOption>-Xdoclint:none</additionalJOption> |
271 | 267 | <charset>UTF-8</charset> |
272 | 268 | <docencoding>UTF-8</docencoding> |
273 | 269 | <docfilessubdirs>true</docfilessubdirs> |
|
294 | 290 | <plugin> |
295 | 291 | <groupId>org.apache.maven.plugins</groupId> |
296 | 292 | <artifactId>maven-jxr-plugin</artifactId> |
| 293 | + <version>3.1.1</version> |
297 | 294 | </plugin> |
298 | 295 | <plugin> |
299 | 296 | <groupId>org.codehaus.mojo</groupId> |
|
0 commit comments