telemere/slf4j/project.clj
Peter Taoussanis 6cc54527f2
Some checks are pending
Clj tests / tests (17, ubuntu-latest) (push) Waiting to run
Clj tests / tests (19, ubuntu-latest) (push) Waiting to run
Clj tests / tests (21, ubuntu-latest) (push) Waiting to run
Cljs tests / tests (21, ubuntu-latest) (push) Waiting to run
Graal tests / tests (17, macOS-latest) (push) Waiting to run
Graal tests / tests (17, ubuntu-latest) (push) Waiting to run
Graal tests / tests (17, windows-latest) (push) Waiting to run
v1.2.0 (2025-12-09)
2025-12-09 17:55:48 +01:00

29 lines
833 B
Clojure

(defproject com.taoensso/telemere-slf4j "1.2.0"
:author "Peter Taoussanis <https://www.taoensso.com>"
:description "Telemere backend/provider for SLF4J API v2"
:url "https://www.taoensso.com/telemere"
:license
{:name "Eclipse Public License - v 1.0"
:url "https://www.eclipse.org/legal/epl-v10.html"}
:scm {:name "git" :url "https://github.com/taoensso/telemere"}
:java-source-paths ["src/java"]
:javac-options ["--release" "8" "-g"] ; Support Java >= v8
:dependencies []
:profiles
{:provided
{:dependencies
[[org.clojure/clojure "1.12.3"]
[org.slf4j/slf4j-api "2.0.17"]
[com.taoensso/telemere "1.2.0"]]}
:dev
{:plugins
[[lein-pprint "1.3.2"]
[lein-ancient "0.7.0"]]}}
:aliases
{"deploy-lib" ["do" #_["build-once"] ["deploy" "clojars"] ["install"]]})