|
50 | 50 | <maven.mima.version>2.4.0</maven.mima.version> |
51 | 51 | <gson.version>2.11.0</gson.version> |
52 | 52 | <jeromq.version>0.6.0</jeromq.version> |
| 53 | + <commons.logging.version>1.3.5</commons.logging.version> |
53 | 54 |
|
54 | 55 | <junit5.version>5.11.2</junit5.version> |
55 | 56 | <hamcrest.version>1.3</hamcrest.version> |
56 | 57 | <jimfs.version>1.3.0</jimfs.version> |
57 | 58 | <testcontainers.version>1.21.3</testcontainers.version> |
58 | | - <slf4j.version>1.7.36</slf4j.version> |
| 59 | + <slf4j.version>2.0.17</slf4j.version> |
59 | 60 | </properties> |
60 | 61 |
|
61 | 62 | <url>https://github.com/dflib/jjava</url> |
|
90 | 91 | <groupId>eu.maveniverse.maven.mima.runtime</groupId> |
91 | 92 | <artifactId>standalone-static</artifactId> |
92 | 93 | <version>${maven.mima.version}</version> |
| 94 | + <exclusions> |
| 95 | + <!-- Will add the right version of SLF4J and commons-logging bridge explicitly --> |
| 96 | + <exclusion> |
| 97 | + <groupId>org.slf4j</groupId> |
| 98 | + <artifactId>*</artifactId> |
| 99 | + </exclusion> |
| 100 | + </exclusions> |
93 | 101 | </dependency> |
94 | 102 | <dependency> |
95 | 103 | <groupId>eu.maveniverse.maven.mima.extensions</groupId> |
|
136 | 144 | <artifactId>testcontainers</artifactId> |
137 | 145 | <version>${testcontainers.version}</version> |
138 | 146 | </dependency> |
| 147 | + <dependency> |
| 148 | + <groupId>org.slf4j</groupId> |
| 149 | + <artifactId>slf4j-api</artifactId> |
| 150 | + <version>${slf4j.version}</version> |
| 151 | + </dependency> |
| 152 | + <dependency> |
| 153 | + <groupId>org.slf4j</groupId> |
| 154 | + <artifactId>slf4j-jdk14</artifactId> |
| 155 | + <version>${slf4j.version}</version> |
| 156 | + </dependency> |
| 157 | + <dependency> |
| 158 | + <groupId>org.slf4j</groupId> |
| 159 | + <artifactId>jcl-over-slf4j</artifactId> |
| 160 | + <version>${slf4j.version}</version> |
| 161 | + </dependency> |
139 | 162 | <dependency> |
140 | 163 | <groupId>org.slf4j</groupId> |
141 | 164 | <artifactId>slf4j-simple</artifactId> |
|
0 commit comments