-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added overarching project.clj / starting to use lein-monolith/lein-v …
…combination to orchestrate the different subprojects. Still WIP, got some errors running "lein monolith each do clean, check, install".
- Loading branch information
Dr. Christian Betz
committed
Sep 8, 2017
1 parent
716484d
commit c34e0a4
Showing
20 changed files
with
329 additions
and
328 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,34 +1,27 @@ | ||
(defproject ymilky/franzy-admin "0.0.2-SNAPSHOT" | ||
:description "A Kafka Clojure Admin client, with support for topic, partition, group, cluster management, and more." | ||
:url "https://github.com/ymilky/franzy-admin" | ||
:author "ymilky" | ||
:license {:name "Eclipse Public License" | ||
:url "http://www.eclipse.org/legal/epl-v10.html"} | ||
:repositories {"snapshots" {:url "https://clojars.org/repo" | ||
:username :env | ||
:password :env | ||
:sign-releases false} | ||
"releases" {:url "https://clojars.org/repo" | ||
:username :env | ||
:password :env | ||
:sign-releases false}} | ||
:dependencies [[org.clojure/clojure "1.8.0"] | ||
[prismatic/schema "1.1.0"] | ||
[org.apache.kafka/kafka_2.11 "0.9.0.1" :exclusions [org.scala-lang/scala-library]] | ||
[org.scala-lang/scala-library "2.11.8"] | ||
[ymilky/franzy-common "0.0.2-SNAPSHOT"] | ||
[com.taoensso/timbre "4.3.1"]] | ||
:plugins [[lein-codox "0.9.4"]] | ||
:codox {:metadata {:doc/format :markdown} | ||
:doc-paths ["README.md"] | ||
:output-path "doc/api"} | ||
:profiles {:dev {:dependencies [[midje "1.7.0"] | ||
[jarohen/nomad "0.7.2"]] | ||
:plugins [[lein-midje "3.2"] | ||
[lein-set-version "0.4.1"] | ||
[lein-update-dependency "0.1.2"] | ||
[lein-pprint "1.1.1"]]} | ||
:reflection-check {:global-vars | ||
{*warn-on-reflection* true | ||
*assert* false | ||
*unchecked-math* :warn-on-boxed}}}) | ||
(defproject clj-kafka.franzy/admin "0.0.0" | ||
:description "A Kafka Clojure Admin client, with support for topic, partition, group, cluster management, and more." | ||
:dependencies [[org.clojure/clojure "1.8.0"] | ||
[prismatic/schema "1.1.0"] | ||
[org.apache.kafka/kafka_2.11 "0.9.0.1" :exclusions [org.scala-lang/scala-library]] | ||
[org.scala-lang/scala-library "2.11.8"] | ||
[clj-kafka.franzy/common nil] | ||
[com.taoensso/timbre "4.3.1"]] | ||
:monolith/inherit true | ||
:middleware [leiningen.v/dependency-version-from-scm] | ||
|
||
:plugins | ||
[[lein-monolith "1.0.1"] | ||
[com.roomkey/lein-v "6.1.0-cb-9-0x521a"] [lein-codox "0.9.4"]] | ||
:codox {:metadata {:doc/format :markdown} | ||
:doc-paths ["README.md"] | ||
:output-path "doc/api"} | ||
:profiles {:dev {:dependencies [[midje "1.7.0"] | ||
[jarohen/nomad "0.7.2"]] | ||
:plugins [[lein-midje "3.2"] | ||
[lein-set-version "0.4.1"] | ||
[lein-update-dependency "0.1.2"] | ||
[lein-pprint "1.1.1"]]} | ||
:reflection-check {:global-vars | ||
{*warn-on-reflection* true | ||
*assert* false | ||
*unchecked-math* :warn-on-boxed}}}) |
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,30 +1,24 @@ | ||
(defproject ymilky/franzy-avro "0.0.1" | ||
:description "A Kafka Serializer/Deserializer supporting Avro, and an add-on for Franzy, a Clojure Kafka suite of libraries." | ||
:url "https://github.com/ymilky/franzy-avro" | ||
:author "ymilky" | ||
:license {:name "Eclipse Public License" | ||
:url "http://www.eclipse.org/legal/epl-v10.html"} | ||
:repositories {"snapshots" {:url "https://clojars.org/repo" | ||
:username :env | ||
:password :env | ||
:sign-releases false} | ||
"releases" {:url "https://clojars.org/repo" | ||
:username :env | ||
:password :env | ||
:sign-releases false}} | ||
:dependencies [[org.clojure/clojure "1.8.0"] | ||
[org.apache.kafka/kafka-clients "0.9.0.1"] | ||
[com.damballa/abracad "0.4.13"]] | ||
:plugins [[lein-codox "0.9.4"]] | ||
:codox {:metadata {:doc/format :markdown} | ||
:doc-paths ["README.md"] | ||
:output-path "doc/api"} | ||
:profiles {:dev {:dependencies [[midje "1.7.0"]] | ||
:plugins [[lein-midje "3.2"] | ||
[lein-set-version "0.4.1"] | ||
[lein-update-dependency "0.1.2"] | ||
[lein-pprint "1.1.1"]]} | ||
:reflection-check {:global-vars | ||
{*warn-on-reflection* true | ||
*assert* false | ||
*unchecked-math* :warn-on-boxed}}}) | ||
(defproject clj-kafka.franzy/avro "0.0.0" | ||
:description "A Kafka Serializer/Deserializer supporting Avro, and an add-on for Franzy, a Clojure Kafka suite of libraries." | ||
:dependencies [[org.clojure/clojure "1.8.0"] | ||
[org.apache.kafka/kafka-clients "0.9.0.1"] | ||
[com.damballa/abracad "0.4.13"]] | ||
:monolith/inherit true | ||
:middleware [leiningen.v/dependency-version-from-scm] | ||
|
||
:plugins | ||
[[lein-monolith "1.0.1"] | ||
[com.roomkey/lein-v "6.1.0-cb-9-0x521a"] | ||
[lein-codox "0.9.4"]] | ||
:codox {:metadata {:doc/format :markdown} | ||
:doc-paths ["README.md"] | ||
:output-path "doc/api"} | ||
:profiles {:dev {:dependencies [[midje "1.7.0"]] | ||
:plugins [[lein-midje "3.2"] | ||
[lein-set-version "0.4.1"] | ||
[lein-update-dependency "0.1.2"] | ||
[lein-pprint "1.1.1"]]} | ||
:reflection-check {:global-vars | ||
{*warn-on-reflection* true | ||
*assert* false | ||
*unchecked-math* :warn-on-boxed}}}) |
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,30 +1,22 @@ | ||
(defproject ymilky/franzy-common "0.0.2-SNAPSHOT" | ||
:description "Common resources for Kafka libraries, such as schemas, utility functions, and configuration." | ||
:url "https://github.com/ymilky/franzy-common" | ||
:author "ymilky" | ||
:license {:name "Eclipse Public License" | ||
:url "http://www.eclipse.org/legal/epl-v10.html"} | ||
:repositories {"snapshots" {:url "https://clojars.org/repo" | ||
:username :env | ||
:password :env | ||
:sign-releases false} | ||
"releases" {:url "https://clojars.org/repo" | ||
:username :env | ||
:password :env | ||
:sign-releases false}} | ||
:dependencies [[org.clojure/clojure "1.8.0"] | ||
[prismatic/schema "1.1.0"]] | ||
:plugins [[lein-codox "0.9.4"]] | ||
:codox {:metadata {:doc/format :markdown} | ||
:doc-paths ["README.md"] | ||
:output-path "doc/api"} | ||
:profiles {:dev {:dependencies [[midje "1.7.0"] | ||
[jarohen/nomad "0.7.2"]] | ||
:plugins [[lein-midje "3.2"] | ||
[lein-set-version "0.4.1"] | ||
[lein-update-dependency "0.1.2"] | ||
[lein-pprint "1.1.1"]]} | ||
:reflection-check {:global-vars | ||
{*warn-on-reflection* true | ||
*assert* false | ||
*unchecked-math* :warn-on-boxed}}}) | ||
(defproject clj-kafka.franzy/common "0.0.0" | ||
:description "Common resources for Kafka libraries, such as schemas, utility functions, and configuration." | ||
:monolith/inherit true | ||
|
||
:dependencies [[org.clojure/clojure "1.8.0"] | ||
[prismatic/schema "1.1.0"]] | ||
:plugins [[lein-monolith "1.0.1"] | ||
[com.roomkey/lein-v "6.1.0-cb-9-0x521a"] | ||
[lein-codox "0.9.4"]] | ||
:codox {:metadata {:doc/format :markdown} | ||
:doc-paths ["README.md"] | ||
:output-path "doc/api"} | ||
:profiles {:dev {:dependencies [[midje "1.7.0"] | ||
[jarohen/nomad "0.7.2"]] | ||
:plugins [[lein-midje "3.2"] | ||
[lein-set-version "0.4.1"] | ||
[lein-update-dependency "0.1.2"] | ||
[lein-pprint "1.1.1"]]} | ||
:reflection-check {:global-vars | ||
{*warn-on-reflection* true | ||
*assert* false | ||
*unchecked-math* :warn-on-boxed}}}) |
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,28 +1,26 @@ | ||
(defproject mastodonc/franzy "0.0.4-SNAPSHOT" | ||
:description "Clojure Kafka client with support for Kafka producer, consumer, rebalancing, administration, and validation." | ||
:url "https://github.com/mastodonc/franzy" | ||
:author "ymilky and others, but see README" | ||
:license {:name "Eclipse Public License" | ||
:url "http://www.eclipse.org/legal/epl-v10.html"} | ||
:repositories {"snapshots" {:url "https://clojars.org/repo" | ||
:creds :gpg} | ||
"releases" {:url "https://clojars.org/repo" | ||
:creds :gpg}} | ||
:dependencies [[org.clojure/clojure "1.8.0"] | ||
[prismatic/schema "1.0.5"] | ||
[org.apache.kafka/kafka-clients "0.10.0.1"] | ||
[lbradstreet/franzy-common "0.0.2"]] | ||
:plugins [[lein-codox "0.9.4"]] | ||
:codox {:metadata {:doc/format :markdown} | ||
:doc-paths ["README.md"] | ||
:output-path "doc/api"} | ||
:profiles {:dev | ||
{:dependencies [[midje "1.7.0"] | ||
[com.taoensso/timbre "4.3.1"]] | ||
:plugins [[lein-midje "3.2"] | ||
[lein-set-version "0.4.1"] | ||
[lein-update-dependency "0.1.2"] | ||
[lein-pprint "1.1.1"]]} | ||
:reflection-check {:global-vars {*warn-on-reflection* true | ||
*assert* false | ||
*unchecked-math* :warn-on-boxed}}}) | ||
(defproject clj-kafka.franzy/core "0.0.0" | ||
:description "Clojure Kafka client with support for Kafka producer, consumer, rebalancing, administration, and validation." | ||
:dependencies [[org.clojure/clojure "1.8.0"] | ||
[prismatic/schema "1.0.5"] | ||
[org.apache.kafka/kafka-clients "0.10.0.1"] | ||
[lbradstreet/franzy-common "0.0.2"]] | ||
:monolith/inherit true | ||
:middleware [leiningen.v/dependency-version-from-scm] | ||
|
||
:plugins | ||
[[lein-monolith "1.0.1"] | ||
[com.roomkey/lein-v "6.1.0-cb-9-0x521a"] | ||
[lein-codox "0.9.4"]] | ||
:codox {:metadata {:doc/format :markdown} | ||
:doc-paths ["README.md"] | ||
:output-path "doc/api"} | ||
:profiles {:dev | ||
{:dependencies [[midje "1.7.0"] | ||
[com.taoensso/timbre "4.3.1"]] | ||
:plugins [[lein-midje "3.2"] | ||
[lein-set-version "0.4.1"] | ||
[lein-update-dependency "0.1.2"] | ||
[lein-pprint "1.1.1"]]} | ||
:reflection-check {:global-vars {*warn-on-reflection* true | ||
*assert* false | ||
*unchecked-math* :warn-on-boxed}}}) |
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,35 +1,29 @@ | ||
(defproject ymilky/franzy-embedded "0.0.2-SNAPSHOT" | ||
:description "Embedded Kafka servers with full configuration and validation, components, and more." | ||
:url "https://github.com/ymilky/franzy-embedded" | ||
:author "ymilky" | ||
:license {:name "Eclipse Public License" | ||
:url "http://www.eclipse.org/legal/epl-v10.html"} | ||
:repositories {"snapshots" {:url "https://clojars.org/repo" | ||
:username :env | ||
:password :env | ||
:sign-releases false} | ||
"releases" {:url "https://clojars.org/repo" | ||
:username :env | ||
:password :env | ||
:sign-releases false}} | ||
:dependencies [[org.clojure/clojure "1.8.0"] | ||
[prismatic/schema "1.1.0"] | ||
[com.taoensso/timbre "4.3.1"] | ||
[com.stuartsierra/component "0.3.1"] | ||
[org.apache.kafka/kafka_2.11 "0.9.0.1" :exclusions [org.scala-lang/scala-library]] | ||
[org.scala-lang/scala-library "2.11.8"] | ||
[ymilky/franzy-common "0.0.2-SNAPSHOT"]] | ||
:plugins [[lein-codox "0.9.4"]] | ||
:codox {:metadata {:doc/format :markdown} | ||
:doc-paths ["README.md"] | ||
:output-path "doc/api"} | ||
:profiles {:dev | ||
{:dependencies [[midje "1.7.0"] | ||
[jarohen/nomad "0.7.2"]] | ||
:plugins [[lein-midje "3.2"] | ||
[lein-set-version "0.4.1"] | ||
[lein-update-dependency "0.1.2"] | ||
[lein-pprint "1.1.1"]]} | ||
:reflection-check {:global-vars {*warn-on-reflection* true | ||
*assert* false | ||
*unchecked-math* :warn-on-boxed}}}) | ||
(defproject clj-kafka.franzy/embedded "0.0.0" | ||
:description "Embedded Kafka servers with full configuration and validation, components, and more." | ||
:dependencies [[org.clojure/clojure "1.8.0"] | ||
[prismatic/schema "1.1.0"] | ||
[com.taoensso/timbre "4.3.1"] | ||
[com.stuartsierra/component "0.3.1"] | ||
[org.apache.kafka/kafka_2.11 "0.9.0.1" :exclusions [org.scala-lang/scala-library]] | ||
[org.scala-lang/scala-library "2.11.8"] | ||
[clj-kafka.franzy/common nil]] | ||
:monolith/inherit true | ||
:middleware [leiningen.v/dependency-version-from-scm] | ||
|
||
:plugins | ||
[[lein-monolith "1.0.1"] | ||
[com.roomkey/lein-v "6.1.0-cb-9-0x521a"] | ||
[lein-codox "0.9.4"]] | ||
:codox {:metadata {:doc/format :markdown} | ||
:doc-paths ["README.md"] | ||
:output-path "doc/api"} | ||
:profiles {:dev | ||
{:dependencies [[midje "1.7.0"] | ||
[jarohen/nomad "0.7.2"]] | ||
:plugins [[lein-midje "3.2"] | ||
[lein-set-version "0.4.1"] | ||
[lein-update-dependency "0.1.2"] | ||
[lein-pprint "1.1.1"]]} | ||
:reflection-check {:global-vars {*warn-on-reflection* true | ||
*assert* false | ||
*unchecked-math* :warn-on-boxed}}}) |
Oops, something went wrong.