generated from replikativ/datahike-backend-template
-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: integrationtest with pg mysql and mssql
- use tests according to konserve-jdbc with mssql and mysql
- Loading branch information
1 parent
7369dd4
commit 6903e1b
Showing
5 changed files
with
93 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
pom.xml | ||
pom.xml.asc | ||
*.jar | ||
*.class | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
<?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> | ||
<groupId>io.replikativ</groupId> | ||
<artifactId>datahike-jdbc</artifactId> | ||
<packaging>jar</packaging> | ||
<name>datahike-jdbc</name> | ||
<description>A JDBC backend for Datahike</description> | ||
<version>0.1.2-SNAPSHOT</version> | ||
<url>https://datahike.io</url> | ||
<licenses> | ||
<license> | ||
<name>Eclipse</name> | ||
<url>http://www.eclipse.org/legal/epl-v10.html</url> | ||
</license> | ||
</licenses> | ||
<scm> | ||
<connection>scm:git:[email protected]:replikativ/datahike-jdbc.git</connection> | ||
<developerConnection>scm:git:[email protected]/replikativ/datahike-jdbc.git</developerConnection> | ||
<url>https://github.com/replikativ/datahike-jdbc</url> | ||
</scm> | ||
<dependencies> | ||
<dependency> | ||
<groupId>org.clojure</groupId> | ||
<artifactId>clojure</artifactId> | ||
<version>1.10.3</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>io.replikativ</groupId> | ||
<artifactId>konserve-jdbc</artifactId> | ||
<version>0.1.1</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>io.replikativ</groupId> | ||
<artifactId>superv.async</artifactId> | ||
<version>0.2.11</version> | ||
</dependency> | ||
</dependencies> | ||
<build> | ||
<sourceDirectory>src</sourceDirectory> | ||
</build> | ||
<repositories> | ||
<repository> | ||
<id>clojars</id> | ||
<url>https://repo.clojars.org/</url> | ||
</repository> | ||
</repositories> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters