schemacrawler-dbtest
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>us.fatehi</groupId> <artifactId>schemacrawler-dbtest</artifactId> <version>16.25.3</version> </dependency>
<?xml version="1.0"?> <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>us.fatehi</groupId> <artifactId>schemacrawler-parent</artifactId> <version>16.25.3</version> <relativePath>../schemacrawler-parent/pom.xml</relativePath> </parent> <artifactId>schemacrawler-dbtest</artifactId> <packaging>jar</packaging> <name>SchemaCrawler - Additional Database Tests</name> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <skip.signing.artifacts>true</skip.signing.artifacts> </properties> <dependencies> <dependency> <groupId>us.fatehi</groupId> <artifactId>schemacrawler</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>us.fatehi</groupId> <artifactId>schemacrawler-testdb</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>us.fatehi</groupId> <artifactId>schemacrawler-api</artifactId> <version>${project.version}</version> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>us.fatehi</groupId> <artifactId>schemacrawler-tools</artifactId> <version>${project.version}</version> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>us.fatehi</groupId> <artifactId>schemacrawler-commandline</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <!-- NOTE: Cassandra driver is repeated here to override dependencies from Testcontainters Cassandra container --> <dependency> <groupId>com.ing.data</groupId> <artifactId>cassandra-jdbc-wrapper</artifactId> <version>4.14.0</version> <scope>test</scope> </dependency> <!-- --> <dependency> <groupId>org.testcontainers</groupId> <artifactId>mariadb</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>cockroachdb</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.firebirdsql</groupId> <artifactId>firebird-testcontainers-java</artifactId> <version>1.5.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>mssqlserver</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>mysql</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>postgresql</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>oracle-xe</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>db2</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>trino</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>cassandra</artifactId> <scope>test</scope> </dependency> <!-- Teiid --> <dependency> <groupId>org.teiid</groupId> <artifactId>teiid-runtime</artifactId> <version>16.0.0</version> <scope>test</scope> <exclusions> <exclusion> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.teiid.connectors</groupId> <artifactId>translator-file</artifactId> <version>16.0.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.teiid.wildfly.connectors</groupId> <artifactId>connector-file</artifactId> <version>16.0.0</version> <scope>test</scope> </dependency> <!-- Calcite --> <dependency> <groupId>org.apache.calcite.avatica</groupId> <artifactId>avatica-core</artifactId> <version>1.26.0</version> <scope>test</scope> <exclusions> <exclusion> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.calcite</groupId> <artifactId>calcite-csv</artifactId> <version>1.39.0</version> <scope>test</scope> <exclusions> <exclusion> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> <scope>test</scope> </dependency> </dependencies> </project>