Should fix repl once more

This commit is contained in:
2024-02-08 20:36:04 -08:00
parent 959c4ed74f
commit 487a171693
4 changed files with 16 additions and 56 deletions

View File

@@ -1,5 +1,5 @@
(defproject auto-ap "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:min-lein-version "2.0.0"
:dependencies [[com.google.guava/guava "31.1-jre"]
@@ -40,7 +40,7 @@
:exclusions [com.fasterxml.jackson.dataformat/jackson-dataformat-cbor
com.fasterxml.jackson.core/jackson-core]]
[nrepl "0.8.3" :exclusions [org.clojure/tools.logging]]
[nrepl "1.1.0" :exclusions [org.clojure/tools.logging]]
[cheshire "5.9.0"]
[hawk "0.2.11"]
[clj-time "0.15.2"]
@@ -119,7 +119,7 @@
:profiles {
:dev
{:main user
{:main ^:skip-aot user
:resource-paths ["resources" "target"]
:dependencies [#_[binaryage/devteols "1.0.2"]
[postgresql/postgresql "9.3-1102.jdbc41"]
@@ -147,10 +147,9 @@
:jvm-opts ["-Dconfig=config/dev.edn" "-Xms4G" "-Xmx20G" "-XX:-OmitStackTraceInFastThrow"]}
:uberjar
{
:java-cmd "/usr/lib/jvm/java-11-openjdk/bin/java"
:prep-tasks ["fig:min" ]
:aot [auto-ap.server auto-ap.time clj-time.core clj-time.coerce clj-time.format clojure.tools.logging.impl ]
{:java-cmd "/usr/lib/jvm/java-11-openjdk/bin/java"
:aot []
:prep-tasks ["fig:min"]
:dependencies [[com.bhauman/figwheel-main "0.2.18" :exclusions [org.clojure/clojurescript
ring
ring/ring-core
@@ -181,7 +180,7 @@
}
:main auto-ap.server
:main ^:skip-aot auto-ap.server
:uberjar-name "auto-ap.jar"
:test-paths ["test/clj"]
:test-selectors {:integration (fn [m]
@@ -190,10 +189,8 @@
(clojure.string/includes? (str (:name m))
"integration")))
:functional (fn [m]
(or (clojure.string/includes? (str (:ns m))
"functional")
(clojure.string/includes? (str (:name m))
"functional")))}
:prep-tasks [ "compile"])
(or (clojure.string/includes? (str (:ns m))
"functional")
(clojure.string/includes? (str (:name m))
"functional")))})