Skip to content

Commit

Permalink
v0.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
martintrojer committed Aug 18, 2015
1 parent 29dac70 commit 4b6f67f
Show file tree
Hide file tree
Showing 9 changed files with 24 additions and 24 deletions.
16 changes: 8 additions & 8 deletions example/project.clj
@@ -1,15 +1,15 @@
(defproject joplin-example "0.3.3-SNAPSHOT"
(defproject joplin-example "0.3.3"
:dependencies [[org.clojure/clojure "1.7.0"]
[joplin.core "0.3.3-SNAPSHOT"]
[joplin.jdbc "0.3.3-SNAPSHOT"]
[joplin.core "0.3.3"]
[joplin.jdbc "0.3.3"]
[com.h2database/h2 "1.4.188"]
[org.postgresql/postgresql "9.4-1201-jdbc4"]
[joplin.cassandra "0.3.3-SNAPSHOT"]
[joplin.zookeeper "0.3.3-SNAPSHOT"]
[joplin.elasticsearch "0.3.3-SNAPSHOT"]
[joplin.cassandra "0.3.3"]
[joplin.zookeeper "0.3.3"]
[joplin.elasticsearch "0.3.3"]

[joplin.datomic "0.3.3-SNAPSHOT" :exclusions [joda-time]]
[joplin.hive "0.3.3-SNAPSHOT"]
[joplin.datomic "0.3.3" :exclusions [joda-time]]
[joplin.hive "0.3.3"]
]
:aliases {"migrate" ["run" "-m" "alias/migrate"]
"seed" ["run" "-m" "alias/seed"]
Expand Down
4 changes: 2 additions & 2 deletions joplin.cassandra/project.clj
@@ -1,10 +1,10 @@
(defproject joplin.cassandra "0.3.3-SNAPSHOT"
(defproject joplin.cassandra "0.3.3"
:description "Cassandra support for Joplin"
:url "http://github.com/juxt/joplin"
:scm {:name "git"
:url "https://github.com/juxt/joplin"}
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.7.0"]
[joplin.core "0.3.3-SNAPSHOT"]
[joplin.core "0.3.3"]
[clojurewerkz/cassaforte "2.0.2"]])
2 changes: 1 addition & 1 deletion joplin.core/project.clj
@@ -1,4 +1,4 @@
(defproject joplin.core "0.3.3-SNAPSHOT"
(defproject joplin.core "0.3.3"
:description "Flexible datastore migration and seeding"
:url "http://github.com/juxt/joplin"
:scm {:name "git"
Expand Down
6 changes: 3 additions & 3 deletions joplin.datomic/project.clj
@@ -1,10 +1,10 @@
(defproject joplin.datomic "0.3.3-SNAPSHOT"
(defproject joplin.datomic "0.3.3"
:description "Datomic support for Joplin"
:url "http://github.com/juxt/joplin"
:scm {:name "git"
:url "https://github.com/juxt/joplin"}
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.7.0"]
[joplin.core "0.3.3-SNAPSHOT"]
[com.datomic/datomic-free "0.9.5206"]])
[joplin.core "0.3.3"]
[com.datomic/datomic-free "0.9.5206" :exclusions [joda-time]]])
4 changes: 2 additions & 2 deletions joplin.elasticsearch/project.clj
@@ -1,11 +1,11 @@
(defproject joplin.elasticsearch "0.3.3-SNAPSHOT"
(defproject joplin.elasticsearch "0.3.3"
:description "ElasticSearch support for Joplin"
:url "http://github.com/juxt/joplin"
:scm {:name "git"
:url "https://github.com/juxt/joplin"}
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.7.0"]
[joplin.core "0.3.3-SNAPSHOT"]
[joplin.core "0.3.3"]
[clojurewerkz/elastisch "2.1.0"]
[clj-time "0.11.0"]])
4 changes: 2 additions & 2 deletions joplin.hive/project.clj
@@ -1,12 +1,12 @@
(defproject joplin.hive "0.3.3-SNAPSHOT"
(defproject joplin.hive "0.3.3"
:description "Hive Avro support for Joplin"
:url "http://github.com/juxt/joplin"
:scm {:name "git"
:url "https://github.com/juxt/joplin"}
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.7.0"]
[joplin.core "0.3.3-SNAPSHOT"]
[joplin.core "0.3.3"]
[org.clojure/java.jdbc "0.4.1"]
[org.apache.hadoop/hadoop-client "2.7.1"]
[org.apache.hive/hive-exec "1.2.1"]
Expand Down
4 changes: 2 additions & 2 deletions joplin.jdbc/project.clj
@@ -1,10 +1,10 @@
(defproject joplin.jdbc "0.3.3-SNAPSHOT"
(defproject joplin.jdbc "0.3.3"
:description "JDBC support for Joplin"
:url "http://github.com/juxt/joplin"
:scm {:name "git"
:url "https://github.com/juxt/joplin"}
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.7.0"]
[joplin.core "0.3.3-SNAPSHOT"]
[joplin.core "0.3.3"]
[ragtime/ragtime.jdbc "0.5.1"]])
4 changes: 2 additions & 2 deletions joplin.zookeeper/project.clj
@@ -1,12 +1,12 @@
(defproject joplin.zookeeper "0.3.3-SNAPSHOT"
(defproject joplin.zookeeper "0.3.3"
:description "ZooKeeper support for Joplin"
:url "http://github.com/juxt/joplin"
:scm {:name "git"
:url "https://github.com/juxt/joplin"}
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.7.0"]
[joplin.core "0.3.3-SNAPSHOT"]
[joplin.core "0.3.3"]
[zookeeper-clj "0.9.3" :exclusions [org.apache.zookeeper/zookeeper log4j]]
[org.apache.zookeeper/zookeeper "3.4.6" :exclusions [commons-codec com.sun.jmx/jmxri
com.sun.jdmk/jmxtools javax.jms/jms
Expand Down
4 changes: 2 additions & 2 deletions project.clj
@@ -1,4 +1,4 @@
(defproject joplin "0.3.3-SNAPSHOT"
(defproject joplin "0.3.3"
:description "Flexible datastore migration and seeding"
:url "http://github.com/juxt/joplin"
:scm {:name "git"
Expand All @@ -7,5 +7,5 @@
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.7.0"]]
:plugins [[lein-sub "0.3.0"]]
:sub ["joplin.jdbc" "joplin.elasticsearch" "joplin.zookeeper"
:sub ["joplin.core" "joplin.jdbc" "joplin.elasticsearch" "joplin.zookeeper"
"joplin.datomic" "joplin.cassandra" "joplin.hive"])

0 comments on commit 4b6f67f

Please sign in to comment.