Skip to content

Commit

Permalink
v0.2.9
Browse files Browse the repository at this point in the history
  • Loading branch information
martintrojer committed Feb 23, 2015
1 parent 9f85e81 commit c9de5fc
Show file tree
Hide file tree
Showing 11 changed files with 20 additions and 20 deletions.
4 changes: 2 additions & 2 deletions example/project.clj
Expand Up @@ -4,9 +4,9 @@
;; check ES
;; http://192.168.59.103:9200/users/_search?pretty=true&q=*:*

(defproject joplin-example "0.2.9-SNAPSHOT"
(defproject joplin-example "0.2.9"
:dependencies [[org.clojure/clojure "1.6.0"]]
:plugins [[joplin.lein "0.2.9-SNAPSHOT"]]
:plugins [[joplin.lein "0.2.9"]]

:source-paths ["src" "joplin"]

Expand Down
4 changes: 2 additions & 2 deletions joplin.cassandra/project.clj
@@ -1,4 +1,4 @@
(defproject joplin.cassandra "0.2.9-SNAPSHOT"
(defproject joplin.cassandra "0.2.9"
:description "Cassandra support for Joplin"
:url "http://github.com/juxt/joplin"
:scm {:name "git"
Expand All @@ -7,4 +7,4 @@
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.6.0"]
[clojurewerkz/cassaforte "2.0.0"]
[joplin.core "0.2.9-SNAPSHOT"]])
[joplin.core "0.2.9"]])
2 changes: 1 addition & 1 deletion joplin.core/project.clj
@@ -1,4 +1,4 @@
(defproject joplin.core "0.2.9-SNAPSHOT"
(defproject joplin.core "0.2.9"
:description "Flexible datastore migration and seeding"
:url "http://github.com/juxt/joplin"
:scm {:name "git"
Expand Down
4 changes: 2 additions & 2 deletions joplin.datomic/project.clj
@@ -1,4 +1,4 @@
(defproject joplin.datomic "0.2.9-SNAPSHOT"
(defproject joplin.datomic "0.2.9"
:description "Datomic support for Joplin"
:url "http://github.com/juxt/joplin"
:scm {:name "git"
Expand All @@ -7,4 +7,4 @@
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.6.0"]
[com.datomic/datomic-free "0.9.5130"]
[joplin.core "0.2.9-SNAPSHOT"]])
[joplin.core "0.2.9"]])
4 changes: 2 additions & 2 deletions joplin.elasticsearch/project.clj
@@ -1,4 +1,4 @@
(defproject joplin.elasticsearch "0.2.9-SNAPSHOT"
(defproject joplin.elasticsearch "0.2.9"
:description "ElasticSearch support for Joplin"
: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.6.0"]
[clojurewerkz/elastisch "2.1.0"]
[joplin.core "0.2.9-SNAPSHOT"]
[joplin.core "0.2.9"]
[clj-time "0.9.0"]])
4 changes: 2 additions & 2 deletions joplin.hive/project.clj
@@ -1,4 +1,4 @@
(defproject joplin.hive "0.2.9-SNAPSHOT"
(defproject joplin.hive "0.2.9"
:description "Hive Avro support for Joplin"
:url "http://github.com/juxt/joplin"
:scm {:name "git"
Expand All @@ -11,4 +11,4 @@
[org.apache.hive/hive-exec "0.13.0"]
[org.apache.hive/hive-jdbc "0.13.0"]
[commons-io/commons-io "2.4"]
[joplin.core "0.2.9-SNAPSHOT"]])
[joplin.core "0.2.9"]])
4 changes: 2 additions & 2 deletions joplin.jdbc/project.clj
@@ -1,10 +1,10 @@
(defproject joplin.jdbc "0.2.9-SNAPSHOT"
(defproject joplin.jdbc "0.2.9"
: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.6.0"]
[joplin.core "0.2.9-SNAPSHOT"]
[joplin.core "0.2.9"]
[ragtime/ragtime "0.3.8"]])
2 changes: 1 addition & 1 deletion joplin.lein/project.clj
@@ -1,4 +1,4 @@
(defproject joplin.lein "0.2.9-SNAPSHOT"
(defproject joplin.lein "0.2.9"
:description "Joplin Leiningen plugin"
:url "http://github.com/juxt/joplin"
:scm {:name "git"
Expand Down
4 changes: 2 additions & 2 deletions joplin.lein/src/leiningen/joplin.clj
Expand Up @@ -2,7 +2,7 @@
(:require [leinjacker.deps :as deps])
(:use [leiningen.run :only (run)]))

(def version "0.2.9-SNAPSHOT")
(def version "0.2.9")

(def libs
{:dt "joplin.datomic"
Expand Down Expand Up @@ -30,7 +30,7 @@
(defn- add-joplin-deps [project]
(let [types (get-db-types project)]
(-> project
(deps/add-if-missing '[joplin.core "0.2.9-SNAPSHOT"])
(deps/add-if-missing '[joplin.core "0.2.9"])
(add-dep :dt types)
(add-dep :cass types)
(add-dep :jdbc types)
Expand Down
4 changes: 2 additions & 2 deletions joplin.zookeeper/project.clj
@@ -1,4 +1,4 @@
(defproject joplin.zookeeper "0.2.9-SNAPSHOT"
(defproject joplin.zookeeper "0.2.9"
:description "ZooKeeper support for Joplin"
:url "http://github.com/juxt/joplin"
:scm {:name "git"
Expand All @@ -10,5 +10,5 @@
[org.apache.zookeeper/zookeeper "3.4.6" :exclusions [commons-codec com.sun.jmx/jmxri
com.sun.jdmk/jmxtools javax.jms/jms
org.slf4j/slf4j-log4j12 log4j]]
[joplin.core "0.2.9-SNAPSHOT"]
[joplin.core "0.2.9"]
[curator "0.0.2"]])
4 changes: 2 additions & 2 deletions project.clj
@@ -1,12 +1,12 @@
(defproject joplin "0.2.9-SNAPSHOT"
(defproject joplin "0.2.9"
:description "Flexible datastore migration and seeding"
: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.6.0"]
[joplin.core "0.2.9-SNAPSHOT"]]
[joplin.core "0.2.9"]]
:plugins [[lein-sub "0.3.0"]]
:sub ["joplin.core" "joplin.jdbc" "joplin.elasticsearch" "joplin.zookeeper"
"joplin.datomic" "joplin.cassandra" "joplin.hive" "joplin.lein"])

0 comments on commit c9de5fc

Please sign in to comment.