diff --git a/project.clj b/project.clj index 1ddc2dc..5f6c7b6 100644 --- a/project.clj +++ b/project.clj @@ -1,10 +1,11 @@ -(defproject io.lambdaforge/wanderung "0.1.0-SNAPSHOT" +(defproject io.lambdaforge/wanderung "0.1.1-SNAPSHOT" :description "Data migration tool for Datahike" :url "http://example.com/FIXME" :license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0" :url "https://www.eclipse.org/legal/epl-2.0/"} :dependencies [[org.clojure/clojure "1.10.1"] - [io.replikativ/datahike "0.3.2-SNAPSHOT"] + [io.replikativ/datahike "0.3.3-SNAPSHOT"] + [io.replikativ/datahike-jdbc "0.1.2-SNAPSHOT"] [com.datomic/client-cloud "0.8.78" :scope "provided"] [com.cognitect/transit-clj "0.8.313"] [org.clojure/tools.cli "1.0.194"]] diff --git a/src/wanderung/core.clj b/src/wanderung/core.clj index bbadbb1..9b6c5a6 100644 --- a/src/wanderung/core.clj +++ b/src/wanderung/core.clj @@ -4,7 +4,8 @@ [wanderung.datomic-cloud :as wdc] [clojure.tools.cli :refer [parse-opts]] [clojure.string :refer [split]] - [clojure.java.io :as io]) + [clojure.java.io :as io] + [datahike-jdbc.core]) (:gen-class)) (defmulti migrate (fn [direction source-configuration target-configuration] direction))