|
3 | 3 | <modelVersion>4.0.0</modelVersion> |
4 | 4 | <groupId>org.nhind</groupId> |
5 | 5 | <artifactId>config-model</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 Service Data Model</name> |
9 | 9 | <description>NHIN Direct Java RI Configurstion Service Data Model</description> |
|
12 | 12 | <url>scm:git:https://github.com/DirectProjectJavaRI/config-model.git</url> |
13 | 13 | <connection>scm:git:https://github.com/DirectProjectJavaRI/config-model.git</connection> |
14 | 14 | </scm> |
15 | | - <parent> |
| 15 | + <properties> |
| 16 | + <dnsjava.version>3.3.1</dnsjava.version> |
| 17 | + <commons-io.version>2.8.0</commons-io.version> |
| 18 | + <commons-collections4.version>4.4</commons-collections4.version> |
| 19 | + <bcprov-jdk15on.version>1.68</bcprov-jdk15on.version> |
| 20 | + </properties> |
| 21 | + <parent> |
16 | 22 | <groupId>org.springframework.boot</groupId> |
17 | 23 | <artifactId>spring-boot-dependencies</artifactId> |
18 | | - <version>2.2.4.RELEASE</version> |
19 | | - </parent> |
| 24 | + <version>2.5.2</version> |
| 25 | + <relativePath /> |
| 26 | + </parent> |
20 | 27 | <developers> |
21 | 28 | <developer> |
22 | 29 | <name>Greg Meyer</name> |
|
25 | 32 | </developer> |
26 | 33 | </developers> |
27 | 34 | <prerequisites> |
28 | | - <maven>3.0.0</maven> |
| 35 | + <maven>3.5.0</maven> |
29 | 36 | </prerequisites> |
30 | 37 | <licenses> |
31 | 38 | <license> |
|
37 | 44 | <dependency> |
38 | 45 | <groupId>org.nhind</groupId> |
39 | 46 | <artifactId>direct-policy</artifactId> |
40 | | - <version>7.0</version> |
| 47 | + <version>8.0.0</version> |
41 | 48 | <type>jar</type> |
42 | 49 | </dependency> |
43 | 50 | <dependency> |
44 | 51 | <groupId>commons-io</groupId> |
45 | 52 | <artifactId>commons-io</artifactId> |
46 | | - <version>2.6</version> |
| 53 | + <version>${commons-io.version}</version> |
47 | 54 | </dependency> |
48 | 55 | <dependency> |
49 | 56 | <groupId>org.apache.commons</groupId> |
50 | 57 | <artifactId>commons-collections4</artifactId> |
51 | | - <version>4.4</version> |
| 58 | + <version>${commons-collections4.version}</version> |
52 | 59 | </dependency> |
53 | 60 | <dependency> |
54 | 61 | <groupId>com.fasterxml.jackson.core</groupId> |
55 | 62 | <artifactId>jackson-annotations</artifactId> |
56 | 63 | </dependency> |
57 | | - <dependency> |
58 | | - <groupId>junit</groupId> |
59 | | - <artifactId>junit</artifactId> |
60 | | - <type>jar</type> |
61 | | - <scope>test</scope> |
62 | | - </dependency> |
63 | 64 | <dependency> |
64 | 65 | <groupId>org.bouncycastle</groupId> |
65 | 66 | <artifactId>bcprov-jdk15on</artifactId> |
66 | | - <version>1.64</version> |
67 | | - </dependency> |
| 67 | + <version>${bcprov-jdk15on.version}</version> |
| 68 | + </dependency> |
| 69 | + <dependency> |
| 70 | + <groupId>org.projectlombok</groupId> |
| 71 | + <artifactId>lombok</artifactId> |
| 72 | + </dependency> |
68 | 73 | <dependency> |
69 | 74 | <groupId>dnsjava</groupId> |
70 | 75 | <artifactId>dnsjava</artifactId> |
71 | | - <version>2.0.8</version> |
| 76 | + <version>${dnsjava.version}</version> |
72 | 77 | </dependency> |
73 | | - <dependency> |
74 | | - <groupId>org.mockito</groupId> |
75 | | - <artifactId>mockito-core</artifactId> |
76 | | - <scope>test</scope> |
77 | | - </dependency> |
| 78 | + <dependency> |
| 79 | + <groupId>org.junit.jupiter</groupId> |
| 80 | + <artifactId>junit-jupiter-engine</artifactId> |
| 81 | + <scope>test</scope> |
| 82 | + </dependency> |
78 | 83 | </dependencies> |
79 | 84 | <build> |
80 | 85 | <extensions> |
81 | 86 | <extension> |
82 | 87 | <groupId>org.apache.maven.wagon</groupId> |
83 | 88 | <artifactId>wagon-webdav-jackrabbit</artifactId> |
84 | | - <version>3.1.0</version> |
85 | 89 | </extension> |
86 | 90 | <extension> |
87 | 91 | <groupId>org.apache.maven.wagon</groupId> |
88 | 92 | <artifactId>wagon-ssh-external</artifactId> |
89 | | - <version>3.1.0</version> |
90 | 93 | </extension> |
91 | 94 | <extension> |
92 | 95 | <groupId>org.apache.maven.wagon</groupId> |
93 | 96 | <artifactId>wagon-ssh</artifactId> |
94 | | - <version>3.1.0</version> |
95 | 97 | </extension> |
96 | 98 | </extensions> |
97 | 99 | <resources> |
|
131 | 133 | <plugin> |
132 | 134 | <groupId>org.apache.maven.plugins</groupId> |
133 | 135 | <artifactId>maven-jxr-plugin</artifactId> |
| 136 | + <version>3.1.1</version> |
134 | 137 | </plugin> |
135 | 138 | <plugin> |
136 | 139 | <groupId>org.apache.maven.plugins</groupId> |
|
152 | 155 | <target>1.8</target> |
153 | 156 | </configuration> |
154 | 157 | </plugin> |
155 | | - <plugin> |
156 | | - <groupId>org.apache.maven.plugins</groupId> |
157 | | - <artifactId>maven-jar-plugin</artifactId> |
158 | | - <configuration> |
159 | | - <archive> |
160 | | - <index>true</index> |
161 | | - <!-- |
162 | | - <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> |
163 | | - --> |
164 | | - </archive> |
165 | | - </configuration> |
166 | | - </plugin> |
167 | | - <plugin> |
168 | | - <groupId>org.apache.maven.plugins</groupId> |
169 | | - <artifactId>maven-jar-plugin</artifactId> |
170 | | - <executions> |
171 | | - <execution> |
172 | | - <goals> |
173 | | - <goal>test-jar</goal> |
174 | | - </goals> |
175 | | - </execution> |
176 | | - </executions> |
177 | | - </plugin> |
| 158 | + <plugin> |
| 159 | + <groupId>org.apache.maven.plugins</groupId> |
| 160 | + <artifactId>maven-jar-plugin</artifactId> |
| 161 | + <configuration> |
| 162 | + <archive> |
| 163 | + <index>true</index> |
| 164 | + </archive> |
| 165 | + </configuration> |
| 166 | + <executions> |
| 167 | + <execution> |
| 168 | + <goals> |
| 169 | + <goal>test-jar</goal> |
| 170 | + </goals> |
| 171 | + </execution> |
| 172 | + </executions> |
| 173 | + </plugin> |
178 | 174 |
|
179 | 175 | <plugin> |
180 | 176 | <groupId>org.apache.maven.plugins</groupId> |
181 | 177 | <artifactId>maven-javadoc-plugin</artifactId> |
182 | | - <version>2.9.1</version> |
183 | 178 | <configuration> |
184 | | - <additionalparam>-Xdoclint:none</additionalparam> |
| 179 | + <additionalJOption>-Xdoclint:none</additionalJOption> |
185 | 180 | <charset>UTF-8</charset> |
186 | 181 | <docencoding>UTF-8</docencoding> |
187 | 182 | <docfilessubdirs>true</docfilessubdirs> |
|
199 | 194 | </goals> |
200 | 195 | </execution> |
201 | 196 | </executions> |
202 | | - </plugin> |
| 197 | + </plugin> |
| 198 | + <!-- for releases only |
203 | 199 | <plugin> |
204 | 200 | <groupId>org.apache.maven.plugins</groupId> |
205 | 201 | <artifactId>maven-gpg-plugin</artifactId> |
|
212 | 208 | </goals> |
213 | 209 | </execution> |
214 | 210 | </executions> |
| 211 | + <version>3.0.1</version> |
215 | 212 | </plugin> |
| 213 | + --> |
216 | 214 | </plugins> |
217 | 215 | </build> |
218 | 216 | <reporting> |
219 | 217 | <plugins> |
220 | 218 | <plugin> |
221 | 219 | <groupId>org.apache.maven.plugins</groupId> |
222 | 220 | <artifactId>maven-project-info-reports-plugin</artifactId> |
223 | | - <version>2.9</version> |
224 | 221 | </plugin> |
225 | 222 | <plugin> |
226 | 223 | <groupId>org.apache.maven.plugins</groupId> |
227 | 224 | <artifactId>maven-javadoc-plugin</artifactId> |
228 | | - <version>2.9.1</version> |
229 | 225 | <configuration> |
230 | | - <additionalparam>-Xdoclint:none</additionalparam> |
| 226 | + <additionalJOption>-Xdoclint:none</additionalJOption> |
231 | 227 | <charset>UTF-8</charset> |
232 | 228 | <docencoding>UTF-8</docencoding> |
233 | 229 | <docfilessubdirs>true</docfilessubdirs> |
|
251 | 247 | <plugin> |
252 | 248 | <groupId>org.apache.maven.plugins</groupId> |
253 | 249 | <artifactId>maven-jxr-plugin</artifactId> |
| 250 | + <version>3.1.1</version> |
254 | 251 | </plugin> |
255 | 252 | <plugin> |
256 | 253 | <groupId>org.codehaus.mojo</groupId> |
|
0 commit comments