|
3 | 3 | <modelVersion>4.0.0</modelVersion> |
4 | 4 | <groupId>org.nhind</groupId> |
5 | 5 | <artifactId>config-service-war</artifactId> |
6 | | - <version>6.0</version> |
| 6 | + <version>8.0.0</version> |
7 | 7 | <packaging>war</packaging> |
8 | 8 | <name>NHIN-Direct Configuration Service Web Application Module</name> |
9 | 9 | <description>NHIN-Direct Configuration Service Web Application Module</description> |
|
15 | 15 | <connection>scm:git:https://github.com/DirectProjectJavaRI/config-service-war.git</connection> |
16 | 16 | </scm> |
17 | 17 | <prerequisites> |
18 | | - <maven>3.0.0</maven> |
| 18 | + <maven>3.5.0</maven> |
19 | 19 | </prerequisites> |
20 | 20 | <parent> |
21 | 21 | <groupId>org.springframework.boot</groupId> |
22 | 22 | <artifactId>spring-boot-starter-parent</artifactId> |
23 | | - <version>2.1.2.RELEASE</version> |
| 23 | + <version>2.5.2</version> |
24 | 24 | <relativePath /> |
25 | 25 | </parent> |
26 | 26 | <developers> |
|
41 | 41 | </licenses> |
42 | 42 | <properties> |
43 | 43 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
44 | | - <camel.version>2.22.0</camel.version> |
45 | 44 | </properties> |
46 | 45 | <dependencyManagement> |
47 | 46 | <dependencies> |
48 | 47 | <dependency> |
49 | 48 | <groupId>org.springframework.boot</groupId> |
50 | 49 | <artifactId>spring-boot-dependencies</artifactId> |
51 | | - <version>2.1.2.RELEASE</version> |
| 50 | + <version>2.5.2</version> |
52 | 51 | <type>pom</type> |
53 | 52 | <scope>import</scope> |
54 | 53 | </dependency> |
55 | 54 | <dependency> |
56 | 55 | <groupId>org.springframework.cloud</groupId> |
57 | 56 | <artifactId>spring-cloud-starter-parent</artifactId> |
58 | | - <version>Greenwich.RELEASE</version> |
| 57 | + <version>2020.0.3</version> |
59 | 58 | <type>pom</type> |
60 | 59 | <scope>import</scope> |
61 | 60 | </dependency> |
|
65 | 64 | <dependency> |
66 | 65 | <groupId>org.nhind</groupId> |
67 | 66 | <artifactId>config-service-jar</artifactId> |
68 | | - <version>6.0</version> |
| 67 | + <version>8.0.0</version> |
69 | 68 | </dependency> |
70 | 69 | <dependency> |
71 | 70 | <groupId>org.nhind</groupId> |
72 | 71 | <artifactId>config-store</artifactId> |
73 | | - <version>6.0</version> |
74 | | - </dependency> |
75 | | - <dependency> |
76 | | - <groupId>org.apache.camel</groupId> |
77 | | - <artifactId>camel-spring-boot-starter</artifactId> |
78 | | - <version>${camel.version}</version> |
79 | | - </dependency> |
| 72 | + <version>8.0.0</version> |
| 73 | + </dependency> |
80 | 74 | <dependency> |
81 | 75 | <groupId>org.springframework.boot</groupId> |
82 | | - <artifactId>spring-boot-starter-tomcat</artifactId> |
83 | | - <scope>provided</scope> |
| 76 | + <artifactId>spring-boot-starter-tomcat</artifactId> |
| 77 | + <exclusions> |
| 78 | + <exclusion> |
| 79 | + <artifactId>tomcat-embed-websocket</artifactId> |
| 80 | + <groupId>org.apache.tomcat.embed</groupId> |
| 81 | + </exclusion> |
| 82 | + </exclusions> |
84 | 83 | </dependency> |
| 84 | + <dependency> |
| 85 | + <groupId>org.springframework.cloud</groupId> |
| 86 | + <artifactId>spring-cloud-starter-bootstrap</artifactId> |
| 87 | + </dependency> |
85 | 88 | <dependency> |
86 | 89 | <groupId>org.springframework.boot</groupId> |
87 | 90 | <artifactId>spring-boot-starter-web</artifactId> |
88 | 91 | </dependency> |
89 | 92 | <dependency> |
90 | 93 | <groupId>org.springframework.boot</groupId> |
91 | 94 | <artifactId>spring-boot-starter-webflux</artifactId> |
92 | | - </dependency> |
93 | | - <dependency> |
94 | | - <groupId>org.springframework.boot</groupId> |
95 | | - <artifactId>spring-boot-starter-data-jpa</artifactId> |
96 | | - </dependency> |
| 95 | + </dependency> |
97 | 96 | <dependency> |
98 | 97 | <groupId>org.springframework.boot</groupId> |
99 | 98 | <artifactId>spring-boot-starter-security</artifactId> |
100 | | - </dependency> |
| 99 | + </dependency> |
101 | 100 | <dependency> |
102 | | - <groupId>commons-dbcp</groupId> |
103 | | - <artifactId>commons-dbcp</artifactId> |
104 | | - <version>1.4</version> |
105 | | - <scope>runtime</scope> |
106 | | - </dependency> |
| 101 | + <groupId>com.h2database</groupId> |
| 102 | + <artifactId>h2</artifactId> |
| 103 | + <scope>runtime</scope> |
| 104 | + </dependency> |
107 | 105 | <dependency> |
108 | 106 | <groupId>org.apache.derby</groupId> |
109 | 107 | <artifactId>derby</artifactId> |
110 | | - <scope>runtime</scope> |
| 108 | + <scope>runtime</scope> |
111 | 109 | </dependency> |
112 | 110 | <dependency> |
113 | 111 | <groupId>mysql</groupId> |
|
118 | 116 | <groupId>org.postgresql</groupId> |
119 | 117 | <artifactId>postgresql</artifactId> |
120 | 118 | <scope>runtime</scope> |
121 | | - </dependency> |
| 119 | + </dependency> |
| 120 | + <dependency> |
| 121 | + <groupId>dev.miku</groupId> |
| 122 | + <artifactId>r2dbc-mysql</artifactId> |
| 123 | + <scope>runtime</scope> |
| 124 | + </dependency> |
| 125 | + <dependency> |
| 126 | + <groupId>io.r2dbc</groupId> |
| 127 | + <artifactId>r2dbc-postgresql</artifactId> |
| 128 | + <scope>runtime</scope> |
| 129 | + </dependency> |
| 130 | + <dependency> |
| 131 | + <groupId>io.r2dbc</groupId> |
| 132 | + <artifactId>r2dbc-h2</artifactId> |
| 133 | + <scope>runtime</scope> |
| 134 | + </dependency> |
122 | 135 | <dependency> |
123 | 136 | <groupId>org.eclipse.jetty</groupId> |
124 | 137 | <artifactId>test-jetty-servlet</artifactId> |
125 | 138 | <version>8.2.0.v20160908</version> |
126 | 139 | <scope>test</scope> |
127 | 140 | </dependency> |
128 | 141 | </dependencies> |
129 | | - |
130 | 142 | <build> |
131 | 143 | <plugins> |
132 | 144 | <plugin> |
|
163 | 175 | <plugin> |
164 | 176 | <groupId>org.apache.maven.plugins</groupId> |
165 | 177 | <artifactId>maven-javadoc-plugin</artifactId> |
166 | | - <version>2.6.1</version> |
167 | 178 | <configuration> |
168 | | - <additionalparam>-Xdoclint:none</additionalparam> |
| 179 | + <additionalJOption>-Xdoclint:none</additionalJOption> |
169 | 180 | <charset>UTF-8</charset> |
170 | 181 | <docencoding>UTF-8</docencoding> |
171 | 182 | <docfilessubdirs>true</docfilessubdirs> |
|
184 | 195 | </execution> |
185 | 196 | </executions> |
186 | 197 | </plugin> |
187 | | - <!-- for releases only |
| 198 | + <!-- for releases only |
188 | 199 | <plugin> |
189 | 200 | <groupId>org.apache.maven.plugins</groupId> |
190 | 201 | <artifactId>maven-gpg-plugin</artifactId> |
|
197 | 208 | </goals> |
198 | 209 | </execution> |
199 | 210 | </executions> |
| 211 | + <version>3.0.1</version> |
200 | 212 | </plugin> |
201 | | - --> |
202 | | - |
| 213 | + --> |
203 | 214 | </plugins> |
204 | 215 | </build> |
205 | 216 | <distributionManagement> |
|
0 commit comments