forked from amperity/gocd-vault-secrets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
34 lines (27 loc) · 833 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
(defproject amperity/gocd-vault-secrets "0.1.0-SNAPSHOT"
:description "A plugin for GoCD providing secret material support via HashiCorp Vault."
:url "https://github.com/amperity/gocd-vault-secrets"
:license {:name "Apache License 2.0"
:url "http://www.apache.org/licenses/LICENSE-2.0"}
:plugins
[[lein-cloverage "1.1.0"]]
:dependencies
[[org.clojure/clojure "1.10.1"]]
:java-source-paths ["src"]
:hiera
{:cluster-depth 4
:vertical false
:show-external false}
:profiles
{:provided
{:dependencies
[[cd.go.plugin/go-plugin-api "19.7.0"]
[com.google.code.gson/gson "2.8.5"]
[com.google.guava/guava "23.0"]]}
:repl
{:source-paths ["dev"]
:dependencies
[[org.clojure/tools.namespace "0.2.11"]]}
:uberjar
{:target-path "target/uberjar"
:aot :all}})