diff --git a/.gitmodules b/.gitmodules index c6cd5c6e..9b2eccfc 100644 --- a/.gitmodules +++ b/.gitmodules @@ -5,9 +5,6 @@ [submodule "babashka.curl"] path = babashka.curl url = https://github.com/borkdude/babashka.curl -[submodule "babashka.pods"] - path = babashka.pods - url = https://github.com/babashka/babashka.pods [submodule "babashka.nrepl"] path = babashka.nrepl url = https://github.com/babashka/babashka.nrepl @@ -17,3 +14,6 @@ [submodule "process"] path = process url = https://github.com/babashka/process +[submodule "pods"] + path = pods + url = https://github.com/babashka/pods diff --git a/babashka.pods b/babashka.pods deleted file mode 160000 index a8268683..00000000 --- a/babashka.pods +++ /dev/null @@ -1 +0,0 @@ -Subproject commit a8268683e0b8eff3c3fc25fe86b3137f7591e461 diff --git a/deps.edn b/deps.edn index 77fe72f3..1035187e 100644 --- a/deps.edn +++ b/deps.edn @@ -3,7 +3,7 @@ "feature-java-time" "feature-java-nio" "feature-httpkit-client" "feature-httpkit-server" "feature-lanterna" - "sci/src" "babashka.curl/src" "babashka.pods/src" + "sci/src" "babashka.curl/src" "pods/src" "babashka.nrepl/src" "depstar/src" "process/src" "resources" "sci/resources"], @@ -21,7 +21,7 @@ com.cognitect/transit-clj {:mvn/version "1.0.324"} nrepl/bencode {:mvn/version "1.1.0"} seancorfield/next.jdbc {:mvn/version "1.0.424"} - org.postgresql/postgresql {:mvn/version "42.2.12"} + org.postgresql/postgresql {:mvn/version "42.2.18"} org.hsqldb/hsqldb {:mvn/version "2.4.0"} datascript/datascript {:mvn/version "0.18.11"} http-kit/http-kit {:mvn/version "2.5.0"} @@ -62,4 +62,8 @@ honeysql/honeysql {:mvn/version "1.0.444"} minimallist/minimallist {:mvn/version "0.0.6"} circleci/bond {:mvn/version "0.4.0"} - version-clj/version-clj {:mvn/version "0.1.2"}}}}} + version-clj/version-clj {:mvn/version "0.1.2"}}} + :clj-nvd + {:extra-deps {clj-nvd/clj-nvd {:git/url "https://github.com/miikka/clj-nvd.git" + :sha "f2ec98699e057a379baf170cb49cf7ad76874a70"}} + :main-opts ["-m" "clj-nvd.core"]}}} diff --git a/pods b/pods new file mode 160000 index 00000000..df334946 --- /dev/null +++ b/pods @@ -0,0 +1 @@ +Subproject commit df334946b932d8f2332b8a13f8cd9f48b4b02881 diff --git a/process b/process index 048533cb..dac8634d 160000 --- a/process +++ b/process @@ -1 +1 @@ -Subproject commit 048533cbc5c617eda4ea1c53f01c2dffcfe7fe0b +Subproject commit dac8634d8e20a2bd76aefcd1aa845aa7dc59bf16 diff --git a/project.clj b/project.clj index 1feb4b26..07080591 100644 --- a/project.clj +++ b/project.clj @@ -7,7 +7,7 @@ :url "https://github.com/borkdude/babashka"} :license {:name "Eclipse Public License 1.0" :url "http://opensource.org/licenses/eclipse-1.0.php"} - :source-paths ["src" "sci/src" "babashka.curl/src" "babashka.pods/src" + :source-paths ["src" "sci/src" "babashka.curl/src" "pods/src" "babashka.nrepl/src" "depstar/src" "process/src"] ;; for debugging Reflector.java code: ;; :java-source-paths ["sci/reflector/src-java"] @@ -28,7 +28,7 @@ :dependencies [[clj-commons/clj-yaml "0.7.2"]]} :feature/jdbc {:source-paths ["feature-jdbc"] :dependencies [[seancorfield/next.jdbc "1.0.424"]]} - :feature/postgresql [:feature/jdbc {:dependencies [[org.postgresql/postgresql "42.2.12"]]}] + :feature/postgresql [:feature/jdbc {:dependencies [[org.postgresql/postgresql "42.2.18"]]}] :feature/hsqldb [:feature/jdbc {:dependencies [[org.hsqldb/hsqldb "2.4.0"]]}] :feature/core-async {:source-paths ["feature-core-async"] :dependencies [[org.clojure/core.async "1.1.587"]]}