Add dependency management for IBM DB2 JDBC driver
See gh-17782
This commit is contained in:
committed by
Stephane Nicoll
parent
66e1a0a14d
commit
cb3efc1ef6
@@ -361,6 +361,11 @@
|
||||
<artifactId>h2</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.ibm.db2</groupId>
|
||||
<artifactId>jcc</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.jayway.jsonpath</groupId>
|
||||
<artifactId>json-path</artifactId>
|
||||
|
||||
@@ -44,8 +44,8 @@ import static org.assertj.core.api.Assertions.assertThat;
|
||||
*/
|
||||
class DatabaseDriverClassNameTests {
|
||||
|
||||
private static final Set<DatabaseDriver> EXCLUDED_DRIVERS = Collections.unmodifiableSet(
|
||||
EnumSet.of(DatabaseDriver.UNKNOWN, DatabaseDriver.ORACLE, DatabaseDriver.DB2, DatabaseDriver.DB2_AS400,
|
||||
private static final Set<DatabaseDriver> EXCLUDED_DRIVERS = Collections
|
||||
.unmodifiableSet(EnumSet.of(DatabaseDriver.UNKNOWN, DatabaseDriver.ORACLE, DatabaseDriver.DB2_AS400,
|
||||
DatabaseDriver.INFORMIX, DatabaseDriver.HANA, DatabaseDriver.TERADATA, DatabaseDriver.REDSHIFT));
|
||||
|
||||
@ParameterizedTest(name = "{0} {2}")
|
||||
|
||||
Reference in New Issue
Block a user