ha-jdbc
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.xdob.ha-jdbc2</groupId> <artifactId>ha-jdbc</artifactId> <version>3.6.16</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>net.xdob.ha-jdbc2</groupId> <artifactId>ha-jdbc</artifactId> <version>3.6.16</version> <name>ha-jdbc2</name> <description>High-Availability JDBC</description> <url>https://github.com/dibyang/ha-jdbc2</url> <licenses> <license> <name>GNU Lesser General Public License v3.0</name> <url>https://github.com/dibyang/ha-jdbc2/blob/master/LICENSE</url> </license> </licenses> <developers> <developer> <id>yangzj</id> <name>Yang zhijian</name> <email>3227817@qq.com</email> </developer> </developers> <scm> <connection>scm:git:https://github.com/dibyang/ha-jdbc2.git</connection> <developerConnection>scm:git:https://github.com/dibyang/ha-jdbc2.git</developerConnection> <url>https://github.com/dibyang/ha-jdbc2.git</url> </scm> <dependencies> <dependency> <groupId>joda-time</groupId> <artifactId>joda-time</artifactId> <version>2.10.1</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.jgroups</groupId> <artifactId>jgroups</artifactId> <version>3.6.20.Final</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.7</version> <scope>runtime</scope> </dependency> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> <version>1.2</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.jboss.logging</groupId> <artifactId>jboss-logging</artifactId> <version>3.1.4.GA</version> <scope>runtime</scope> </dependency> <dependency> <groupId>commons-pool</groupId> <artifactId>commons-pool</artifactId> <version>1.6</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.sleepycat</groupId> <artifactId>je</artifactId> <version>6.0.11</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.tmatesoft.sqljet</groupId> <artifactId>sqljet</artifactId> <version>1.1.10</version> <scope>runtime</scope> </dependency> <dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> <version>1.9</version> <scope>runtime</scope> </dependency> <dependency> <groupId>net.xdob.h2db</groupId> <artifactId>h2</artifactId> <version>2.0.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>1.10.8</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hsqldb</groupId> <artifactId>hsqldb</artifactId> <version>2.3.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.derby</groupId> <artifactId>derby</artifactId> <version>10.11.1.1</version> <scope>test</scope> </dependency> </dependencies> </project>