|
4 | 4 | <modelVersion>4.0.0</modelVersion> |
5 | 5 | <artifactId>dns-sboot</artifactId> |
6 | 6 | <name>Direct Project DNS Server SpringBoot Application</name> |
7 | | - <version>6.0.1</version> |
| 7 | + <version>8.0.0</version> |
8 | 8 | <description>Direct Project DNS Server SpringBoot Application</description> |
9 | 9 | <inceptionYear>2010</inceptionYear> |
10 | 10 | <url>https://github.com/DirectProjectJavaRI/dns-sboot</url> |
|
27 | 27 | <connection>scm:git:https://github.com/DirectProjectJavaRI/dns-sboot.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.1</version> |
50 | 55 | <type>pom</type> |
51 | 56 | <scope>import</scope> |
52 | 57 | </dependency> |
53 | 58 | <dependency> |
54 | 59 | <groupId>io.pivotal.spring.cloud</groupId> |
55 | 60 | <artifactId>spring-cloud-services-dependencies</artifactId> |
56 | | - <version>2.1.1.RELEASE</version> |
| 61 | + <version>3.3.0</version> |
57 | 62 | <type>pom</type> |
58 | 63 | <scope>import</scope> |
59 | 64 | </dependency> |
60 | 65 | <dependency> |
61 | 66 | <groupId>org.springframework.cloud</groupId> |
62 | 67 | <artifactId>spring-cloud-starter-parent</artifactId> |
63 | | - <version>Greenwich.SR1</version> |
| 68 | + <version>2020.0.3</version> |
64 | 69 | <type>pom</type> |
65 | 70 | <scope>import</scope> |
66 | 71 | </dependency> |
|
79 | 84 | <groupId>org.springframework.cloud</groupId> |
80 | 85 | <artifactId>spring-cloud-starter-config</artifactId> |
81 | 86 | </dependency> |
82 | | - <dependency> |
83 | | - <groupId>org.springframework.cloud</groupId> |
84 | | - <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId> |
85 | | - </dependency> |
| 87 | + <dependency> |
| 88 | + <groupId>org.springframework.cloud</groupId> |
| 89 | + <artifactId>spring-cloud-starter-bootstrap</artifactId> |
| 90 | + </dependency> |
86 | 91 | <dependency> |
87 | 92 | <groupId>io.pivotal.spring.cloud</groupId> |
88 | 93 | <artifactId>spring-cloud-services-starter-config-client</artifactId> |
|
96 | 101 | <dependency> |
97 | 102 | <groupId>org.bouncycastle</groupId> |
98 | 103 | <artifactId>bcprov-jdk15on</artifactId> |
99 | | - <version>1.60</version> |
| 104 | + <version>${bcprov-jdk15on.version}</version> |
100 | 105 | </dependency> |
101 | 106 | <dependency> |
102 | 107 | <groupId>dnsjava</groupId> |
103 | 108 | <artifactId>dnsjava</artifactId> |
104 | | - <version>2.1.8</version> |
| 109 | + <version>${dnsjava.version}</version> |
105 | 110 | </dependency> |
106 | 111 | <dependency> |
107 | 112 | <groupId>org.nhind</groupId> |
108 | 113 | <artifactId>dns</artifactId> |
109 | | - <version>6.0.1</version> |
110 | | - </dependency> |
| 114 | + <version>8.0.0</version> |
| 115 | + </dependency> |
| 116 | + <dependency> |
| 117 | + <groupId>org.nhind</groupId> |
| 118 | + <artifactId>config-model</artifactId> |
| 119 | + <version>8.0.0</version> |
| 120 | + </dependency> |
111 | 121 | <dependency> |
112 | 122 | <groupId>org.nhind</groupId> |
113 | 123 | <artifactId>config-service-client</artifactId> |
114 | | - <version>6.0</version> |
| 124 | + <version>8.0.0</version> |
115 | 125 | </dependency> |
116 | 126 | <dependency> |
117 | 127 | <groupId>org.nhind</groupId> |
118 | 128 | <artifactId>direct-policy</artifactId> |
119 | | - <version>6.0</version> |
| 129 | + <version>8.0.0</version> |
120 | 130 | </dependency> |
121 | 131 | <dependency> |
122 | 132 | <groupId>org.nhind</groupId> |
123 | 133 | <artifactId>direct-common</artifactId> |
124 | | - <version>6.0.1</version> |
| 134 | + <version>8.0.0</version> |
125 | 135 | </dependency> |
126 | 136 | </dependencies> |
127 | 137 | <build> |
|
168 | 178 | <plugin> |
169 | 179 | <groupId>org.apache.maven.plugins</groupId> |
170 | 180 | <artifactId>maven-jxr-plugin</artifactId> |
| 181 | + <version>3.1.1</version> |
171 | 182 | </plugin> |
172 | | - |
173 | 183 | <plugin> |
174 | 184 | <groupId>org.apache.maven.plugins</groupId> |
175 | 185 | <artifactId>maven-compiler-plugin</artifactId> |
|
201 | 211 | </execution> |
202 | 212 | </executions> |
203 | 213 | </plugin> |
204 | | - <plugin> |
205 | | - <groupId>org.apache.maven.plugins</groupId> |
206 | | - <artifactId>maven-jar-plugin</artifactId> |
207 | | - <configuration> |
208 | | - <archive> |
209 | | - <index>true</index> |
210 | | - <!--<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> |
211 | | ---> |
212 | | - </archive> |
213 | | - </configuration> |
214 | | - </plugin> |
215 | | - <plugin> |
216 | | - <groupId>org.apache.maven.plugins</groupId> |
217 | | - <artifactId>maven-jar-plugin</artifactId> |
218 | | - <executions> |
219 | | - <execution> |
220 | | - <goals> |
221 | | - <goal>test-jar</goal> |
222 | | - </goals> |
223 | | - </execution> |
224 | | - </executions> |
225 | | - </plugin> |
| 214 | + <plugin> |
| 215 | + <groupId>org.apache.maven.plugins</groupId> |
| 216 | + <artifactId>maven-jar-plugin</artifactId> |
| 217 | + <configuration> |
| 218 | + <archive> |
| 219 | + <index>true</index> |
| 220 | + </archive> |
| 221 | + </configuration> |
| 222 | + <executions> |
| 223 | + <execution> |
| 224 | + <goals> |
| 225 | + <goal>test-jar</goal> |
| 226 | + </goals> |
| 227 | + </execution> |
| 228 | + </executions> |
| 229 | + </plugin> |
| 230 | + |
226 | 231 | <plugin> |
227 | 232 | <groupId>org.springframework.boot</groupId> |
228 | 233 | <artifactId>spring-boot-maven-plugin</artifactId> |
229 | 234 | </plugin> |
230 | 235 | <plugin> |
231 | 236 | <groupId>org.apache.maven.plugins</groupId> |
232 | 237 | <artifactId>maven-javadoc-plugin</artifactId> |
233 | | - <version>2.9.1</version> |
234 | 238 | <configuration> |
235 | | - <additionalparam>-Xdoclint:none</additionalparam> |
| 239 | + <additionalJOption>-Xdoclint:none</additionalJOption> |
236 | 240 | <charset>UTF-8</charset> |
237 | 241 | <docencoding>UTF-8</docencoding> |
238 | 242 | <docfilessubdirs>true</docfilessubdirs> |
|
264 | 268 | </goals> |
265 | 269 | </execution> |
266 | 270 | </executions> |
| 271 | + <version>3.0.1</version> |
267 | 272 | </plugin> |
268 | 273 | --> |
269 | 274 | </plugins> |
|
273 | 278 | <plugin> |
274 | 279 | <groupId>org.apache.maven.plugins</groupId> |
275 | 280 | <artifactId>maven-project-info-reports-plugin</artifactId> |
276 | | - <version>2.9</version> |
277 | 281 | </plugin> |
278 | 282 | <plugin> |
279 | 283 | <groupId>org.apache.maven.plugins</groupId> |
280 | 284 | <artifactId>maven-javadoc-plugin</artifactId> |
281 | | - <version>2.9.1</version> |
282 | 285 | <configuration> |
283 | | - <additionalparam>-Xdoclint:none</additionalparam> |
| 286 | + <additionalJOption>-Xdoclint:none</additionalJOption> |
284 | 287 | <charset>UTF-8</charset> |
285 | 288 | <docencoding>UTF-8</docencoding> |
286 | 289 | <docfilessubdirs>true</docfilessubdirs> |
|
304 | 307 | <plugin> |
305 | 308 | <groupId>org.apache.maven.plugins</groupId> |
306 | 309 | <artifactId>maven-jxr-plugin</artifactId> |
| 310 | + <version>3.1.1</version> |
307 | 311 | </plugin> |
308 | 312 | <plugin> |
309 | 313 | <groupId>org.codehaus.mojo</groupId> |
|
0 commit comments