|
3 | 3 | <modelVersion>4.0.0</modelVersion> |
4 | 4 | <groupId>org.nhind</groupId> |
5 | 5 | <artifactId>config-service-jar</artifactId> |
6 | | - <version>7.0.2</version> |
| 6 | + <version>8.0.0</version> |
7 | 7 | <packaging>jar</packaging> |
8 | 8 | <name>NHIN Direct Java RI config service jar</name> |
9 | 9 | <description>NHIN Direct Java RI config service jar.</description> |
|
13 | 13 | <connection>scm:git:https://github.com/DirectProjectJavaRI/config-service-jar.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> |
| 18 | + <parent> |
19 | 19 | <groupId>org.springframework.boot</groupId> |
20 | 20 | <artifactId>spring-boot-dependencies</artifactId> |
21 | | - <version>2.2.9.RELEASE</version> |
22 | | - </parent> |
| 21 | + <version>2.5.2</version> |
| 22 | + <relativePath /> |
| 23 | + </parent> |
23 | 24 | <developers> |
24 | 25 | <developer> |
25 | 26 | <name>Pat Pyette</name> |
|
43 | 44 | <name>New BSD License</name> |
44 | 45 | <url>http://nhindirect.org/BSDLicense</url> |
45 | 46 | </license> |
46 | | - </licenses> |
47 | | - <repositories> |
48 | | - <repository> |
49 | | - <id>spring-milestones</id> |
50 | | - <name>Spring Milestones</name> |
51 | | - <url>https://repo.spring.io/milestone</url> |
52 | | - </repository> |
53 | | - </repositories> |
| 47 | + </licenses> |
54 | 48 | <properties> |
55 | 49 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
56 | | - <camel.version>2.22.0</camel.version> |
| 50 | + <commons-net.version>3.8.0</commons-net.version> |
| 51 | + <bcprov-jdk15on.version>1.68</bcprov-jdk15on.version> |
57 | 52 | </properties> |
58 | 53 | <dependencies> |
59 | 54 | <dependency> |
60 | 55 | <groupId>org.springframework.boot</groupId> |
61 | 56 | <artifactId>spring-boot-starter-webflux</artifactId> |
62 | | - </dependency> |
63 | | - <dependency> |
64 | | - <groupId>org.springframework.boot</groupId> |
65 | | - <artifactId>spring-boot-starter-tomcat</artifactId> |
66 | | - </dependency> |
67 | | - <dependency> |
68 | | - <groupId>org.flywaydb</groupId> |
69 | | - <artifactId>flyway-core</artifactId> |
70 | | - <version>6.1.4</version> |
71 | | - </dependency> |
72 | | - <dependency> |
73 | | - <groupId>com.fasterxml.jackson.core</groupId> |
74 | | - <artifactId>jackson-databind</artifactId> |
75 | | - </dependency> |
| 57 | + </dependency> |
76 | 58 | <dependency> |
77 | 59 | <groupId>org.nhind</groupId> |
78 | 60 | <artifactId>config-store</artifactId> |
79 | | - <version>7.0</version> |
| 61 | + <version>8.0.0</version> |
80 | 62 | </dependency> |
81 | 63 | <dependency> |
82 | 64 | <groupId>org.nhind</groupId> |
83 | 65 | <artifactId>config-model</artifactId> |
84 | | - <version>7.0</version> |
| 66 | + <version>8.0.0</version> |
85 | 67 | </dependency> |
86 | 68 | <dependency> |
87 | 69 | <groupId>org.nhind</groupId> |
88 | 70 | <artifactId>direct-common</artifactId> |
89 | | - <version>7.0</version> |
90 | | - </dependency> |
91 | | - <dependency> |
92 | | - <groupId>com.google.guava</groupId> |
93 | | - <artifactId>guava</artifactId> |
94 | | - <version>28.2-jre</version> |
95 | | - </dependency> |
96 | | - <dependency> |
97 | | - <groupId>org.apache.camel</groupId> |
98 | | - <artifactId>camel-core</artifactId> |
99 | | - <version>${camel.version}</version> |
100 | | - </dependency> |
101 | | - <dependency> |
102 | | - <groupId>org.apache.camel</groupId> |
103 | | - <artifactId>camel-spring</artifactId> |
104 | | - <version>${camel.version}</version> |
105 | | - </dependency> |
106 | | - <dependency> |
107 | | - <groupId>org.apache.camel</groupId> |
108 | | - <artifactId>camel-mina</artifactId> |
109 | | - <version>${camel.version}</version> |
110 | | - </dependency> |
| 71 | + <version>8.0.0</version> |
| 72 | + </dependency> |
111 | 73 | <dependency> |
112 | 74 | <groupId>commons-net</groupId> |
113 | 75 | <artifactId>commons-net</artifactId> |
114 | | - <version>3.6</version> |
| 76 | + <version>${commons-net.version}</version> |
115 | 77 | </dependency> |
116 | 78 | <dependency> |
117 | 79 | <groupId>org.bouncycastle</groupId> |
118 | 80 | <artifactId>bcprov-jdk15on</artifactId> |
119 | | - <version>1.64</version> |
120 | | - </dependency> |
121 | | - <dependency> |
122 | | - <groupId>org.apache.camel</groupId> |
123 | | - <artifactId>camel-test</artifactId> |
124 | | - <version>${camel.version}</version> |
125 | | - <scope>test</scope> |
126 | | - </dependency> |
127 | | - <dependency> |
128 | | - <groupId>junit</groupId> |
129 | | - <artifactId>junit</artifactId> |
130 | | - <scope>test</scope> |
131 | | - </dependency> |
132 | | - <dependency> |
133 | | - <groupId>org.mockito</groupId> |
134 | | - <artifactId>mockito-core</artifactId> |
135 | | - <scope>test</scope> |
136 | | - </dependency> |
| 81 | + <version>${bcprov-jdk15on.version}</version> |
| 82 | + </dependency> |
137 | 83 | <dependency> |
138 | 84 | <groupId>com.h2database</groupId> |
139 | 85 | <artifactId>h2</artifactId> |
|
143 | 89 | <groupId>org.springframework.boot</groupId> |
144 | 90 | <artifactId>spring-boot-starter-test</artifactId> |
145 | 91 | <scope>test</scope> |
146 | | - </dependency> |
147 | | - <dependency> |
148 | | - <groupId>org.apache.camel</groupId> |
149 | | - <artifactId>camel-spring-boot-starter</artifactId> |
150 | | - <version>2.22.0</version> |
151 | | - <scope>test</scope> |
152 | | - </dependency> |
153 | | - <dependency> |
154 | | - <groupId>com.h2database</groupId> |
155 | | - <artifactId>h2</artifactId> |
156 | | - <scope>test</scope> |
157 | | - </dependency> |
158 | | - <dependency> |
159 | | - <groupId>org.springframework.boot.experimental</groupId> |
160 | | - <artifactId>spring-boot-starter-r2dbc-h2</artifactId> |
161 | | - <version>0.1.0.M1</version> |
162 | | - <scope>test</scope> |
163 | | - </dependency> |
| 92 | + </dependency> |
164 | 93 | <dependency> |
165 | 94 | <groupId>io.r2dbc</groupId> |
166 | 95 | <artifactId>r2dbc-h2</artifactId> |
167 | | - <version>0.8.1.RELEASE</version> |
168 | 96 | <scope>test</scope> |
169 | | - </dependency> |
| 97 | + </dependency> |
170 | 98 | </dependencies> |
171 | 99 | <build> |
172 | 100 | <plugins> |
|
229 | 157 | <plugin> |
230 | 158 | <groupId>org.apache.maven.plugins</groupId> |
231 | 159 | <artifactId>maven-javadoc-plugin</artifactId> |
232 | | - <version>2.9.1</version> |
233 | 160 | <configuration> |
234 | | - <additionalparam>-Xdoclint:none</additionalparam> |
| 161 | + <additionalJOption>-Xdoclint:none</additionalJOption> |
235 | 162 | <charset>UTF-8</charset> |
236 | 163 | <docencoding>UTF-8</docencoding> |
237 | 164 | <source>1.8</source> |
|
246 | 173 | </goals> |
247 | 174 | </execution> |
248 | 175 | </executions> |
249 | | - </plugin> |
| 176 | + </plugin> |
| 177 | + <!-- for releases only |
250 | 178 | <plugin> |
251 | 179 | <groupId>org.apache.maven.plugins</groupId> |
252 | 180 | <artifactId>maven-gpg-plugin</artifactId> |
|
259 | 187 | </goals> |
260 | 188 | </execution> |
261 | 189 | </executions> |
| 190 | + <version>3.0.1</version> |
262 | 191 | </plugin> |
| 192 | + --> |
263 | 193 | </plugins> |
264 | 194 | </build> |
265 | 195 | <reporting> |
266 | 196 | <plugins> |
267 | 197 | <plugin> |
268 | 198 | <groupId>org.apache.maven.plugins</groupId> |
269 | 199 | <artifactId>maven-project-info-reports-plugin</artifactId> |
270 | | - <version>2.9</version> |
271 | 200 | </plugin> |
272 | 201 | <plugin> |
273 | 202 | <groupId>org.apache.maven.plugins</groupId> |
274 | 203 | <artifactId>maven-javadoc-plugin</artifactId> |
275 | | - <version>2.9.1</version> |
276 | 204 | <configuration> |
277 | | - <additionalparam>-Xdoclint:none</additionalparam> |
| 205 | + <additionalJOption>-Xdoclint:none</additionalJOption> |
278 | 206 | <charset>UTF-8</charset> |
279 | 207 | <docencoding>UTF-8</docencoding> |
280 | 208 | <docfilessubdirs>true</docfilessubdirs> |
|
298 | 226 | <plugin> |
299 | 227 | <groupId>org.apache.maven.plugins</groupId> |
300 | 228 | <artifactId>maven-jxr-plugin</artifactId> |
| 229 | + <version>3.1.1</version> |
301 | 230 | </plugin> |
302 | 231 | <plugin> |
303 | 232 | <groupId>org.codehaus.mojo</groupId> |
|
0 commit comments