|
36 | 36 | <maven.compiler.source>11</maven.compiler.source>
|
37 | 37 | <maven.compiler.target>11</maven.compiler.target>
|
38 | 38 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
| 39 | + <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
| 40 | + |
| 41 | + <jackson.version>2.16.1</jackson.version> |
39 | 42 | </properties>
|
40 | 43 |
|
41 | 44 | <dependencies>
|
42 | 45 | <dependency>
|
43 | 46 | <groupId>com.fasterxml.jackson.core</groupId>
|
44 | 47 | <artifactId>jackson-core</artifactId>
|
45 |
| - <version>2.15.2</version> |
46 | 48 | </dependency>
|
47 | 49 | <dependency>
|
48 | 50 | <groupId>com.fasterxml.jackson.core</groupId>
|
49 | 51 | <artifactId>jackson-databind</artifactId>
|
50 |
| - <version>2.15.2</version> |
51 | 52 | </dependency>
|
52 | 53 | <dependency>
|
53 | 54 | <groupId>com.fasterxml.jackson.core</groupId>
|
54 | 55 | <artifactId>jackson-annotations</artifactId>
|
55 |
| - <version>2.15.2</version> |
56 | 56 | </dependency>
|
57 | 57 | <dependency>
|
58 | 58 | <groupId>com.fasterxml.jackson.dataformat</groupId>
|
59 | 59 | <artifactId>jackson-dataformat-yaml</artifactId>
|
60 |
| - <version>2.15.2</version> |
61 | 60 | </dependency>
|
62 | 61 | <dependency>
|
63 | 62 | <groupId>ch.qos.logback</groupId>
|
64 | 63 | <artifactId>logback-classic</artifactId>
|
65 |
| - <version>1.4.5</version> |
| 64 | + <version>1.4.14</version> |
| 65 | + </dependency> |
| 66 | + <dependency> |
| 67 | + <groupId>org.slf4j</groupId> |
| 68 | + <artifactId>slf4j-api</artifactId> |
| 69 | + <version>2.0.11</version> |
66 | 70 | </dependency>
|
67 | 71 | <dependency>
|
68 | 72 | <groupId>com.zaxxer</groupId>
|
|
82 | 86 | <dependency>
|
83 | 87 | <groupId>com.mysql</groupId>
|
84 | 88 | <artifactId>mysql-connector-j</artifactId>
|
85 |
| - <version>8.0.32</version> |
| 89 | + <version>8.3.0</version> |
86 | 90 | </dependency>
|
87 | 91 | <dependency>
|
88 | 92 | <groupId>org.postgresql</groupId>
|
|
107 | 111 | <dependency>
|
108 | 112 | <groupId>com.google.guava</groupId>
|
109 | 113 | <artifactId>guava</artifactId>
|
110 |
| - <version>31.1-jre</version> |
| 114 | + <version>32.0.0-android</version> |
111 | 115 | </dependency>
|
112 | 116 | <dependency>
|
113 | 117 | <groupId>org.json</groupId>
|
114 | 118 | <artifactId>json</artifactId>
|
115 |
| - <version>20230227</version> |
| 119 | + <version>20231013</version> |
116 | 120 | </dependency>
|
117 | 121 | <dependency>
|
118 | 122 | <groupId>junit</groupId>
|
|
127 | 131 | <dependency>
|
128 | 132 | <groupId>com.opencsv</groupId>
|
129 | 133 | <artifactId>opencsv</artifactId>
|
130 |
| - <version>5.8</version> |
| 134 | + <version>5.9</version> |
| 135 | + <exclusions> |
| 136 | + <exclusion> |
| 137 | + <groupId>commons-collections</groupId> |
| 138 | + <artifactId>commons-collections</artifactId> |
| 139 | + </exclusion> |
| 140 | + </exclusions> |
131 | 141 | </dependency>
|
132 | 142 | <dependency>
|
133 | 143 | <groupId>info.picocli</groupId>
|
|
142 | 152 | <dependency>
|
143 | 153 | <groupId>commons-validator</groupId>
|
144 | 154 | <artifactId>commons-validator</artifactId>
|
145 |
| - <version>1.7</version> |
| 155 | + <version>1.8.0</version> |
| 156 | + <exclusions> |
| 157 | + <exclusion> |
| 158 | + <groupId>commons-collections</groupId> |
| 159 | + <artifactId>commons-collections</artifactId> |
| 160 | + </exclusion> |
| 161 | + </exclusions> |
| 162 | + </dependency> |
| 163 | + <dependency> |
| 164 | + <groupId>org.apache.commons</groupId> |
| 165 | + <artifactId>commons-collections4</artifactId> |
| 166 | + <version>4.4</version> |
146 | 167 | </dependency>
|
147 | 168 | <dependency>
|
148 | 169 | <groupId>org.projectlombok</groupId>
|
|
168 | 189 | </dependency>
|
169 | 190 | </dependencies>
|
170 | 191 |
|
| 192 | + <dependencyManagement> |
| 193 | + <dependencies> |
| 194 | + <dependency> |
| 195 | + <groupId>com.fasterxml.jackson</groupId> |
| 196 | + <artifactId>jackson-bom</artifactId> |
| 197 | + <version>${jackson.version}</version> |
| 198 | + <type>pom</type> |
| 199 | + <scope>import</scope> |
| 200 | + </dependency> |
| 201 | + </dependencies> |
| 202 | + </dependencyManagement> |
| 203 | + |
171 | 204 | <build>
|
172 | 205 | <plugins>
|
173 | 206 | <plugin>
|
|
266 | 299 | <plugin>
|
267 | 300 | <groupId>org.jreleaser</groupId>
|
268 | 301 | <artifactId>jreleaser-maven-plugin</artifactId>
|
269 |
| - <version>1.3.1</version> |
| 302 | + <version>1.7.0</version> |
270 | 303 | <executions>
|
271 | 304 | <execution>
|
272 | 305 | <id>package</id>
|
|
0 commit comments