dflib-jdbc
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.dflib</groupId> <artifactId>dflib-jdbc</artifactId> <version>2.0.0-M3</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.dflib</groupId> <artifactId>dflib-parent</artifactId> <version>2.0.0-M3</version> </parent> <artifactId>dflib-jdbc</artifactId> <name>dflib-jdbc: read/write DataFrames from/to databases</name> <packaging>jar</packaging> <dependencies> <!-- required runtime deps --> <dependency> <groupId>org.dflib</groupId> <artifactId>dflib</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <!-- unit test deps --> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.dflib</groupId> <artifactId>dflib-junit5</artifactId> <scope>test</scope> <version>${project.version}</version> </dependency> <dependency> <groupId>io.bootique.jdbc</groupId> <artifactId>bootique-jdbc-junit5-derby</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.bootique.jdbc</groupId> <artifactId>bootique-jdbc-junit5-testcontainers</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>mysql</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.mysql</groupId> <artifactId>mysql-connector-j</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>postgresql</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <scope>test</scope> </dependency> </dependencies> <profiles> <profile> <id>mysql</id> <build> <plugins> <plugin> <artifactId>maven-failsafe-plugin</artifactId> <configuration> <systemPropertyVariables> <test.db>mysql</test.db> </systemPropertyVariables> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>postgresql</id> <build> <plugins> <plugin> <artifactId>maven-failsafe-plugin</artifactId> <configuration> <systemPropertyVariables> <test.db>postgresql</test.db> </systemPropertyVariables> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>