DBConnector
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>bayern.steinbrecher</groupId> <artifactId>DBConnector</artifactId> <version>0.15</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"> <!-- This module was also published with a richer model, Gradle metadata, --> <!-- which should be used instead. Do not delete the following line which --> <!-- is to indicate to Gradle or any Gradle module metadata file consumer --> <!-- that they should prefer consuming it instead. --> <!-- do_not_remove: published-with-gradle-metadata --> <modelVersion>4.0.0</modelVersion> <groupId>bayern.steinbrecher</groupId> <artifactId>DBConnector</artifactId> <version>0.15</version> <name>DBConnector</name> <description>A library which aims to simplify database connections especially if they are over SSH</description> <url>https://steinbrecher.bayern</url> <licenses> <license> <name>The Beer-Ware License (Revision 42)</name> </license> </licenses> <developers> <developer> <id>stefanHuber</id> <name>Stefan Huber</name> <email>stefan.huber.niedling@outlook.com</email> </developer> </developers> <scm> <connection>scm:git:git://github.com/TrackerSB/DBConnector.git</connection> <developerConnection>scm:git:ssh://github.com/TrackerSB/DBConnector.git</developerConnection> <url>https://github.com/TrackerSB/DBConnector</url> </scm> <dependencies> <dependency> <groupId>bayern.steinbrecher</groupId> <artifactId>JavaUtility</artifactId> <version>0.16</version> <scope>runtime</scope> </dependency> <dependency> <groupId>bayern.steinbrecher</groupId> <artifactId>jsch</artifactId> <version>0.1.57</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>29.0-jre</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.mariadb.jdbc</groupId> <artifactId>mariadb-java-client</artifactId> <version>2.7.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.freemarker</groupId> <artifactId>freemarker</artifactId> <version>2.3.31</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.jetbrains</groupId> <artifactId>annotations</artifactId> <version>19.0.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.openjfx</groupId> <artifactId>javafx-base</artifactId> <version>14</version> <classifier>win</classifier> <scope>runtime</scope> </dependency> </dependencies> </project>