Project initialization.

This commit is contained in:
2023-09-09 20:30:29 +03:00
commit a7a715b942
7 changed files with 900 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
(defproject cipher-analytical-machine "0.1.0-SNAPSHOT"
:description "A program helps to learn how ciphers works."
:url "https://gitlab.com/KKlochko/cipher-analytical-machine"
:license {:name "LGPL"
:url "http://www.gnu.org/licenses/lgpl-3.0.txt"}
:dependencies [[org.clojure/clojure "1.11.1"]]
:main ^:skip-aot cipher-analytical-machine.core
:target-path "target/%s"
:profiles {:uberjar {:aot :all
:jvm-opts ["-Dclojure.compiler.direct-linking=true"]}})