Skip to content

Commit 7e44b3d

Browse files
committed
Compile to Java 8.
1 parent 4a361d3 commit 7e44b3d

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

project.clj

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,18 @@
66
;; the terms of this license.
77
;; You must not remove this notice, or any other, from this software.
88

9-
(defproject uncomplicate/clojurecuda "0.18.0"
9+
(defproject uncomplicate/clojurecuda "0.19.0"
1010
:description "ClojureCUDA is a Clojure library for parallel computations with Nvidia's CUDA."
1111
:url "https://github.com/uncomplicate/clojurecuda"
1212
:scm {:name "git"
1313
:url "https://github.com/uncomplicate/clojurecuda"}
1414
:license {:name "Eclipse Public License"
1515
:url "http://www.eclipse.org/legal/epl-v10.html"}
16-
:dependencies [[org.clojure/clojure "1.11.1"]
16+
:dependencies [[org.clojure/clojure "1.11.3"]
1717
[org.clojure/core.async "1.6.681"]
18-
[uncomplicate/commons "0.14.0"]
19-
[uncomplicate/fluokitten "0.9.2"]
20-
[org.uncomplicate/clojure-cpp "0.2.0"]
18+
[uncomplicate/commons "0.15.0"]
19+
[uncomplicate/fluokitten "0.10.0"]
20+
[org.uncomplicate/clojure-cpp "0.3.0"]
2121
[org.bytedeco/cuda-platform "12.3-8.9-1.5.10"]]
2222

2323
:profiles {:dev {:plugins [[lein-midje "3.2.1"]
@@ -41,6 +41,9 @@
4141
:jvm-opts ^:replace ["-Djavacpp.platform=linux-x86_64"]}}
4242

4343
;;:repositories [["snapshots" "https://oss.sonatype.org/content/repositories/snapshots"]]
44+
45+
:javac-options ["-target" "1.8" "-source" "1.8" "-Xlint:-options"]
46+
4447
:source-paths ["src/clojure" "src/cuda"]
4548
:test-paths ["test/clojure" "test/cuda"]
4649
:java-source-paths ["src/java"])

0 commit comments

Comments
 (0)