fusio-jdbc
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>dev.flamelens</groupId>
<artifactId>fusio-jdbc</artifactId>
<version>1.1.1</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>dev.flamelens</groupId>
<artifactId>fusio-parent</artifactId>
<version>1.1.1</version>
</parent>
<artifactId>fusio-jdbc</artifactId>
<name>fusio-jdbc</name>
<description>Bulk-load bridges: stream fusio pipelines into MySQL LOAD DATA LOCAL INFILE, Postgres COPY, or generic JDBC batches</description>
<url>https://github.com/tim-warehouseorganizer/fusio/tree/main/fusio-jdbc</url>
<scm>
<url>https://github.com/tim-warehouseorganizer/fusio/tree/main/fusio-jdbc</url>
</scm>
<dependencies>
<dependency>
<groupId>dev.flamelens</groupId>
<artifactId>fusio-core</artifactId>
<version>${project.version}</version>
</dependency>
<!-- driver-specific fast paths compile against these; the host app provides its own driver -->
<dependency>
<groupId>com.mysql</groupId>
<artifactId>mysql-connector-j</artifactId>
<version>9.1.0</version>
<scope>provided</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>42.7.4</version>
<scope>provided</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>2.3.232</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>