Last active
August 29, 2015 14:17
-
-
Save martinhynar/3ff6cc380edbfdb4e3d6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns core | |
(:require [cheshire.core :as j])) | |
(defn -main [& args] | |
(println "Hello, World!")) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
unzip -l target/aot-0.1.0-SNAPSHOT.jar | |
Archive: target/aot-0.1.0-SNAPSHOT.jar | |
Length Date Time Name | |
--------- ---------- ----- ---- | |
119 03-17-2015 14:00 META-INF/MANIFEST.MF | |
1734 03-17-2015 14:00 META-INF/maven/aot/aot/pom.xml | |
174 03-17-2015 14:00 META-INF/leiningen/aot/aot/project.clj | |
174 03-17-2015 14:00 project.clj | |
229 03-17-2015 14:00 META-INF/leiningen/aot/aot/README.md | |
11218 03-17-2015 14:00 META-INF/leiningen/aot/aot/LICENSE | |
1820 03-17-2015 14:00 core$loading__4958__auto__.class | |
0 03-17-2015 14:00 META-INF/ | |
0 03-17-2015 14:00 META-INF/maven/ | |
0 03-17-2015 14:00 META-INF/maven/aot/ | |
0 03-17-2015 14:00 META-INF/maven/aot/aot/ | |
91 03-17-2015 14:00 META-INF/maven/aot/aot/pom.properties | |
2774 03-17-2015 14:00 core__init.class | |
907 03-17-2015 14:00 core$_main.class | |
0 03-17-2015 14:00 cheshire/ | |
4010 03-17-2015 14:00 cheshire/generate$encode_map.class | |
858 03-17-2015 14:00 cheshire/core$parsed_seq_STAR_.class | |
25477 03-17-2015 14:00 cheshire/generate_seq$generate.class | |
2759 03-17-2015 14:00 cheshire/core$write.class | |
600 03-17-2015 14:00 cheshire/generate_seq$eval397.class | |
5532 03-17-2015 14:00 cheshire/generate_seq$eval376$fn__377.class | |
1210 03-17-2015 14:00 cheshire/generate$remove_encoder.class | |
599 03-17-2015 14:00 cheshire/generate_seq$eval349.class | |
1879 03-17-2015 14:00 cheshire/core$parse_smile.class | |
--- shortened |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defproject | |
aot "0.1.0-SNAPSHOT" | |
:dependencies [ | |
[org.clojure/clojure "1.6.0"] | |
[cheshire "5.4.0"] | |
] | |
:aot [core] | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment