Files
Adam Jeniski 685d1eaa93
SCIP Index / index (push) Failing after 11s
Improve local definition docs + add CI workflow
- Add signature and arglists to local var documentation
- Resolve arglists at runtime since clojure-lsp doesn't provide them
- Add GitHub Actions workflow for SCIP indexing on push

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-03 17:41:14 -05:00

21 lines
848 B
Clojure

{:paths ["src" "classes"]
:deps {org.clojure/clojure {:mvn/version "1.12.0"}
com.google.protobuf/protobuf-java {:mvn/version "3.25.3"}
org.clojure/tools.cli {:mvn/version "1.1.230"}}
:aliases
{:nrepl {:extra-deps {nrepl/nrepl {:mvn/version "1.3.0"}
cider/cider-nrepl {:mvn/version "0.50.2"}}
:main-opts ["-m" "nrepl.cmdline" "--middleware" "[cider.nrepl/cider-middleware]"]}
:build {:extra-deps {io.github.clojure/tools.build {:mvn/version "0.10.5"}}
:ns-default build}
:run {:main-opts ["-m" "scip-clojure.core"]}
:uberjar {:extra-deps {com.github.seancorfield/depstar {:mvn/version "2.1.303"}}
:exec-fn hf.depstar/uberjar
:exec-args {:jar "scip-clojure.jar"
:aot true
:main-class scip_clojure.core}}}}