|
3 | 3 | <modelVersion>4.0.0</modelVersion> |
4 | 4 | <groupId>org.nhind</groupId> |
5 | 5 | <artifactId>config-service</artifactId> |
6 | | - <version>6.0</version> |
| 6 | + <version>8.0.0</version> |
7 | 7 | <packaging>jar</packaging> |
8 | 8 | <name>NHIN Direct Java RI config service spring boot application</name> |
9 | 9 | <description>NHIN Direct Java RI config service spring boot application</description> |
|
13 | 13 | <connection>scm:git:https://github.com/DirectProjectJavaRI/config-service.git</connection> |
14 | 14 | </scm> |
15 | 15 | <prerequisites> |
16 | | - <maven>3.0.0</maven> |
| 16 | + <maven>3.5.0</maven> |
17 | 17 | </prerequisites> |
18 | | - <parent> |
19 | | - <groupId>org.springframework.boot</groupId> |
20 | | - <artifactId>spring-boot-starter-parent</artifactId> |
21 | | - <version>2.1.2.RELEASE</version> |
22 | | - <relativePath /> |
23 | | - </parent> |
| 18 | + <parent> |
| 19 | + <groupId>org.springframework.boot</groupId> |
| 20 | + <artifactId>spring-boot-starter-parent</artifactId> |
| 21 | + <version>2.5.2</version> |
| 22 | + <relativePath /> |
| 23 | + </parent> |
24 | 24 | <developers> |
25 | 25 | <developer> |
26 | 26 | <name>Greg Meyer</name> |
|
37 | 37 | <name>New BSD License</name> |
38 | 38 | <url>http://nhindirect.org/BSDLicense</url> |
39 | 39 | </license> |
40 | | - </licenses> |
| 40 | + </licenses> |
41 | 41 | <properties> |
42 | 42 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
43 | | - <camel.version>2.22.0</camel.version> |
44 | | - </properties> |
| 43 | + <commons-net.version>3.8.0</commons-net.version> |
| 44 | + <bcprov-jdk15on.version>1.68</bcprov-jdk15on.version> |
| 45 | + </properties> |
45 | 46 | <dependencyManagement> |
46 | 47 | <dependencies> |
47 | 48 | <dependency> |
48 | 49 | <groupId>org.springframework.boot</groupId> |
49 | 50 | <artifactId>spring-boot-dependencies</artifactId> |
50 | | - <version>2.1.2.RELEASE</version> |
| 51 | + <version>2.5.2</version> |
51 | 52 | <type>pom</type> |
52 | 53 | <scope>import</scope> |
53 | 54 | </dependency> |
54 | 55 | <dependency> |
55 | 56 | <groupId>io.pivotal.spring.cloud</groupId> |
56 | 57 | <artifactId>spring-cloud-services-dependencies</artifactId> |
57 | | - <version>2.0.3.RELEASE</version> |
| 58 | + <version>3.3.0</version> |
58 | 59 | <type>pom</type> |
59 | 60 | <scope>import</scope> |
60 | 61 | </dependency> |
61 | 62 | <dependency> |
62 | 63 | <groupId>org.springframework.cloud</groupId> |
63 | 64 | <artifactId>spring-cloud-starter-parent</artifactId> |
64 | | - <version>Greenwich.RELEASE</version> |
| 65 | + <version>2020.0.3</version> |
65 | 66 | <type>pom</type> |
66 | 67 | <scope>import</scope> |
67 | 68 | </dependency> |
68 | 69 | </dependencies> |
69 | 70 | </dependencyManagement> |
70 | 71 | <dependencies> |
71 | | - <dependency> |
| 72 | + <dependency> |
72 | 73 | <groupId>org.springframework.boot</groupId> |
73 | | - <artifactId>spring-boot-starter-data-jpa</artifactId> |
74 | | - </dependency> |
| 74 | + <artifactId>spring-boot-starter-webflux</artifactId> |
| 75 | + </dependency> |
75 | 76 | <dependency> |
76 | 77 | <groupId>org.springframework.boot</groupId> |
77 | 78 | <artifactId>spring-boot-starter-security</artifactId> |
|
83 | 84 | <dependency> |
84 | 85 | <groupId>org.springframework.boot</groupId> |
85 | 86 | <artifactId>spring-boot-starter-actuator</artifactId> |
| 87 | + </dependency> |
| 88 | + <dependency> |
| 89 | + <groupId>org.springframework.boot</groupId> |
| 90 | + <artifactId>spring-boot-starter-data-r2dbc</artifactId> |
86 | 91 | </dependency> |
87 | 92 | <dependency> |
88 | 93 | <groupId>org.springframework.cloud</groupId> |
89 | | - <artifactId>spring-cloud-starter-config</artifactId> |
90 | | - <exclusions> |
91 | | - <exclusion> |
92 | | - <groupId>org.bouncycastle</groupId> |
93 | | - <artifactId>bcpkix-jdk15on</artifactId> |
94 | | - </exclusion> |
95 | | - </exclusions> |
| 94 | + <artifactId>spring-cloud-starter-config</artifactId> |
96 | 95 | </dependency> |
97 | | - <dependency> |
98 | | - <groupId>org.springframework.cloud</groupId> |
99 | | - <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId> |
100 | | - </dependency> |
101 | 96 | <dependency> |
102 | | - <groupId>javax.inject</groupId> |
103 | | - <artifactId>javax.inject</artifactId> |
104 | | - <version>1</version> |
105 | | - </dependency> |
| 97 | + <groupId>org.springframework.cloud</groupId> |
| 98 | + <artifactId>spring-cloud-starter-bootstrap</artifactId> |
| 99 | + </dependency> |
106 | 100 | <dependency> |
107 | 101 | <groupId>io.pivotal.spring.cloud</groupId> |
108 | | - <artifactId>spring-cloud-services-starter-config-client</artifactId> |
109 | | - <exclusions> |
110 | | - <exclusion> |
111 | | - <groupId>org.codehaus.jackson</groupId> |
112 | | - <artifactId>jackson-mapper-asl</artifactId> |
113 | | - </exclusion> |
114 | | - </exclusions> |
115 | | - </dependency> |
| 102 | + <artifactId>spring-cloud-services-starter-config-client</artifactId> |
| 103 | + </dependency> |
116 | 104 | <dependency> |
117 | 105 | <groupId>org.nhind</groupId> |
118 | 106 | <artifactId>config-service-jar</artifactId> |
119 | | - <version>6.0</version> |
| 107 | + <version>8.0.0</version> |
120 | 108 | </dependency> |
121 | 109 | <dependency> |
122 | 110 | <groupId>org.nhind</groupId> |
123 | 111 | <artifactId>direct-common</artifactId> |
124 | | - <version>6.0</version> |
125 | | - </dependency> |
126 | | - <dependency> |
127 | | - <groupId>org.apache.camel</groupId> |
128 | | - <artifactId>camel-spring-boot-starter</artifactId> |
129 | | - <version>${camel.version}</version> |
130 | | - </dependency> |
131 | | - <dependency> |
132 | | - <groupId>org.apache.camel</groupId> |
133 | | - <artifactId>camel-core</artifactId> |
134 | | - <version>${camel.version}</version> |
135 | | - </dependency> |
136 | | - <dependency> |
137 | | - <groupId>org.apache.camel</groupId> |
138 | | - <artifactId>camel-spring</artifactId> |
139 | | - <version>${camel.version}</version> |
140 | | - </dependency> |
141 | | - <dependency> |
142 | | - <groupId>org.apache.camel</groupId> |
143 | | - <artifactId>camel-mina</artifactId> |
144 | | - <version>${camel.version}</version> |
145 | | - </dependency> |
| 112 | + <version>8.0.0</version> |
| 113 | + </dependency> |
146 | 114 | <dependency> |
147 | 115 | <groupId>commons-net</groupId> |
148 | 116 | <artifactId>commons-net</artifactId> |
149 | | - <version>3.6</version> |
| 117 | + <version>${commons-net.version}</version> |
150 | 118 | </dependency> |
151 | 119 | <dependency> |
152 | 120 | <groupId>org.bouncycastle</groupId> |
153 | 121 | <artifactId>bcprov-jdk15on</artifactId> |
154 | | - <version>1.60</version> |
| 122 | + <version>${bcprov-jdk15on.version}</version> |
155 | 123 | </dependency> |
156 | 124 | <!-- Database Drivers For Connectivity Options --> |
157 | 125 | <dependency> |
158 | 126 | <groupId>com.h2database</groupId> |
159 | 127 | <artifactId>h2</artifactId> |
160 | 128 | <scope>runtime</scope> |
161 | | - </dependency> |
| 129 | + </dependency> |
162 | 130 | <dependency> |
163 | 131 | <groupId>org.apache.derby</groupId> |
164 | 132 | <artifactId>derby</artifactId> |
|
173 | 141 | <groupId>org.postgresql</groupId> |
174 | 142 | <artifactId>postgresql</artifactId> |
175 | 143 | <scope>runtime</scope> |
176 | | - </dependency> |
| 144 | + </dependency> |
| 145 | + <dependency> |
| 146 | + <groupId>dev.miku</groupId> |
| 147 | + <artifactId>r2dbc-mysql</artifactId> |
| 148 | + <scope>runtime</scope> |
| 149 | + </dependency> |
| 150 | + <dependency> |
| 151 | + <groupId>io.r2dbc</groupId> |
| 152 | + <artifactId>r2dbc-postgresql</artifactId> |
| 153 | + <scope>runtime</scope> |
| 154 | + </dependency> |
| 155 | + <dependency> |
| 156 | + <groupId>io.r2dbc</groupId> |
| 157 | + <artifactId>r2dbc-h2</artifactId> |
| 158 | + <scope>runtime</scope> |
| 159 | + </dependency> |
177 | 160 | </dependencies> |
178 | 161 | <build> |
179 | 162 | <plugins> |
|
210 | 193 | </plugin> |
211 | 194 | <plugin> |
212 | 195 | <groupId>org.springframework.boot</groupId> |
213 | | - <artifactId>spring-boot-maven-plugin</artifactId> |
214 | | - <!-- Spring is not very good at finding Entity objects in jar files that are nested |
215 | | - in jar files. This will explode out the contents of the org.nhind library at runtime |
216 | | - so the entity objects can be found and managed |
217 | | - --> |
218 | | - <configuration> |
219 | | - <mainClass>org.nhindirect.config.boot.ConfigServiceApplication</mainClass> |
220 | | - <requiresUnpack> |
221 | | - <dependency> |
222 | | - <groupId>org.nhind</groupId> |
223 | | - <artifactId>config-store</artifactId> |
224 | | - </dependency> |
225 | | - <dependency> |
226 | | - <groupId>org.nhind</groupId> |
227 | | - <artifactId>config-service-jar</artifactId> |
228 | | - </dependency> |
229 | | - </requiresUnpack> |
230 | | - </configuration> |
| 196 | + <artifactId>spring-boot-maven-plugin</artifactId> |
231 | 197 | </plugin> |
232 | 198 | <plugin> |
233 | 199 | <groupId>org.apache.maven.plugins</groupId> |
234 | 200 | <artifactId>maven-javadoc-plugin</artifactId> |
235 | | - <version>2.6.1</version> |
236 | 201 | <configuration> |
237 | | - <additionalparam>-Xdoclint:none</additionalparam> |
| 202 | + <additionalJOption>-Xdoclint:none</additionalJOption> |
238 | 203 | <charset>UTF-8</charset> |
239 | 204 | <docencoding>UTF-8</docencoding> |
240 | 205 | <docfilessubdirs>true</docfilessubdirs> |
|
253 | 218 | </execution> |
254 | 219 | </executions> |
255 | 220 | </plugin> |
256 | | - <!-- for releases only |
| 221 | + <!-- for releases only |
257 | 222 | <plugin> |
258 | 223 | <groupId>org.apache.maven.plugins</groupId> |
259 | 224 | <artifactId>maven-gpg-plugin</artifactId> |
|
267 | 232 | </execution> |
268 | 233 | </executions> |
269 | 234 | </plugin> |
270 | | - --> |
| 235 | + --> |
271 | 236 | </plugins> |
272 | 237 | </build> |
273 | 238 | <reporting> |
274 | 239 | <plugins> |
275 | 240 | <plugin> |
276 | 241 | <groupId>org.apache.maven.plugins</groupId> |
277 | 242 | <artifactId>maven-project-info-reports-plugin</artifactId> |
278 | | - <version>2.9</version> |
279 | 243 | </plugin> |
280 | 244 | <plugin> |
281 | 245 | <groupId>org.apache.maven.plugins</groupId> |
282 | 246 | <artifactId>maven-javadoc-plugin</artifactId> |
283 | | - <version>2.6.1</version> |
284 | 247 | <configuration> |
285 | | - <additionalparam>-Xdoclint:none</additionalparam> |
| 248 | + <additionalJOption>-Xdoclint:none</additionalJOption> |
286 | 249 | <charset>UTF-8</charset> |
287 | 250 | <docencoding>UTF-8</docencoding> |
288 | 251 | <docfilessubdirs>true</docfilessubdirs> |
|
306 | 269 | <plugin> |
307 | 270 | <groupId>org.apache.maven.plugins</groupId> |
308 | 271 | <artifactId>maven-jxr-plugin</artifactId> |
| 272 | + <version>3.1.1</version> |
309 | 273 | </plugin> |
310 | 274 | <plugin> |
311 | 275 | <groupId>org.codehaus.mojo</groupId> |
|
0 commit comments