You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This line in project.clj is causing the problem: :javac-options ["-target" "1.6" "-source" "1.6"]
It's not a blocker for those consuming by jar, it's only if you want to fire up a REPL and poke around the code.
❯ jenv shell 12
~/Documents/Code/byte-streams |HEAD✓
❯ lein do clean, compile, repl
Compiling 3 source files to /Users/matthew/Documents/Code/byte-streams/target/classes
warning: [options] bootstrap class path not set in conjunction with -source 6
error: Source option 6 is no longer supported. Use 7 or later.
error: Target option 6 is no longer supported. Use 7 or later.
Compilation of Java sources(lein javac) failed.
The text was updated successfully, but these errors were encountered:
This line in project.clj is causing the problem:
:javac-options ["-target" "1.6" "-source" "1.6"]
It's not a blocker for those consuming by jar, it's only if you want to fire up a REPL and poke around the code.
The text was updated successfully, but these errors were encountered: