|
4 | 4 | <modelVersion>4.0.0</modelVersion> |
5 | 5 | <artifactId>direct-common-audit</artifactId> |
6 | 6 | <name>Direct Project auditing interfaces and implementations</name> |
7 | | - <version>6.0</version> |
| 7 | + <version>8.0.0</version> |
8 | 8 | <description>Direct Project auditing interfaces and implementations</description> |
9 | 9 | <inceptionYear>2010</inceptionYear> |
10 | 10 | <url>http://api.nhindirect.org/x/www/api.nhindirect.org/java/site/direct-common-audit/${project.version}</url> |
|
35 | 35 | <url>http://nhindirect.org/BSDLicense</url> |
36 | 36 | </license> |
37 | 37 | </licenses> |
38 | | - <parent> |
| 38 | + <parent> |
39 | 39 | <groupId>org.springframework.boot</groupId> |
40 | 40 | <artifactId>spring-boot-dependencies</artifactId> |
41 | | - <version>2.1.2.RELEASE</version> |
42 | | - </parent> |
| 41 | + <version>2.5.2</version> |
| 42 | + <relativePath /> |
| 43 | + </parent> |
| 44 | + <properties> |
| 45 | + <commons-collections4.version>4.4</commons-collections4.version> |
| 46 | + <commons-io.version>2.8.0</commons-io.version> |
| 47 | + </properties> |
43 | 48 | <dependencies> |
44 | 49 | <dependency> |
45 | 50 | <groupId>org.springframework.boot</groupId> |
46 | 51 | <artifactId>spring-boot-starter</artifactId> |
47 | 52 | </dependency> |
48 | | - <dependency> |
49 | | - <groupId>org.springframework.boot</groupId> |
50 | | - <artifactId>spring-boot-starter-data-jpa</artifactId> |
51 | | - </dependency> |
| 53 | + <dependency> |
| 54 | + <groupId>org.springframework.boot</groupId> |
| 55 | + <artifactId>spring-boot-starter-data-r2dbc</artifactId> |
| 56 | + </dependency> |
52 | 57 | <dependency> |
53 | 58 | <groupId>commons-io</groupId> |
54 | 59 | <artifactId>commons-io</artifactId> |
55 | | - <version>2.6</version> |
| 60 | + <version>${commons-io.version}</version> |
56 | 61 | </dependency> |
57 | 62 | <dependency> |
58 | 63 | <groupId>org.apache.commons</groupId> |
59 | 64 | <artifactId>commons-lang3</artifactId> |
60 | 65 | </dependency> |
61 | 66 | <dependency> |
62 | | - <groupId>org.hibernate</groupId> |
63 | | - <artifactId>hibernate-core</artifactId> |
64 | | - </dependency> |
65 | | - <dependency> |
66 | | - <groupId>org.hibernate</groupId> |
67 | | - <artifactId>hibernate-entitymanager</artifactId> |
| 67 | + <groupId>org.projectlombok</groupId> |
| 68 | + <artifactId>lombok</artifactId> |
68 | 69 | </dependency> |
69 | 70 | <dependency> |
70 | 71 | <groupId>org.apache.commons</groupId> |
71 | 72 | <artifactId>commons-collections4</artifactId> |
72 | | - <version>4.2</version> |
| 73 | + <version>${commons-collections4.version}</version> |
73 | 74 | </dependency> |
74 | | - <dependency> |
75 | | - <groupId>commons-dbcp</groupId> |
76 | | - <artifactId>commons-dbcp</artifactId> |
77 | | - <version>1.4</version> |
78 | | - <scope>test</scope> |
79 | | - </dependency> |
80 | 75 | <dependency> |
81 | 76 | <groupId>org.springframework.boot</groupId> |
82 | 77 | <artifactId>spring-boot-starter-test</artifactId> |
|
86 | 81 | <groupId>com.h2database</groupId> |
87 | 82 | <artifactId>h2</artifactId> |
88 | 83 | <scope>test</scope> |
89 | | - </dependency> |
| 84 | + </dependency> |
90 | 85 | <dependency> |
91 | | - <groupId>junit</groupId> |
92 | | - <artifactId>junit</artifactId> |
93 | | - <scope>test</scope> |
94 | | - </dependency> |
95 | | - <dependency> |
96 | | - <groupId>org.mockito</groupId> |
97 | | - <artifactId>mockito-core</artifactId> |
98 | | - <scope>test</scope> |
99 | | - </dependency> |
| 86 | + <groupId>io.r2dbc</groupId> |
| 87 | + <artifactId>r2dbc-h2</artifactId> |
| 88 | + <scope>test</scope> |
| 89 | + </dependency> |
100 | 90 | </dependencies> |
101 | 91 | <build> |
102 | 92 | <extensions> |
|
142 | 132 | <plugin> |
143 | 133 | <groupId>org.apache.maven.plugins</groupId> |
144 | 134 | <artifactId>maven-jxr-plugin</artifactId> |
| 135 | + <version>3.1.1</version> |
145 | 136 | </plugin> |
146 | 137 | <plugin> |
147 | 138 | <groupId>org.apache.maven.plugins</groupId> |
|
174 | 165 | </execution> |
175 | 166 | </executions> |
176 | 167 | </plugin> |
177 | | - <plugin> |
178 | | - <groupId>org.apache.maven.plugins</groupId> |
179 | | - <artifactId>maven-jar-plugin</artifactId> |
180 | | - <configuration> |
181 | | - <archive> |
182 | | - <index>true</index> |
183 | | - </archive> |
184 | | - </configuration> |
185 | | - </plugin> |
186 | | - <plugin> |
187 | | - <groupId>org.apache.maven.plugins</groupId> |
188 | | - <artifactId>maven-jar-plugin</artifactId> |
189 | | - <executions> |
190 | | - <execution> |
191 | | - <goals> |
192 | | - <goal>test-jar</goal> |
193 | | - </goals> |
194 | | - </execution> |
195 | | - </executions> |
196 | | - </plugin> |
| 168 | + <plugin> |
| 169 | + <groupId>org.apache.maven.plugins</groupId> |
| 170 | + <artifactId>maven-jar-plugin</artifactId> |
| 171 | + <configuration> |
| 172 | + <archive> |
| 173 | + <index>true</index> |
| 174 | + </archive> |
| 175 | + </configuration> |
| 176 | + <executions> |
| 177 | + <execution> |
| 178 | + <goals> |
| 179 | + <goal>test-jar</goal> |
| 180 | + </goals> |
| 181 | + </execution> |
| 182 | + </executions> |
| 183 | + </plugin> |
197 | 184 | <plugin> |
198 | 185 | <groupId>org.apache.maven.plugins</groupId> |
199 | 186 | <artifactId>maven-javadoc-plugin</artifactId> |
200 | | - <version>2.6.1</version> |
201 | | - <configuration> |
202 | | - <additionalparam>-Xdoclint:none</additionalparam> |
| 187 | + <configuration> |
| 188 | + <additionalJOption>-Xdoclint:none</additionalJOption> |
203 | 189 | <charset>UTF-8</charset> |
204 | 190 | <docencoding>UTF-8</docencoding> |
205 | 191 | <docfilessubdirs>true</docfilessubdirs> |
|
217 | 203 | </goals> |
218 | 204 | </execution> |
219 | 205 | </executions> |
220 | | - </plugin> |
221 | | - <!-- for releases only |
| 206 | + </plugin> |
| 207 | + <!-- for releases only |
222 | 208 | <plugin> |
223 | 209 | <groupId>org.apache.maven.plugins</groupId> |
224 | 210 | <artifactId>maven-gpg-plugin</artifactId> |
|
231 | 217 | </goals> |
232 | 218 | </execution> |
233 | 219 | </executions> |
234 | | - </plugin> |
235 | | - --> |
| 220 | + <version>3.0.1</version> |
| 221 | + </plugin> |
| 222 | + --> |
236 | 223 | </plugins> |
237 | 224 | </build> |
238 | 225 | <reporting> |
239 | 226 | <plugins> |
240 | 227 | <plugin> |
241 | 228 | <groupId>org.apache.maven.plugins</groupId> |
242 | 229 | <artifactId>maven-project-info-reports-plugin</artifactId> |
243 | | - <version>2.9</version> |
244 | 230 | </plugin> |
245 | 231 | <plugin> |
246 | 232 | <groupId>org.apache.maven.plugins</groupId> |
247 | 233 | <artifactId>maven-javadoc-plugin</artifactId> |
248 | | - <version>2.6.1</version> |
249 | 234 | <configuration> |
250 | | - <additionalparam>-Xdoclint:none</additionalparam> |
| 235 | + <additionalJOption>-Xdoclint:none</additionalJOption> |
251 | 236 | <charset>UTF-8</charset> |
252 | 237 | <docencoding>UTF-8</docencoding> |
253 | 238 | <docfilessubdirs>true</docfilessubdirs> |
|
271 | 256 | <plugin> |
272 | 257 | <groupId>org.apache.maven.plugins</groupId> |
273 | 258 | <artifactId>maven-jxr-plugin</artifactId> |
| 259 | + <version>3.1.1</version> |
274 | 260 | </plugin> |
275 | 261 | <plugin> |
276 | 262 | <groupId>org.codehaus.mojo</groupId> |
277 | 263 | <artifactId>findbugs-maven-plugin</artifactId> |
278 | | - <version>2.3.2</version> |
279 | 264 | <configuration> |
280 | 265 | <effort>Max</effort> |
281 | 266 | <excludeFilterFile>${project.basedir}/src/report/findbugs-exclude.xml</excludeFilterFile> |
|
0 commit comments