Skip to content

Commit

Permalink
Update to 3.24-7.100
Browse files Browse the repository at this point in the history
Add -target 1.7 for Frege compiler to match Java 7 compatible versions.
  • Loading branch information
seancorfield committed May 22, 2016
1 parent d212a95 commit 27c7b59
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject frege/lein-template "3.23.450"
(defproject frege/lein-template "3.24-7.100"
:description "Leiningen template for Frege / Clojure projects"
:url "https://github.com/Frege/frege-lein-template"
:license {:name "BSD 3-clause"
Expand Down
5 changes: 3 additions & 2 deletions src/leiningen/new/frege/project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,13 @@
:dependencies [;; Clojure runtime for mixed Clojure / Frege projects:
[org.clojure/clojure "1.7.0"]
;; need to depend on Frege for runtime:
[org.frege-lang/frege "3.23.450-SNAPSHOT"]]
[org.frege-lang/frege "3.24-7.100"]]
:repositories {"sonatype" "https://oss.sonatype.org/content/repositories/snapshots/"}
:plugins [[lein-fregec "3.23.450"]]
:plugins [[lein-fregec "3.24-7.100"]]
:source-paths ["src/clj"]
:test-paths ["test/clj"]
:frege-source-paths ["src/frege"]
:fregec-options ["-target" "1.7"]
:main {{name}}.core
:profiles {:uberjar {:aot :all
:prep-tasks ["fregec" "compile"]}})
5 changes: 3 additions & 2 deletions src/leiningen/new/frege/project.pure.clj
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@
:license {:name "BSD 3-clause"
:url "http://opensource.org/licenses/BSD-3-Clause"}
:dependencies [;; need to depend on Frege for runtime:
[org.frege-lang/frege "3.23.450-SNAPSHOT"]]
[org.frege-lang/frege "3.24-7.100"]]
:repositories {"sonatype" "https://oss.sonatype.org/content/repositories/snapshots/"}
:plugins [[lein-fregec "3.23.450"]]
:plugins [[lein-fregec "3.24-7.100"]]
:frege-source-paths ["src" "test"]
:fregec-options ["-target" "1.7"]
:profiles {:uberjar {:aot :all
:prep-tasks ["fregec" "compile"]}})

0 comments on commit 27c7b59

Please sign in to comment.