Skip to content
This repository has been archived by the owner on Jan 15, 2018. It is now read-only.

Commit

Permalink
Enable uberjar build.
Browse files Browse the repository at this point in the history
  • Loading branch information
bodil committed Oct 22, 2013
1 parent e5eee4e commit 76177bd
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 4 additions & 1 deletion project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,7 @@
[org.clojure/core.match "0.2.0-rc5"]
[org.clojure/core.logic "0.8.4"]]
:jvm-opts ["-Dfile.encoding=utf-8"]
:main bodol.repl)
:main bodol.repl
:profiles
{:uberjar {:aot :all
:main bodol.repl.REPL}})
3 changes: 2 additions & 1 deletion src/bodol/repl.clj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
[bodol.scope :as scope]
[bodol.monad :as m]
[bodol.types :as t]
[bodol.error :as err]))
[bodol.error :as err])
(:gen-class :name bodol.repl.REPL :main true))

(defn eval-ast [scope ast]
(->> ast
Expand Down
1 change: 1 addition & 0 deletions src/bodol/type/check.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
(ns bodol.type.check
(:refer-clojure :exclude [resolve])
(:require [bodol.types :as t]
[bodol.lambda :as l]
[bodol.monad :as m]
Expand Down

0 comments on commit 76177bd

Please sign in to comment.