|
35 | 35 | <toml4j.version>0.7.3</toml4j.version>
|
36 | 36 | <picocli.version>4.7.6</picocli.version>
|
37 | 37 | <reflections.version>0.10.2</reflections.version>
|
38 |
| - <log4j.version>2.24.1</log4j.version> |
39 | 38 | <mockito.version>5.14.1</mockito.version>
|
40 | 39 | <archunit-junit5.version>1.3.0</archunit-junit5.version>
|
41 | 40 | <semver4j.version>5.4.0</semver4j.version>
|
|
59 | 58 | <maven-failsafe-plugin.version>3.5.0</maven-failsafe-plugin.version>
|
60 | 59 | <maven-assembly-plugin.version>3.7.1</maven-assembly-plugin.version>
|
61 | 60 | <native-maven-plugin.version>0.10.3</native-maven-plugin.version>
|
| 61 | + <maven-shade-plugin.version>3.6.0</maven-shade-plugin.version> |
62 | 62 | </properties>
|
63 | 63 |
|
64 | 64 | <modules>
|
|
82 | 82 | <type>pom</type>
|
83 | 83 | <scope>import</scope>
|
84 | 84 | </dependency>
|
85 |
| - <dependency> |
86 |
| - <groupId>org.apache.logging.log4j</groupId> |
87 |
| - <artifactId>log4j-bom</artifactId> |
88 |
| - <version>${log4j.version}</version> |
89 |
| - <type>pom</type> |
90 |
| - <scope>import</scope> |
91 |
| - </dependency> |
92 | 85 | <dependency>
|
93 | 86 | <groupId>commons-io</groupId>
|
94 | 87 | <artifactId>commons-io</artifactId>
|
|
188 | 181 | </dependencyManagement>
|
189 | 182 |
|
190 | 183 | <build>
|
191 |
| - <plugins> |
192 |
| - <plugin> |
193 |
| - <groupId>org.codehaus.mojo</groupId> |
194 |
| - <artifactId>flatten-maven-plugin</artifactId> |
195 |
| - <executions> |
196 |
| - <execution> |
197 |
| - <id>flatten</id> |
198 |
| - <phase>process-resources</phase> |
199 |
| - <goals> |
200 |
| - <goal>flatten</goal> |
201 |
| - </goals> |
202 |
| - </execution> |
203 |
| - <execution> |
204 |
| - <id>flatten.clean</id> |
205 |
| - <phase>clean</phase> |
206 |
| - <goals> |
207 |
| - <goal>clean</goal> |
208 |
| - </goals> |
209 |
| - </execution> |
210 |
| - </executions> |
211 |
| - </plugin> |
212 |
| - </plugins> |
213 | 184 | <pluginManagement>
|
214 | 185 | <plugins>
|
215 | 186 | <plugin>
|
|
231 | 202 | <groupId>org.apache.maven.plugins</groupId>
|
232 | 203 | <artifactId>maven-deploy-plugin</artifactId>
|
233 | 204 | <version>${maven-deploy-plugin.version}</version>
|
| 205 | + <configuration> |
| 206 | + <skip>true</skip> |
| 207 | + </configuration> |
234 | 208 | </plugin>
|
235 | 209 | <plugin>
|
236 | 210 | <groupId>org.jacoco</groupId>
|
|
277 | 251 | <artifactId>maven-assembly-plugin</artifactId>
|
278 | 252 | <version>${maven-assembly-plugin.version}</version>
|
279 | 253 | </plugin>
|
| 254 | + <plugin> |
| 255 | + <groupId>org.apache.maven.plugins</groupId> |
| 256 | + <artifactId>maven-shade-plugin</artifactId> |
| 257 | + <version>${maven-shade-plugin.version}</version> |
| 258 | + </plugin> |
280 | 259 | </plugins>
|
281 | 260 | </pluginManagement>
|
282 | 261 | </build>
|
|
0 commit comments