-
Notifications
You must be signed in to change notification settings - Fork 36
/
project.clj
22 lines (19 loc) · 1020 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
(defproject example-with-known-vulnerabilities "1.4.17"
:description "Example project with dependencies that have known vulnerabilities"
:license {:name "The MIT License (MIT)"
:url "https://opensource.org/licenses/MIT"}
:jvm-opts ["-Dclojure.main.report=stderr"
"-XX:-OmitStackTraceInFastThrow"]
:dependencies [[org.clojure/clojure "1.10.3"]
;; No known vulnerabilities, but have dependencies
[org.clojure/data.json "0.2.6"]
[korma "0.4.3"]
[com.amazonaws/aws-lambda-java-core "1.2.0"],
;; Sub-dependency has MEDIUM rated-vulnerabilities
[org.apache.maven.wagon/wagon-http "2.2"]
;; Has HIGH severity vulnerabilities
[com.fasterxml.jackson.core/jackson-databind "2.4.2"]
[com.fasterxml.jackson.core/jackson-annotations "2.4.0"]
[org.slf4j/slf4j-api "1.7.25"]]
:source-paths ["src"]
:min-lein-version "2.6.1")