|
24 | 24 |
|
25 | 25 | <groupId>org.spacious-team</groupId> |
26 | 26 | <artifactId>table-wrapper-excel-impl</artifactId> |
27 | | - <version>2024.1</version> |
| 27 | + <version>2025.1</version> |
28 | 28 | <packaging>jar</packaging> |
29 | 29 |
|
30 | 30 | <name>Table Wrapper API Excel Implementation</name> |
|
64 | 64 | <maven.compiler.release>11</maven.compiler.release> |
65 | 65 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
66 | 66 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
67 | | - <lombok.version>1.18.32</lombok.version> |
68 | | - <checkerframework.version>3.42.0</checkerframework.version> |
69 | | - <apache-poi.version>5.2.5</apache-poi.version> |
| 67 | + <lombok.version>1.18.38</lombok.version> |
| 68 | + <checkerframework.version>3.49.3</checkerframework.version> |
| 69 | + <apache-poi.version>5.4.1</apache-poi.version> |
70 | 70 | </properties> |
71 | 71 |
|
72 | 72 | <repositories> |
|
88 | 88 | <dependency> |
89 | 89 | <groupId>com.github.spacious-team</groupId> |
90 | 90 | <artifactId>table-wrapper-api</artifactId> |
91 | | - <version>2023.1</version> |
| 91 | + <version>2025.1</version> |
92 | 92 | </dependency> |
93 | 93 | <dependency> |
94 | 94 | <groupId>org.apache.poi</groupId> |
|
100 | 100 | <artifactId>poi-ooxml</artifactId> |
101 | 101 | <version>${apache-poi.version}</version> |
102 | 102 | </dependency> |
103 | | - <!-- org.apache.poi:poi-ooxml vulnerability fix https://devhub.checkmarx.com/cve-details/CVE-2024-26308/ --> |
104 | | - <!-- Remove after poi-ooxml update --> |
105 | | - <dependency> |
106 | | - <groupId>org.apache.commons</groupId> |
107 | | - <artifactId>commons-compress</artifactId> |
108 | | - <version>1.26.1</version> |
109 | | - </dependency> |
110 | 103 | <dependency> |
111 | 104 | <groupId>org.projectlombok</groupId> |
112 | 105 | <artifactId>lombok</artifactId> |
|
123 | 116 | <dependency> |
124 | 117 | <groupId>org.junit.jupiter</groupId> |
125 | 118 | <artifactId>junit-jupiter</artifactId> |
126 | | - <version>5.9.2</version> |
| 119 | + <version>5.12.2</version> |
127 | 120 | <scope>test</scope> |
128 | 121 | </dependency> |
129 | 122 | <dependency> |
130 | 123 | <groupId>org.mockito</groupId> |
131 | 124 | <artifactId>mockito-junit-jupiter</artifactId> |
132 | | - <version>5.2.0</version> |
| 125 | + <version>5.18.0</version> |
133 | 126 | <scope>test</scope> |
134 | 127 | </dependency> |
135 | 128 | <dependency> |
136 | 129 | <groupId>nl.jqno.equalsverifier</groupId> |
137 | 130 | <artifactId>equalsverifier</artifactId> |
138 | | - <version>3.14.1</version> |
| 131 | + <version>4.0</version> |
139 | 132 | <scope>test</scope> |
140 | 133 | </dependency> |
141 | 134 | <dependency> |
142 | 135 | <groupId>org.slf4j</groupId> |
143 | 136 | <artifactId>slf4j-api</artifactId> |
144 | | - <version>2.0.7</version> |
| 137 | + <version>2.0.17</version> |
145 | 138 | <scope>test</scope> <!-- yes, for tests only --> |
146 | 139 | </dependency> |
147 | 140 | </dependencies> |
|
151 | 144 | <plugins> |
152 | 145 | <plugin> |
153 | 146 | <artifactId>maven-surefire-plugin</artifactId> |
154 | | - <version>2.22.2</version> <!-- JUnit 5 requirement --> |
| 147 | + <version>3.5.3</version> <!-- JUnit 5 requirement --> |
155 | 148 | </plugin> |
156 | 149 | </plugins> |
157 | 150 | </pluginManagement> |
158 | 151 | <plugins> |
159 | 152 | <plugin> |
160 | 153 | <groupId>org.apache.maven.plugins</groupId> |
161 | 154 | <artifactId>maven-compiler-plugin</artifactId> |
162 | | - <version>3.10.1</version> |
| 155 | + <version>3.14.0</version> |
163 | 156 | <configuration> |
164 | 157 | <fork>true</fork> <!-- Must fork or else JVM arguments are ignored. --> |
165 | 158 | <showDeprecation>true</showDeprecation> |
|
202 | 195 | <plugin> |
203 | 196 | <groupId>org.jacoco</groupId> |
204 | 197 | <artifactId>jacoco-maven-plugin</artifactId> |
205 | | - <version>0.8.8</version> |
| 198 | + <version>0.8.13</version> |
206 | 199 | <executions> |
207 | 200 | <execution> |
208 | 201 | <id>prepare-agent</id> |
|
222 | 215 | <plugin> |
223 | 216 | <groupId>org.apache.maven.plugins</groupId> |
224 | 217 | <artifactId>maven-source-plugin</artifactId> |
225 | | - <version>3.2.1</version> |
| 218 | + <version>3.3.1</version> |
226 | 219 | <executions> |
227 | 220 | <execution> |
228 | 221 | <id>attach-sources</id> |
|
0 commit comments