-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathproject.clj
14 lines (14 loc) · 889 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
(defproject clojure-elastic-apm "0.13.1"
:description "Clojure wrapper for Elastic APM Java Agent"
:url "https://github.com/Yleisradio/clojure-elastic-apm"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.11.1"]]
:profiles {:dev {:jvm-opts ["-javaagent:lib/elastic-apm-agent-1.52.1.jar"
"-Delastic.apm.service_name=test-service"
"-Delastic.apm.application_packages=clojure-elastic-apm"
"-Delastic.apm.server_urls=http://localhost:8200"
"-Delastic.apm.metrics_interval=1s"]
:dependencies [[clj-http "3.13.0"]
[cheshire "5.13.0"]]}
:provided {:dependencies [[co.elastic.apm/apm-agent-api "1.52.1"]]}})