File tree Expand file tree Collapse file tree
bootique-jdbc-junit5-testcontainers
bootique-jdbc-liquibase-internal Expand file tree Collapse file tree Original file line number Diff line number Diff line change 44* #138 Liquibase - exclude "javax.xml.bind: jaxb-api " dependency
55* #139 Upgrade Apache Derby dependency to 10.17.x.x
66* #140 "assertMatchesCsv(..)" can not compare CSVs that store nulls as empty strings
7+ * #143 Update transitive dependency on commons-compress to 1.26.1
78
89## 3.0-RC2
910
Original file line number Diff line number Diff line change 5353 <groupId >org.testcontainers</groupId >
5454 <artifactId >jdbc</artifactId >
5555 </dependency >
56+ <dependency >
57+ <groupId >org.apache.commons</groupId >
58+ <artifactId >commons-compress</artifactId >
59+ </dependency >
60+ <dependency >
61+ <groupId >org.apache.commons</groupId >
62+ <artifactId >commons-lang3</artifactId >
63+ </dependency >
5664
5765 <!-- Unit test dependencies -->
5866 <dependency >
Original file line number Diff line number Diff line change 6767 <groupId >javax.xml.bind</groupId >
6868 <artifactId >jaxb-api</artifactId >
6969 </exclusion >
70+ <exclusion >
71+ <groupId >org.apache.commons</groupId >
72+ <artifactId >commons-lang3</artifactId >
73+ </exclusion >
7074 </exclusions >
7175 </dependency >
7276 <!-- Fix the version of the "liquibase-core" transitive dependency -->
73- <dependency >
74- <groupId >org.apache.commons</groupId >
75- <artifactId >commons-lang3</artifactId >
76- <version >${commons.lang.version} </version >
77- </dependency >
7877 <dependency >
7978 <groupId >com.fasterxml.jackson.module</groupId >
8079 <artifactId >jackson-module-jaxb-annotations</artifactId >
Original file line number Diff line number Diff line change 4242 <postgresql .version>42.7.7</postgresql .version>
4343 <mysql .version>9.2.0</mysql .version>
4444 <liquibase .version>4.30.0</liquibase .version>
45+ <commons .compress.version>1.26.0</commons .compress.version>
4546 <commons .lang.version>3.18.0</commons .lang.version>
4647 <jaxb .version>2.3.1</jaxb .version>
4748 <hikaricp .version>6.2.1</hikaricp .version>
49+
4850 </properties >
4951
5052 <modules >
103105 <groupId >org.testcontainers</groupId >
104106 <artifactId >jdbc</artifactId >
105107 <version >${testcontainers.version} </version >
108+ <exclusions >
109+ <exclusion >
110+ <groupId >org.apache.commons</groupId >
111+ <artifactId >commons-compress</artifactId >
112+ </exclusion >
113+ </exclusions >
106114 </dependency >
107115 <dependency >
108116 <groupId >org.testcontainers</groupId >
140148 <artifactId >commons-csv</artifactId >
141149 <version >1.11.0</version >
142150 </dependency >
151+ <dependency >
152+ <groupId >org.apache.commons</groupId >
153+ <artifactId >commons-compress</artifactId >
154+ <version >${commons.compress.version} </version >
155+ <exclusions >
156+ <exclusion >
157+ <groupId >org.apache.commons</groupId >
158+ <artifactId >commons-lang3</artifactId >
159+ </exclusion >
160+ </exclusions >
161+ </dependency >
162+ <dependency >
163+ <groupId >org.apache.commons</groupId >
164+ <artifactId >commons-lang3</artifactId >
165+ <version >${commons.lang.version} </version >
166+ </dependency >
143167 <dependency >
144168 <groupId >org.awaitility</groupId >
145169 <artifactId >awaitility</artifactId >
You can’t perform that action at this time.
0 commit comments