|
3 | 3 | <modelVersion>4.0.0</modelVersion> |
4 | 4 | <groupId>org.nhind</groupId> |
5 | 5 | <artifactId>config-store</artifactId> |
6 | | - <version>7.0</version> |
| 6 | + <version>8.0.0</version> |
7 | 7 | <packaging>jar</packaging> |
8 | 8 | <name>NHIN Direct Java RI - Configuration Persistence Layer</name> |
9 | 9 | <description>NHIN Direct Security And Trust Agent</description> |
|
13 | 13 | <connection>scm:git:https://github.com/DirectProjectJavaRI/config-store.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.4.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> |
|
48 | 49 | <url>http://nhindirect.org/BSDLicense</url> |
49 | 50 | </license> |
50 | 51 | </licenses> |
51 | | - <repositories> |
52 | | - <repository> |
53 | | - <id>spring-milestones</id> |
54 | | - <name>Spring Milestones</name> |
55 | | - <url>https://repo.spring.io/milestone</url> |
56 | | - </repository> |
57 | | - </repositories> |
| 52 | + <properties> |
| 53 | + <dnsjava.version>3.3.1</dnsjava.version> |
| 54 | + <dsn.version>1.6.7</dsn.version> |
| 55 | + <commons-io.version>2.8.0</commons-io.version> |
| 56 | + <commons-collections4.version>4.4</commons-collections4.version> |
| 57 | + <bcprov-jdk15on.version>1.68</bcprov-jdk15on.version> |
| 58 | + <joda-time.version>2.10.9</joda-time.version> |
| 59 | + </properties> |
58 | 60 | <dependencies> |
59 | 61 | <dependency> |
60 | 62 | <groupId>org.springframework.boot</groupId> |
61 | 63 | <artifactId>spring-boot-starter</artifactId> |
62 | | - </dependency> |
| 64 | + </dependency> |
63 | 65 | <dependency> |
64 | | - <groupId>org.flywaydb</groupId> |
65 | | - <artifactId>flyway-core</artifactId> |
66 | | - <version>6.1.4</version> |
67 | | - </dependency> |
68 | | - <dependency> |
69 | | - <groupId>org.springframework.data</groupId> |
70 | | - <artifactId>spring-data-r2dbc</artifactId> |
71 | | - <version>1.0.0.RELEASE</version> |
72 | | - </dependency> |
| 66 | + <groupId>org.springframework.boot</groupId> |
| 67 | + <artifactId>spring-boot-starter-data-r2dbc</artifactId> |
| 68 | + </dependency> |
73 | 69 | <dependency> |
74 | 70 | <groupId>io.projectreactor</groupId> |
75 | 71 | <artifactId>reactor-test</artifactId> |
|
78 | 74 | <dependency> |
79 | 75 | <groupId>org.nhind</groupId> |
80 | 76 | <artifactId>direct-policy</artifactId> |
81 | | - <version>7.0</version> |
| 77 | + <version>8.0.0</version> |
82 | 78 | </dependency> |
83 | 79 | <dependency> |
84 | 80 | <groupId>org.nhind</groupId> |
85 | 81 | <artifactId>config-model</artifactId> |
86 | | - <version>7.0</version> |
| 82 | + <version>8.0.0</version> |
87 | 83 | </dependency> |
88 | 84 | <dependency> |
89 | 85 | <groupId>org.nhind</groupId> |
90 | 86 | <artifactId>direct-common</artifactId> |
91 | | - <version>7.0</version> |
| 87 | + <version>8.0.0</version> |
92 | 88 | </dependency> |
93 | 89 | <dependency> |
94 | 90 | <groupId>commons-io</groupId> |
95 | 91 | <artifactId>commons-io</artifactId> |
96 | | - <version>2.6</version> |
97 | | - </dependency> |
| 92 | + <version>${commons-io.version}</version> |
| 93 | + </dependency> |
98 | 94 | <dependency> |
99 | 95 | <groupId>org.apache.commons</groupId> |
100 | 96 | <artifactId>commons-collections4</artifactId> |
101 | | - <version>4.4</version> |
102 | | - </dependency> |
| 97 | + <version>${commons-collections4.version}</version> |
| 98 | + </dependency> |
103 | 99 | <dependency> |
104 | 100 | <groupId>org.bouncycastle</groupId> |
105 | 101 | <artifactId>bcprov-jdk15on</artifactId> |
106 | | - <version>1.64</version> |
107 | | - </dependency> |
| 102 | + <version>${bcprov-jdk15on.version}</version> |
| 103 | + </dependency> |
108 | 104 | <dependency> |
109 | 105 | <groupId>dnsjava</groupId> |
110 | 106 | <artifactId>dnsjava</artifactId> |
111 | | - <version>2.0.8</version> |
112 | | - </dependency> |
| 107 | + <version>${dnsjava.version}</version> |
| 108 | + </dependency> |
113 | 109 | <dependency> |
114 | 110 | <groupId>joda-time</groupId> |
115 | | - <artifactId>joda-time</artifactId> |
116 | | - </dependency> |
117 | | - <dependency> |
118 | | - <groupId>org.mockito</groupId> |
119 | | - <artifactId>mockito-core</artifactId> |
120 | | - <scope>test</scope> |
121 | | - </dependency> |
| 111 | + <artifactId>joda-time</artifactId> |
| 112 | + <version>${joda-time.version}</version> |
| 113 | + </dependency> |
| 114 | + <dependency> |
| 115 | + <groupId>org.projectlombok</groupId> |
| 116 | + <artifactId>lombok</artifactId> |
| 117 | + </dependency> |
122 | 118 | <dependency> |
123 | 119 | <groupId>org.springframework</groupId> |
124 | 120 | <artifactId>spring-test</artifactId> |
|
128 | 124 | <groupId>org.springframework.boot</groupId> |
129 | 125 | <artifactId>spring-boot-starter-test</artifactId> |
130 | 126 | <scope>test</scope> |
131 | | - </dependency> |
132 | | - <dependency> |
133 | | - <groupId>junit</groupId> |
134 | | - <artifactId>junit</artifactId> |
135 | | - <type>jar</type> |
136 | | - <scope>test</scope> |
137 | | - </dependency> |
| 127 | + </dependency> |
138 | 128 | <dependency> |
139 | 129 | <groupId>com.h2database</groupId> |
140 | 130 | <artifactId>h2</artifactId> |
141 | 131 | <scope>test</scope> |
142 | 132 | </dependency> |
143 | | - <dependency> |
144 | | - <groupId>org.springframework.boot.experimental</groupId> |
145 | | - <artifactId>spring-boot-starter-r2dbc-h2</artifactId> |
146 | | - <version>0.1.0.M1</version> |
147 | | - <scope>test</scope> |
148 | | - </dependency> |
149 | 133 | <dependency> |
150 | 134 | <groupId>io.r2dbc</groupId> |
151 | 135 | <artifactId>r2dbc-h2</artifactId> |
152 | | - <version>0.8.1.RELEASE</version> |
153 | 136 | <scope>test</scope> |
154 | | - </dependency> |
| 137 | + </dependency> |
| 138 | + <dependency> |
| 139 | + <groupId>org.hsqldb</groupId> |
| 140 | + <artifactId>hsqldb</artifactId> |
| 141 | + <scope>test</scope> |
| 142 | + </dependency> |
155 | 143 | </dependencies> |
156 | 144 | <build> |
157 | 145 | <extensions> |
158 | 146 | <extension> |
159 | 147 | <groupId>org.apache.maven.wagon</groupId> |
160 | 148 | <artifactId>wagon-webdav-jackrabbit</artifactId> |
161 | | - <version>3.1.0</version> |
162 | 149 | </extension> |
163 | 150 | <extension> |
164 | 151 | <groupId>org.apache.maven.wagon</groupId> |
165 | 152 | <artifactId>wagon-ssh-external</artifactId> |
166 | | - <version>3.1.0</version> |
167 | 153 | </extension> |
168 | 154 | <extension> |
169 | 155 | <groupId>org.apache.maven.wagon</groupId> |
170 | 156 | <artifactId>wagon-ssh</artifactId> |
171 | | - <version>3.1.0</version> |
172 | 157 | </extension> |
173 | 158 | </extensions> |
174 | 159 | <resources> |
|
208 | 193 | <plugin> |
209 | 194 | <groupId>org.apache.maven.plugins</groupId> |
210 | 195 | <artifactId>maven-jxr-plugin</artifactId> |
| 196 | + <version>3.1.1</version> |
211 | 197 | </plugin> |
212 | 198 | <plugin> |
213 | 199 | <groupId>org.apache.maven.plugins</groupId> |
|
229 | 215 | <target>1.8</target> |
230 | 216 | </configuration> |
231 | 217 | </plugin> |
232 | | - <plugin> |
233 | | - <groupId>org.apache.maven.plugins</groupId> |
234 | | - <artifactId>maven-jar-plugin</artifactId> |
235 | | - <configuration> |
236 | | - <archive> |
237 | | - <index>true</index> |
238 | | - <!-- |
239 | | - <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> |
240 | | - --> |
241 | | - </archive> |
242 | | - </configuration> |
243 | | - </plugin> |
244 | | - <plugin> |
245 | | - <groupId>org.apache.maven.plugins</groupId> |
246 | | - <artifactId>maven-jar-plugin</artifactId> |
247 | | - <executions> |
248 | | - <execution> |
249 | | - <goals> |
250 | | - <goal>test-jar</goal> |
251 | | - </goals> |
252 | | - </execution> |
253 | | - </executions> |
254 | | - </plugin> |
| 218 | + <plugin> |
| 219 | + <groupId>org.apache.maven.plugins</groupId> |
| 220 | + <artifactId>maven-jar-plugin</artifactId> |
| 221 | + <configuration> |
| 222 | + <archive> |
| 223 | + <index>true</index> |
| 224 | + </archive> |
| 225 | + </configuration> |
| 226 | + <executions> |
| 227 | + <execution> |
| 228 | + <goals> |
| 229 | + <goal>test-jar</goal> |
| 230 | + </goals> |
| 231 | + </execution> |
| 232 | + </executions> |
| 233 | + </plugin> |
255 | 234 | <plugin> |
256 | 235 | <groupId>org.apache.maven.plugins</groupId> |
257 | 236 | <artifactId>maven-javadoc-plugin</artifactId> |
258 | | - <version>3.0.1</version> |
259 | 237 | <configuration> |
260 | | - <additionalparam>-Xdoclint:none</additionalparam> |
| 238 | + <additionalJOption>-Xdoclint:none</additionalJOption> |
261 | 239 | <failOnError>false</failOnError> |
262 | 240 | <charset>UTF-8</charset> |
263 | 241 | <docencoding>UTF-8</docencoding> |
|
275 | 253 | </goals> |
276 | 254 | </execution> |
277 | 255 | </executions> |
278 | | - </plugin> |
| 256 | + </plugin> |
| 257 | + <!-- for releases only |
279 | 258 | <plugin> |
280 | 259 | <groupId>org.apache.maven.plugins</groupId> |
281 | 260 | <artifactId>maven-gpg-plugin</artifactId> |
|
288 | 267 | </goals> |
289 | 268 | </execution> |
290 | 269 | </executions> |
| 270 | + <version>3.0.1</version> |
291 | 271 | </plugin> |
| 272 | + --> |
292 | 273 | </plugins> |
293 | 274 | </build> |
294 | 275 | <reporting> |
295 | 276 | <plugins> |
296 | 277 | <plugin> |
297 | 278 | <groupId>org.apache.maven.plugins</groupId> |
298 | 279 | <artifactId>maven-project-info-reports-plugin</artifactId> |
299 | | - <version>2.9</version> |
300 | 280 | </plugin> |
301 | 281 | <plugin> |
302 | 282 | <groupId>org.apache.maven.plugins</groupId> |
303 | 283 | <artifactId>maven-javadoc-plugin</artifactId> |
304 | | - <version>3.0.1</version> |
305 | 284 | <configuration> |
306 | | - <additionalparam>-Xdoclint:none</additionalparam> |
| 285 | + <additionalJOption>-Xdoclint:none</additionalJOption> |
307 | 286 | <failOnError>false</failOnError> |
308 | 287 | <charset>UTF-8</charset> |
309 | 288 | <docencoding>UTF-8</docencoding> |
|
326 | 305 | <plugin> |
327 | 306 | <groupId>org.apache.maven.plugins</groupId> |
328 | 307 | <artifactId>maven-jxr-plugin</artifactId> |
| 308 | + <version>3.1.1</version> |
329 | 309 | </plugin> |
330 | 310 | <plugin> |
331 | 311 | <groupId>org.codehaus.mojo</groupId> |
332 | 312 | <artifactId>findbugs-maven-plugin</artifactId> |
333 | | - <version>2.3.2</version> |
334 | 313 | <configuration> |
335 | 314 | <effort>Max</effort> |
336 | 315 | </configuration> |
|
0 commit comments