etl-adapter-db
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.bambrikii.etl-utils</groupId> <artifactId>etl-adapter-db</artifactId> <version>1.0.3</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>io.github.bambrikii.etl-utils</groupId> <artifactId>etl-adapter-db</artifactId> <version>1.0.3</version> <name>ETL Utils - DB</name> <description>DB Implementation of ETL Utils</description> <url>https://github.com/bambrikii/etl-utils</url> <licenses> <license> <name>GNU General Public License version 3</name> <url>https://opensource.org/licenses/GPL-3.0</url> </license> </licenses> <developers> <developer> <id>alexander-arakelyan</id> <name>Alexander Arakelyan</name> <email>alexander.arakelyan@gmail.com</email> </developer> </developers> <scm> <connection>scm:git:https://github.com/bambrikii/etl-utils.git</connection> <developerConnection>scm:git:https://github.com/bambrikii/etl-utils.git</developerConnection> <url>https://github.com/bambrikii/etl-utils.git</url> </scm> <dependencies> <dependency> <groupId>io.github.bambrikii.etl-utils</groupId> <artifactId>etl-model</artifactId> <version>1.0.3</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <version>1.3.148</version> <scope>compile</scope> </dependency> <dependency> <groupId>jakarta.xml.bind</groupId> <artifactId>jakarta.xml.bind-api</artifactId> <version>3.0.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.sun.xml.bind</groupId> <artifactId>jaxb-impl</artifactId> <version>3.0.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>5.6.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>3.2.4</version> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>3.11.1</version> <scope>test</scope> </dependency> </dependencies> </project>