|
3 | 3 | <modelVersion>4.0.0</modelVersion> |
4 | 4 | <groupId>org.nhind</groupId> |
5 | 5 | <artifactId>config-service-client</artifactId> |
6 | | - <version>6.0</version> |
| 6 | + <version>8.0.0</version> |
7 | 7 | <packaging>jar</packaging> |
8 | 8 | <name>NHIN Direct Java config service client proxy</name> |
9 | 9 | <description>NHIN Direct Java config service client proxy</description> |
10 | 10 | <url>http://api.nhindirect.org/x/www/api.nhindirect.org/java/site/config/config-service-client/${project.version}</url> |
11 | | - <parent> |
| 11 | + <parent> |
12 | 12 | <groupId>org.springframework.boot</groupId> |
13 | 13 | <artifactId>spring-boot-dependencies</artifactId> |
14 | | - <version>2.1.2.RELEASE</version> |
15 | | - </parent> |
| 14 | + <version>2.5.2</version> |
| 15 | + <relativePath /> |
| 16 | + </parent> |
16 | 17 | <scm> |
17 | 18 | <url>scm:git:https://github.com/DirectProjectJavaRI/config-service-client.git</url> |
18 | 19 | <connection>scm:git:https://github.com/DirectProjectJavaRI/config-service-client.git</connection> |
|
28 | 29 | </developer> |
29 | 30 | </developers> |
30 | 31 | <prerequisites> |
31 | | - <maven>3.0.0</maven> |
| 32 | + <maven>3.5.0</maven> |
32 | 33 | </prerequisites> |
33 | 34 | <licenses> |
34 | 35 | <license> |
35 | 36 | <name>New BSD License</name> |
36 | 37 | <url>http://nhindirect.org/BSDLicense</url> |
37 | 38 | </license> |
38 | | - </licenses> |
39 | | - |
| 39 | + </licenses> |
40 | 40 | <properties> |
41 | 41 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
42 | | - <spring-cloud-dependencies.version>Greenwich.RELEASE</spring-cloud-dependencies.version> |
| 42 | + <spring-cloud-dependencies.version>2020.0.3</spring-cloud-dependencies.version> |
43 | 43 | </properties> |
44 | 44 | <dependencyManagement> |
45 | 45 | <dependencies> |
|
60 | 60 | <dependency> |
61 | 61 | <groupId>org.nhind</groupId> |
62 | 62 | <artifactId>config-model</artifactId> |
63 | | - <version>6.0</version> |
| 63 | + <version>8.0.0</version> |
64 | 64 | </dependency> |
65 | 65 | <dependency> |
66 | 66 | <groupId>org.nhind</groupId> |
67 | 67 | <artifactId>direct-common</artifactId> |
68 | | - <version>6.0</version> |
| 68 | + <version>8.0.0</version> |
69 | 69 | </dependency> |
70 | 70 | <dependency> |
71 | 71 | <groupId>org.springframework.cloud</groupId> |
72 | 72 | <artifactId>spring-cloud-starter-openfeign</artifactId> |
73 | | - <exclusions> |
74 | | - <exclusion> |
75 | | - <groupId>org.bouncycastle</groupId> |
76 | | - <artifactId>bcpkix-jdk15on</artifactId> |
77 | | - </exclusion> |
78 | | - </exclusions> |
79 | 73 | </dependency> |
80 | 74 | <dependency> |
81 | 75 | <groupId>org.springframework.boot</groupId> |
82 | 76 | <artifactId>spring-boot-starter-test</artifactId> |
83 | 77 | <scope>test</scope> |
84 | | - </dependency> |
85 | | - <dependency> |
86 | | - <groupId>org.apache.camel</groupId> |
87 | | - <artifactId>camel-spring-boot-starter</artifactId> |
88 | | - <version>2.22.0</version> |
89 | | - <scope>test</scope> |
90 | 78 | </dependency> |
91 | | - <dependency> |
92 | | - <groupId>junit</groupId> |
93 | | - <artifactId>junit</artifactId> |
94 | | - <scope>test</scope> |
95 | | - </dependency> |
96 | | - <dependency> |
97 | | - <groupId>org.apache.mina</groupId> |
98 | | - <artifactId>mina-core</artifactId> |
99 | | - <version>1.0.2</version> |
100 | | - <scope>test</scope> |
101 | | - </dependency> |
102 | | - <dependency> |
103 | | - <groupId>dnsjava</groupId> |
104 | | - <artifactId>dnsjava</artifactId> |
105 | | - <version>2.0.8</version> |
106 | | - <scope>test</scope> |
107 | | - </dependency> |
108 | 79 | <dependency> |
109 | 80 | <groupId>org.nhind</groupId> |
110 | 81 | <artifactId>config-service-jar</artifactId> |
111 | | - <version>6.0</version> |
| 82 | + <version>8.0.0</version> |
112 | 83 | <scope>test</scope> |
113 | | - </dependency> |
114 | | - <dependency> |
115 | | - <groupId>org.mockito</groupId> |
116 | | - <artifactId>mockito-core</artifactId> |
117 | | - <scope>test</scope> |
118 | | - </dependency> |
| 84 | + </dependency> |
119 | 85 | <dependency> |
120 | 86 | <groupId>com.h2database</groupId> |
121 | 87 | <artifactId>h2</artifactId> |
122 | 88 | <scope>test</scope> |
123 | | - </dependency> |
| 89 | + </dependency> |
| 90 | + <dependency> |
| 91 | + <groupId>io.r2dbc</groupId> |
| 92 | + <artifactId>r2dbc-h2</artifactId> |
| 93 | + <scope>test</scope> |
| 94 | + </dependency> |
| 95 | + <dependency> |
| 96 | + <groupId>org.springframework.boot</groupId> |
| 97 | + <artifactId>spring-boot-starter-tomcat</artifactId> |
| 98 | + <scope>test</scope> |
| 99 | + </dependency> |
| 100 | + <dependency> |
| 101 | + <groupId>org.springframework.boot</groupId> |
| 102 | + <artifactId>spring-boot-starter-webflux</artifactId> |
| 103 | + <scope>test</scope> |
| 104 | + </dependency> |
| 105 | + <dependency> |
| 106 | + <groupId>org.springframework</groupId> |
| 107 | + <artifactId>spring-webmvc</artifactId> |
| 108 | + <scope>test</scope> |
| 109 | + </dependency> |
| 110 | + <dependency> |
| 111 | + <groupId>org.springframework.boot</groupId> |
| 112 | + <artifactId>spring-boot-starter-security</artifactId> |
| 113 | + <scope>test</scope> |
| 114 | + </dependency> |
124 | 115 | </dependencies> |
125 | 116 | <build> |
126 | 117 | <pluginManagement> |
|
151 | 142 | <plugin> |
152 | 143 | <groupId>org.apache.maven.plugins</groupId> |
153 | 144 | <artifactId>maven-javadoc-plugin</artifactId> |
154 | | - <version>2.6.1</version> |
155 | 145 | <configuration> |
156 | | - <additionalparam>-Xdoclint:none</additionalparam> |
| 146 | + <additionalJOption>-Xdoclint:none</additionalJOption> |
157 | 147 | <charset>UTF-8</charset> |
158 | 148 | <docencoding>UTF-8</docencoding> |
159 | 149 | <docfilessubdirs>true</docfilessubdirs> |
|
185 | 175 | </goals> |
186 | 176 | </execution> |
187 | 177 | </executions> |
| 178 | + <version>3.0.1</version> |
188 | 179 | </plugin> |
189 | 180 | --> |
190 | 181 | </plugins> |
|
194 | 185 | <plugin> |
195 | 186 | <groupId>org.apache.maven.plugins</groupId> |
196 | 187 | <artifactId>maven-project-info-reports-plugin</artifactId> |
197 | | - <version>2.9</version> |
198 | 188 | </plugin> |
199 | 189 | <plugin> |
200 | 190 | <groupId>org.apache.maven.plugins</groupId> |
201 | 191 | <artifactId>maven-javadoc-plugin</artifactId> |
202 | | - <version>2.6.1</version> |
203 | 192 | <configuration> |
204 | | - <additionalparam>-Xdoclint:none</additionalparam> |
| 193 | + <additionalJOption>-Xdoclint:none</additionalJOption> |
205 | 194 | <charset>UTF-8</charset> |
206 | 195 | <docencoding>UTF-8</docencoding> |
207 | 196 | <docfilessubdirs>true</docfilessubdirs> |
|
225 | 214 | <plugin> |
226 | 215 | <groupId>org.apache.maven.plugins</groupId> |
227 | 216 | <artifactId>maven-jxr-plugin</artifactId> |
| 217 | + <version>3.1.1</version> |
228 | 218 | </plugin> |
229 | 219 | <plugin> |
230 | 220 | <groupId>org.codehaus.mojo</groupId> |
|
0 commit comments