|
4 | 4 | <modelVersion>4.0.0</modelVersion> |
5 | 5 | <artifactId>dns</artifactId> |
6 | 6 | <name>Direct Project DNS services</name> |
7 | | - <version>6.0.1</version> |
| 7 | + <version>8.0.0</version> |
8 | 8 | <description>Direct Project DNS services</description> |
9 | 9 | <inceptionYear>2010</inceptionYear> |
10 | 10 | <url>https://github.com/DirectProjectJavaRI/dns</url> |
|
27 | 27 | <connection>scm:git:https://github.com/DirectProjectJavaRI/dns.git</connection> |
28 | 28 | </scm> |
29 | 29 | <prerequisites> |
30 | | - <maven>3.0.0</maven> |
| 30 | + <maven>3.5.0</maven> |
31 | 31 | </prerequisites> |
32 | 32 | <parent> |
33 | 33 | <groupId>org.springframework.boot</groupId> |
34 | 34 | <artifactId>spring-boot-starter-parent</artifactId> |
35 | | - <version>2.1.6.RELEASE</version> |
| 35 | + <version>2.5.2</version> |
36 | 36 | <relativePath /> |
37 | | - </parent> |
| 37 | + </parent> |
| 38 | + <properties> |
| 39 | + <dnsjava.version>3.3.1</dnsjava.version> |
| 40 | + <mina-core.version>2.1.4</mina-core.version> |
| 41 | + <bcprov-jdk15on.version>1.68</bcprov-jdk15on.version> |
| 42 | + </properties> |
38 | 43 | <licenses> |
39 | 44 | <license> |
40 | 45 | <name>New BSD License</name> |
|
46 | 51 | <dependency> |
47 | 52 | <groupId>org.springframework.boot</groupId> |
48 | 53 | <artifactId>spring-boot-dependencies</artifactId> |
49 | | - <version>2.1.6.RELEASE</version> |
| 54 | + <version>2.5.2</version> |
50 | 55 | <type>pom</type> |
51 | 56 | <scope>import</scope> |
52 | | - </dependency> |
53 | | - <dependency> |
54 | | - <groupId>io.pivotal.spring.cloud</groupId> |
55 | | - <artifactId>spring-cloud-services-dependencies</artifactId> |
56 | | - <version>2.1.1.RELEASE</version> |
57 | | - <type>pom</type> |
58 | | - <scope>import</scope> |
59 | | - </dependency> |
| 57 | + </dependency> |
60 | 58 | <dependency> |
61 | 59 | <groupId>org.springframework.cloud</groupId> |
62 | 60 | <artifactId>spring-cloud-starter-parent</artifactId> |
63 | | - <version>Greenwich.SR1</version> |
| 61 | + <version>2020.0.3</version> |
64 | 62 | <type>pom</type> |
65 | 63 | <scope>import</scope> |
66 | 64 | </dependency> |
67 | 65 | </dependencies> |
68 | 66 | </dependencyManagement> |
69 | 67 | <dependencies> |
70 | | - <dependency> |
71 | | - <groupId>org.springframework.boot</groupId> |
72 | | - <artifactId>spring-boot-configuration-processor</artifactId> |
73 | | - </dependency> |
74 | 68 | <dependency> |
75 | | - <groupId>org.springframework.boot</groupId> |
76 | | - <artifactId>spring-boot-starter-actuator</artifactId> |
77 | | - </dependency> |
78 | | - <dependency> |
79 | | - <groupId>org.springframework.cloud</groupId> |
80 | | - <artifactId>spring-cloud-starter-config</artifactId> |
81 | | - </dependency> |
82 | | - <dependency> |
83 | | - <groupId>org.springframework.cloud</groupId> |
84 | | - <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId> |
85 | | - </dependency> |
86 | | - <dependency> |
87 | | - <groupId>io.pivotal.spring.cloud</groupId> |
88 | | - <artifactId>spring-cloud-services-starter-config-client</artifactId> |
89 | | - <exclusions> |
90 | | - <exclusion> |
91 | | - <groupId>org.codehaus.jackson</groupId> |
92 | | - <artifactId>jackson-mapper-asl</artifactId> |
93 | | - </exclusion> |
94 | | - </exclusions> |
95 | | - </dependency> |
| 69 | + <groupId>org.springframework.cloud</groupId> |
| 70 | + <artifactId>spring-cloud-starter-bootstrap</artifactId> |
| 71 | + </dependency> |
96 | 72 | <dependency> |
97 | 73 | <groupId>org.bouncycastle</groupId> |
98 | 74 | <artifactId>bcprov-jdk15on</artifactId> |
99 | | - <version>1.60</version> |
| 75 | + <version>${bcprov-jdk15on.version}</version> |
100 | 76 | </dependency> |
101 | 77 | <dependency> |
102 | 78 | <groupId>dnsjava</groupId> |
103 | 79 | <artifactId>dnsjava</artifactId> |
104 | | - <version>2.1.8</version> |
| 80 | + <version>${dnsjava.version}</version> |
105 | 81 | </dependency> |
106 | 82 | <dependency> |
107 | 83 | <groupId>org.nhind</groupId> |
108 | 84 | <artifactId>config-service-client</artifactId> |
109 | | - <version>6.0</version> |
| 85 | + <version>8.0.0</version> |
110 | 86 | </dependency> |
| 87 | + <dependency> |
| 88 | + <groupId>org.nhind</groupId> |
| 89 | + <artifactId>config-model</artifactId> |
| 90 | + <version>8.0.0</version> |
| 91 | + </dependency> |
111 | 92 | <dependency> |
112 | 93 | <groupId>org.nhind</groupId> |
113 | 94 | <artifactId>direct-policy</artifactId> |
114 | | - <version>6.0</version> |
| 95 | + <version>8.0.0</version> |
115 | 96 | </dependency> |
116 | 97 | <dependency> |
117 | 98 | <groupId>org.nhind</groupId> |
118 | 99 | <artifactId>direct-common</artifactId> |
119 | | - <version>6.0.1</version> |
| 100 | + <version>8.0.0</version> |
120 | 101 | </dependency> |
121 | 102 | <dependency> |
122 | 103 | <groupId>org.nhind</groupId> |
123 | 104 | <artifactId>config-service-jar</artifactId> |
124 | | - <version>6.0.3</version> |
| 105 | + <version>8.0.0</version> |
125 | 106 | <scope>test</scope> |
126 | 107 | </dependency> |
127 | 108 | <dependency> |
128 | 109 | <groupId>org.apache.mina</groupId> |
129 | 110 | <artifactId>mina-core</artifactId> |
130 | | - <version>1.0.2</version> |
| 111 | + <version>${mina-core.version}</version> |
131 | 112 | <scope>test</scope> |
132 | | - </dependency> |
133 | | - <dependency> |
134 | | - <groupId>org.mockito</groupId> |
135 | | - <artifactId>mockito-core</artifactId> |
136 | | - <scope>test</scope> |
137 | | - </dependency> |
138 | | - <dependency> |
139 | | - <groupId>junit</groupId> |
140 | | - <artifactId>junit</artifactId> |
141 | | - <scope>test</scope> |
142 | | - </dependency> |
| 113 | + </dependency> |
143 | 114 | <dependency> |
144 | 115 | <groupId>com.h2database</groupId> |
145 | 116 | <artifactId>h2</artifactId> |
146 | 117 | <scope>test</scope> |
147 | 118 | </dependency> |
148 | | - <dependency> |
| 119 | + <dependency> |
| 120 | + <groupId>io.r2dbc</groupId> |
| 121 | + <artifactId>r2dbc-h2</artifactId> |
| 122 | + <scope>test</scope> |
| 123 | + </dependency> |
| 124 | + <dependency> |
149 | 125 | <groupId>org.springframework.boot</groupId> |
150 | 126 | <artifactId>spring-boot-starter-test</artifactId> |
151 | 127 | <scope>test</scope> |
152 | | - </dependency> |
153 | | - <dependency> |
154 | | - <groupId>org.apache.camel</groupId> |
155 | | - <artifactId>camel-spring-boot-starter</artifactId> |
156 | | - <version>2.22.0</version> |
157 | | - <scope>test</scope> |
158 | | - </dependency> |
| 128 | + </dependency> |
159 | 129 | </dependencies> |
160 | 130 | <build> |
161 | 131 | <extensions> |
|
201 | 171 | <plugin> |
202 | 172 | <groupId>org.apache.maven.plugins</groupId> |
203 | 173 | <artifactId>maven-jxr-plugin</artifactId> |
| 174 | + <version>3.1.1</version> |
204 | 175 | </plugin> |
205 | 176 | <plugin> |
206 | 177 | <groupId>org.apache.maven.plugins</groupId> |
|
233 | 204 | </execution> |
234 | 205 | </executions> |
235 | 206 | </plugin> |
236 | | - <plugin> |
237 | | - <groupId>org.apache.maven.plugins</groupId> |
238 | | - <artifactId>maven-jar-plugin</artifactId> |
239 | | - <configuration> |
240 | | - <archive> |
241 | | - <index>true</index> |
242 | | - <!--<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> |
243 | | ---> |
244 | | - </archive> |
245 | | - </configuration> |
246 | | - </plugin> |
247 | | - <plugin> |
248 | | - <groupId>org.apache.maven.plugins</groupId> |
249 | | - <artifactId>maven-jar-plugin</artifactId> |
250 | | - <executions> |
251 | | - <execution> |
252 | | - <goals> |
253 | | - <goal>test-jar</goal> |
254 | | - </goals> |
255 | | - </execution> |
256 | | - </executions> |
257 | | - </plugin> |
| 207 | + <plugin> |
| 208 | + <groupId>org.apache.maven.plugins</groupId> |
| 209 | + <artifactId>maven-jar-plugin</artifactId> |
| 210 | + <configuration> |
| 211 | + <archive> |
| 212 | + <index>true</index> |
| 213 | + </archive> |
| 214 | + </configuration> |
| 215 | + <executions> |
| 216 | + <execution> |
| 217 | + <goals> |
| 218 | + <goal>test-jar</goal> |
| 219 | + </goals> |
| 220 | + </execution> |
| 221 | + </executions> |
| 222 | + </plugin> |
258 | 223 |
|
259 | 224 | <plugin> |
260 | 225 | <groupId>org.apache.maven.plugins</groupId> |
261 | 226 | <artifactId>maven-javadoc-plugin</artifactId> |
262 | | - <version>2.9.1</version> |
263 | | - <configuration> |
264 | | - <additionalparam>-Xdoclint:none</additionalparam> |
| 227 | + <configuration> |
| 228 | + <additionalJOption>-Xdoclint:none</additionalJOption> |
265 | 229 | <charset>UTF-8</charset> |
266 | 230 | <docencoding>UTF-8</docencoding> |
267 | 231 | <docfilessubdirs>true</docfilessubdirs> |
|
296 | 260 | </goals> |
297 | 261 | </execution> |
298 | 262 | </executions> |
| 263 | + <version>3.0.1</version> |
299 | 264 | </plugin> |
300 | 265 | --> |
301 | 266 | </plugins> |
|
305 | 270 | <plugin> |
306 | 271 | <groupId>org.apache.maven.plugins</groupId> |
307 | 272 | <artifactId>maven-project-info-reports-plugin</artifactId> |
308 | | - <version>2.9</version> |
309 | 273 | </plugin> |
310 | 274 | <plugin> |
311 | 275 | <groupId>org.apache.maven.plugins</groupId> |
312 | 276 | <artifactId>maven-javadoc-plugin</artifactId> |
313 | | - <version>2.9.1</version> |
314 | | - <configuration> |
315 | | - <additionalparam>-Xdoclint:none</additionalparam> |
| 277 | + <configuration> |
| 278 | + <additionalJOption>-Xdoclint:none</additionalJOption> |
316 | 279 | <charset>UTF-8</charset> |
317 | 280 | <docencoding>UTF-8</docencoding> |
318 | 281 | <docfilessubdirs>true</docfilessubdirs> |
|
0 commit comments