|
16 | 16 | <licenses> |
17 | 17 | <license> |
18 | 18 | <name>The Apache Software License, Version 2.0</name> |
19 | | - <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 19 | + <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> |
20 | 20 | <distribution>repo</distribution> |
21 | 21 | </license> |
22 | 22 | </licenses> |
|
51 | 51 | <artifactId>xrpl4j-client</artifactId> |
52 | 52 | <version>${project.version}</version> |
53 | 53 | </dependency> |
| 54 | + <dependency> |
| 55 | + <groupId>com.fasterxml.jackson</groupId> |
| 56 | + <artifactId>jackson-bom</artifactId> |
| 57 | + <version>${jackson.version}</version> |
| 58 | + <type>pom</type> |
| 59 | + <scope>import</scope> |
| 60 | + </dependency> |
54 | 61 | <dependency> |
55 | 62 | <groupId>com.github.ben-manes.caffeine</groupId> |
56 | 63 | <artifactId>caffeine</artifactId> |
|
60 | 67 | <groupId>com.ripple.cryptoconditions</groupId> |
61 | 68 | <artifactId>crypto-conditions</artifactId> |
62 | 69 | <version>${cryptoconditions.version}</version> |
| 70 | + <exclusions> |
| 71 | + <exclusion> |
| 72 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 73 | + <artifactId>jackson-core</artifactId> |
| 74 | + </exclusion> |
| 75 | + <exclusion> |
| 76 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 77 | + <artifactId>jackson-annotations</artifactId> |
| 78 | + </exclusion> |
| 79 | + <exclusion> |
| 80 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 81 | + <artifactId>jackson-databind</artifactId> |
| 82 | + </exclusion> |
| 83 | + </exclusions> |
63 | 84 | </dependency> |
64 | 85 | <dependency> |
65 | 86 | <groupId>com.ripple.cryptoconditions</groupId> |
66 | 87 | <artifactId>jackson-datatype-cryptoconditions</artifactId> |
67 | 88 | <version>${cryptoconditions.version}</version> |
| 89 | + <exclusions> |
| 90 | + <exclusion> |
| 91 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 92 | + <artifactId>jackson-core</artifactId> |
| 93 | + </exclusion> |
| 94 | + <exclusion> |
| 95 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 96 | + <artifactId>jackson-annotations</artifactId> |
| 97 | + </exclusion> |
| 98 | + <exclusion> |
| 99 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 100 | + <artifactId>jackson-databind</artifactId> |
| 101 | + </exclusion> |
| 102 | + </exclusions> |
68 | 103 | </dependency> |
69 | | - <!-- This is the highest version we can use if we want to support Java 8. See https://logback.qos.ch/download.html --> |
| 104 | + <!-- Version 1.3.x is the highest version we can use if we want to support Java 8. |
| 105 | + See https://logback.qos.ch/download.html --> |
70 | 106 | <dependency> |
71 | 107 | <groupId>ch.qos.logback</groupId> |
72 | 108 | <artifactId>logback-classic</artifactId> |
73 | | - <version>1.3.8</version> |
| 109 | + <version>1.3.15</version> |
74 | 110 | </dependency> |
75 | 111 | <dependency> |
76 | 112 | <groupId>org.assertj</groupId> |
77 | 113 | <artifactId>assertj-core</artifactId> |
78 | 114 | <version>3.24.2</version> |
79 | 115 | <scope>test</scope> |
80 | 116 | </dependency> |
| 117 | + <dependency> |
| 118 | + <groupId>org.junit</groupId> |
| 119 | + <artifactId>junit-bom</artifactId> |
| 120 | + <version>5.13.1</version> |
| 121 | + <type>pom</type> |
| 122 | + <scope>import</scope> |
| 123 | + </dependency> |
81 | 124 | <dependency> |
82 | 125 | <groupId>org.skyscreamer</groupId> |
83 | 126 | <artifactId>jsonassert</artifactId> |
84 | 127 | <version>1.5.1</version> |
85 | 128 | <scope>test</scope> |
86 | 129 | </dependency> |
87 | | - <dependency> |
88 | | - <groupId>org.junit.jupiter</groupId> |
89 | | - <artifactId>junit-jupiter</artifactId> |
90 | | - <version>${junit-jupiter.version}</version> |
91 | | - <scope>test</scope> |
92 | | - </dependency> |
93 | | - <dependency> |
94 | | - <groupId>org.junit.jupiter</groupId> |
95 | | - <artifactId>junit-jupiter-engine</artifactId> |
96 | | - <version>${junit-jupiter.version}</version> |
97 | | - <scope>test</scope> |
98 | | - </dependency> |
99 | | - <dependency> |
100 | | - <groupId>org.junit.jupiter</groupId> |
101 | | - <artifactId>junit-jupiter-api</artifactId> |
102 | | - <version>${junit-jupiter.version}</version> |
103 | | - <scope>test</scope> |
104 | | - </dependency> |
105 | | - <dependency> |
106 | | - <groupId>org.junit.jupiter</groupId> |
107 | | - <artifactId>junit-jupiter-params</artifactId> |
108 | | - <version>${junit-jupiter.version}</version> |
109 | | - <scope>test</scope> |
110 | | - </dependency> |
111 | 130 | <dependency> |
112 | 131 | <groupId>org.mockito</groupId> |
113 | 132 | <artifactId>mockito-core</artifactId> |
|
125 | 144 | <artifactId>slf4j-api</artifactId> |
126 | 145 | <version>${slf4j.version}</version> |
127 | 146 | </dependency> |
128 | | - <dependency> |
129 | | - <groupId>com.fasterxml.jackson.core</groupId> |
130 | | - <artifactId>jackson-annotations</artifactId> |
131 | | - <version>${jackson.version}</version> |
132 | | - </dependency> |
133 | | - <dependency> |
134 | | - <groupId>com.fasterxml.jackson.core</groupId> |
135 | | - <artifactId>jackson-core</artifactId> |
136 | | - <version>${jackson.version}</version> |
137 | | - </dependency> |
138 | | - <dependency> |
139 | | - <groupId>com.fasterxml.jackson.core</groupId> |
140 | | - <artifactId>jackson-databind</artifactId> |
141 | | - <version>${jackson.version}</version> |
142 | | - </dependency> |
143 | | - <dependency> |
144 | | - <groupId>com.fasterxml.jackson.datatype</groupId> |
145 | | - <artifactId>jackson-datatype-guava</artifactId> |
146 | | - <version>${jackson.version}</version> |
147 | | - </dependency> |
148 | 147 | <dependency> |
149 | 148 | <groupId>com.google.guava</groupId> |
150 | 149 | <artifactId>guava</artifactId> |
151 | 150 | <version>${guava.version}</version> |
152 | 151 | </dependency> |
153 | | - <dependency> |
154 | | - <groupId>com.fasterxml.jackson.datatype</groupId> |
155 | | - <artifactId>jackson-datatype-jdk8</artifactId> |
156 | | - <version>${jackson.version}</version> |
157 | | - </dependency> |
158 | | - <dependency> |
159 | | - <groupId>com.fasterxml.jackson.datatype</groupId> |
160 | | - <artifactId>jackson-datatype-jsr310</artifactId> |
161 | | - <version>${jackson.version}</version> |
162 | | - </dependency> |
163 | 152 | <dependency> |
164 | 153 | <groupId>com.jayway.jsonpath</groupId> |
165 | 154 | <artifactId>json-path-assert</artifactId> |
|
209 | 198 | <dependency> |
210 | 199 | <groupId>org.testcontainers</groupId> |
211 | 200 | <artifactId>testcontainers</artifactId> |
212 | | - <version>1.17.6</version> |
| 201 | + <version>1.20.2</version> |
213 | 202 | <scope>test</scope> |
214 | 203 | </dependency> |
215 | 204 | </dependencies> |
|
289 | 278 | <checkstyle.config.location>checkstyle.xml</checkstyle.config.location> |
290 | 279 | <checkstyle.violationSeverity>warning</checkstyle.violationSeverity> |
291 | 280 |
|
292 | | - <cryptoconditions.version>1.0.4</cryptoconditions.version> |
293 | | - <jackson.version>2.14.2</jackson.version> |
| 281 | + <cryptoconditions.version>1.0.5</cryptoconditions.version> |
| 282 | + <jackson.version>2.14.3</jackson.version> |
294 | 283 | <feign.version>12.3</feign.version> |
295 | 284 | <slf4j.version>2.0.7</slf4j.version> |
296 | 285 | <junit-jupiter.version>5.10.1</junit-jupiter.version> |
|
0 commit comments