|
5 | 5 |
|
6 | 6 | <groupId>net.es.nsi</groupId> |
7 | 7 | <artifactId>dds-lib</artifactId> |
8 | | - <version>1.0.1</version> |
| 8 | + <version>1.0.2</version> |
9 | 9 | <packaging>jar</packaging> |
10 | 10 |
|
| 11 | + <parent> |
| 12 | + <groupId>org.springframework.boot</groupId> |
| 13 | + <artifactId>spring-boot-starter-parent</artifactId> |
| 14 | + <version>2.6.4</version> |
| 15 | + </parent> |
| 16 | + |
11 | 17 | <properties> |
12 | 18 | <project.scm.id>github</project.scm.id> |
13 | 19 | <maven.javadoc.skip>true</maven.javadoc.skip> |
|
20 | 26 | <dependency> |
21 | 27 | <groupId>net.es.nsi</groupId> |
22 | 28 | <artifactId>common-lib</artifactId> |
23 | | - <version>1.0.0</version> |
24 | | - </dependency> |
25 | | - |
26 | | - <!-- Needed for our use of JAXB API bindings. --> |
27 | | - <dependency> |
28 | | - <groupId>jakarta.xml.bind</groupId> |
29 | | - <artifactId>jakarta.xml.bind-api</artifactId> |
30 | | - <version>3.0.0</version> |
31 | | - </dependency> |
32 | | - |
33 | | - <!-- Needed for REST API bindings. --> |
34 | | - <dependency> |
35 | | - <groupId>jakarta.ws.rs</groupId> |
36 | | - <artifactId>jakarta.ws.rs-api</artifactId> |
37 | | - <version>3.0.0</version> |
38 | | - </dependency> |
39 | | - |
40 | | - <!-- For content encoding types. --> |
41 | | - <dependency> |
42 | | - <groupId>jakarta.mail</groupId> |
43 | | - <artifactId>jakarta.mail-api</artifactId> |
44 | | - <version>2.0.0</version> |
45 | | - <scope>provided</scope> |
46 | | - </dependency> |
47 | | - |
48 | | - <!-- For priority annotations. --> |
49 | | - <dependency> |
50 | | - <groupId>jakarta.annotation</groupId> |
51 | | - <artifactId>jakarta.annotation-api</artifactId> |
52 | | - <version>2.0.0</version> |
53 | | - </dependency> |
54 | | - |
55 | | - <!-- JAXB Runtime --> |
56 | | - <dependency> |
57 | | - <groupId>org.glassfish.jaxb</groupId> |
58 | | - <artifactId>jaxb-runtime</artifactId> |
59 | | - <version>[3.0.0,)</version> |
| 29 | + <version>1.0.1</version> |
60 | 30 | </dependency> |
61 | 31 |
|
62 | 32 | <!-- Helper annotations for Getter/Setters and Builders. --> |
63 | 33 | <dependency> |
64 | 34 | <groupId>org.projectlombok</groupId> |
65 | 35 | <artifactId>lombok</artifactId> |
66 | | - <version>[1.18.20,)</version> |
67 | 36 | </dependency> |
68 | 37 |
|
69 | 38 | <!-- Google JSON parsers perform better than Moxy. --> |
70 | 39 | <dependency> |
71 | 40 | <groupId>com.google.code.gson</groupId> |
72 | 41 | <artifactId>gson</artifactId> |
73 | | - <version>[2.8.7,)</version> |
74 | 42 | </dependency> |
75 | 43 |
|
76 | 44 | <dependency> |
|
83 | 51 | <dependency> |
84 | 52 | <groupId>commons-io</groupId> |
85 | 53 | <artifactId>commons-io</artifactId> |
86 | | - <version>[2.11.0,)</version> |
| 54 | + <version>2.11.0</version> |
87 | 55 | </dependency> |
88 | 56 |
|
89 | 57 | <dependency> |
90 | 58 | <groupId>org.glassfish.jersey.ext</groupId> |
91 | 59 | <artifactId>jersey-proxy-client</artifactId> |
92 | | - <version>[3.0.0,)</version> |
93 | 60 | </dependency> |
94 | 61 |
|
95 | 62 | <dependency> |
96 | 63 | <groupId>org.glassfish.jersey.connectors</groupId> |
97 | 64 | <artifactId>jersey-apache-connector</artifactId> |
98 | | - <version>[3.0.1,)</version> |
99 | 65 | </dependency> |
100 | 66 |
|
101 | 67 | <dependency> |
102 | 68 | <groupId>org.glassfish.jersey.media</groupId> |
103 | 69 | <artifactId>jersey-media-moxy</artifactId> |
104 | | - <version>[3.0.1,)</version> |
105 | 70 | </dependency> |
106 | 71 |
|
107 | 72 | <dependency> |
108 | 73 | <groupId>org.glassfish.jersey.bundles</groupId> |
109 | 74 | <artifactId>jaxrs-ri</artifactId> |
110 | | - <version>[3.0.1,)</version> |
111 | 75 | </dependency> |
112 | 76 |
|
113 | 77 | <dependency> |
114 | 78 | <groupId>org.glassfish.jersey.core</groupId> |
115 | 79 | <artifactId>jersey-common</artifactId> |
116 | | - <version>[3.0.1,)</version> |
117 | 80 | </dependency> |
118 | 81 |
|
119 | 82 | <dependency> |
120 | 83 | <groupId>org.apache.httpcomponents</groupId> |
121 | 84 | <artifactId>httpclient</artifactId> |
122 | | - <version>[4.5.13,)</version> |
123 | 85 | </dependency> |
124 | 86 |
|
125 | 87 | <!-- Needed for certificate DN manipulation and SSL. --> |
|
157 | 119 | <dependency> |
158 | 120 | <groupId>junit</groupId> |
159 | 121 | <artifactId>junit</artifactId> |
160 | | - <version>[4.13.2,)</version> |
161 | 122 | <scope>test</scope> |
162 | 123 | </dependency> |
163 | 124 | </dependencies> |
|
167 | 128 | <plugin> |
168 | 129 | <groupId>org.codehaus.mojo</groupId> |
169 | 130 | <artifactId>versions-maven-plugin</artifactId> |
170 | | - <version>2.5</version> |
171 | 131 | <configuration> |
172 | 132 | <generateBackupPoms>false</generateBackupPoms> |
173 | 133 | </configuration> |
|
239 | 199 | <dependency> |
240 | 200 | <groupId>org.glassfish.jaxb</groupId> |
241 | 201 | <artifactId>jaxb-xjc</artifactId> |
242 | | - <version>3.0.0</version> |
| 202 | + <version>2.3.6</version> |
243 | 203 | <scope>compile</scope> |
244 | 204 | </dependency> |
245 | 205 |
|
246 | 206 | <dependency> |
247 | 207 | <groupId>org.glassfish.jaxb</groupId> |
248 | 208 | <artifactId>jaxb-core</artifactId> |
249 | | - <version>3.0.0</version> |
| 209 | + <version>2.3.0.1</version> |
250 | 210 | <scope>compile</scope> |
251 | 211 | </dependency> |
252 | 212 |
|
253 | 213 | <dependency> |
254 | 214 | <groupId>org.glassfish.jaxb</groupId> |
255 | 215 | <artifactId>jaxb-runtime</artifactId> |
256 | | - <version>3.0.0</version> |
| 216 | + <version>2.3.6</version> |
257 | 217 | <scope>compile</scope> |
258 | 218 | </dependency> |
259 | 219 | </dependencies> |
|
0 commit comments