From b02d15a5499129e3fb491ca3257935bbb2b8fcb6 Mon Sep 17 00:00:00 2001 From: Tommi Reiman Date: Mon, 18 Mar 2019 08:58:25 +0200 Subject: [PATCH] Remove --release option as it fails the cljs build * doesn't actually do anything (need to compile manually with 1.8) * see related issue #242 * fails: https://circleci.com/gh/metosin/reitit/1855 --- project.clj | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/project.clj b/project.clj index 8317ce8f..8a116376 100644 --- a/project.clj +++ b/project.clj @@ -10,7 +10,8 @@ :metadata {:doc/format :markdown}} :scm {:name "git" :url "https://github.com/metosin/reitit"} - :javac-options ["-Xlint:unchecked" "-target" "1.8" "-source" "1.8" "--release" "8"] + ;; TODO: need to verify that the code actually workd with Java1.8, see #242 + :javac-options ["-Xlint:unchecked" "-target" "1.8" "-source" "1.8"] :managed-dependencies [[metosin/reitit "0.3.1"] [metosin/reitit-core "0.3.1"] [metosin/reitit-dev "0.3.1"]