|
5 | 5 | <properties> |
6 | 6 | <maven.compiler.source>1.8</maven.compiler.source> |
7 | 7 | <maven.compiler.target>1.8</maven.compiler.target> |
| 8 | + <jackson.version>2.12.5</jackson.version> |
8 | 9 | </properties> |
9 | 10 |
|
10 | 11 | <groupId>no.difi.sdp</groupId> |
|
27 | 28 | <dependency> |
28 | 29 | <groupId>com.fasterxml.jackson.core</groupId> |
29 | 30 | <artifactId>jackson-core</artifactId> |
30 | | - <version>2.10.2</version> |
| 31 | + <version>${jackson.version}</version> |
31 | 32 | </dependency> |
32 | 33 | <dependency> |
33 | 34 | <groupId>com.fasterxml.jackson.core</groupId> |
34 | 35 | <artifactId>jackson-databind</artifactId> |
35 | | - <version>2.10.2</version> |
| 36 | + <version>${jackson.version}</version> |
36 | 37 | </dependency> |
37 | 38 | <dependency> |
38 | 39 | <groupId>com.fasterxml.jackson.core</groupId> |
39 | 40 | <artifactId>jackson-annotations</artifactId> |
40 | | - <version>2.10.2</version> |
| 41 | + <version>${jackson.version}</version> |
41 | 42 | </dependency> |
42 | 43 | <dependency> |
43 | 44 | <groupId>com.fasterxml.jackson.datatype</groupId> |
44 | 45 | <artifactId>jackson-datatype-jsr310</artifactId> |
45 | | - <version>2.10.2</version> |
| 46 | + <version>${jackson.version}</version> |
46 | 47 | </dependency> |
47 | 48 | <dependency> |
48 | 49 | <groupId>org.apache.commons</groupId> |
49 | 50 | <artifactId>commons-lang3</artifactId> |
50 | | - <version>3.9</version> |
| 51 | + <version>3.12.0</version> |
51 | 52 | </dependency> |
52 | 53 | <dependency> |
53 | 54 | <groupId>no.digipost</groupId> |
|
57 | 58 | <dependency> |
58 | 59 | <groupId>jakarta.xml.bind</groupId> |
59 | 60 | <artifactId>jakarta.xml.bind-api</artifactId> |
60 | | - <version>2.3.2</version> |
| 61 | + <version>2.3.3</version> |
61 | 62 | </dependency> |
62 | 63 | <dependency> |
63 | 64 | <groupId>commons-io</groupId> |
64 | 65 | <artifactId>commons-io</artifactId> |
65 | | - <version>2.6</version> |
| 66 | + <version>2.11.0</version> |
66 | 67 | </dependency> |
67 | 68 | <dependency> |
68 | 69 | <groupId>org.apache.httpcomponents</groupId> |
69 | 70 | <artifactId>httpcore</artifactId> |
70 | | - <version>4.4.13</version> |
| 71 | + <version>4.4.14</version> |
71 | 72 | </dependency> |
72 | 73 | <dependency> |
73 | 74 | <groupId>org.apache.httpcomponents</groupId> |
74 | 75 | <artifactId>httpclient</artifactId> |
75 | | - <version>4.5.10</version> |
| 76 | + <version>4.5.13</version> |
76 | 77 | <exclusions> |
77 | 78 | <exclusion> |
78 | 79 | <artifactId>commons-logging</artifactId> |
|
83 | 84 | <dependency> |
84 | 85 | <groupId>no.digipost</groupId> |
85 | 86 | <artifactId>certificate-validator</artifactId> |
86 | | - <version>2.0</version> |
| 87 | + <version>2.3</version> |
87 | 88 | </dependency> |
88 | 89 |
|
89 | 90 | <dependency> |
|
99 | 100 | <dependency> |
100 | 101 | <groupId>org.hamcrest</groupId> |
101 | 102 | <artifactId>hamcrest</artifactId> |
102 | | - <version>2.1</version> |
| 103 | + <version>2.2</version> |
103 | 104 | <scope>test</scope> |
104 | 105 | </dependency> |
105 | 106 | <dependency> |
106 | 107 | <groupId>org.mockito</groupId> |
107 | 108 | <artifactId>mockito-core</artifactId> |
108 | | - <version>2.28.2</version> |
| 109 | + <version>3.12.4</version> |
109 | 110 | <scope>test</scope> |
110 | 111 | </dependency> |
111 | 112 | <dependency> |
112 | 113 | <groupId>no.digipost</groupId> |
113 | 114 | <artifactId>digg</artifactId> |
114 | 115 | <scope>test</scope> |
115 | | - <version>0.19</version> |
| 116 | + <version>0.30</version> |
116 | 117 | </dependency> |
117 | 118 | <dependency> |
118 | 119 | <groupId>org.slf4j</groupId> |
119 | 120 | <artifactId>slf4j-api</artifactId> |
120 | | - <version>1.7.26</version> |
| 121 | + <version>1.7.32</version> |
121 | 122 | </dependency> |
122 | 123 | <dependency> |
123 | 124 | <groupId>ch.qos.logback</groupId> |
124 | 125 | <artifactId>logback-classic</artifactId> |
125 | | - <version>1.2.3</version> |
| 126 | + <version>1.2.5</version> |
126 | 127 | <scope>test</scope> |
127 | 128 | </dependency> |
128 | 129 | <dependency> |
|
261 | 262 | <include>commons-io</include> |
262 | 263 | <include>org.bouncycastle:bcpkix-jdk15on</include> |
263 | 264 | <include>org.bouncycastle:bcprov-jdk15on</include> |
| 265 | + <include>org.bouncycastle:bcutil-jdk15on</include> |
264 | 266 | <include>org.slf4j</include> |
265 | 267 | <include>org.apache.commons</include> |
266 | 268 | <include>org.apache.httpcomponents</include> |
|
0 commit comments