Last active
June 10, 2022 20:09
-
-
Save traut/d9ca1b27d6b5bd1d8dfd329953a79942 to your computer and use it in GitHub Desktop.
tmpprj to test ghost agents
This file contains 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
$ date && LEIN_JVM_OPTS= LEIN_FAST_TRAMPOLINE=1 lein trampoline run -m tmpproj && date | |
Fri Jun 10 21:57:11 CEST 2022 | |
WARNING: update-keys already refers to: #'clojure.core/update-keys in namespace: io.aviso.exception, being replaced by: #'io.aviso.exception/update-keys | |
Hello | |
Fri Jun 10 21:58:12 CEST 2022 | |
$ |
This file contains 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 tmpprj "1.0.0-SNAPSHOT" | |
:description "tmpprj" | |
:url "" | |
:license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0" | |
:url "https://www.eclipse.org/legal/epl-2.0/"} | |
:dependencies [[org.clojure/clojure "1.11.1"]] | |
:source-paths ["."] | |
:plugins [] | |
:main tmpproj | |
:aot [tmpproj]) |
This file contains 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
$ ps aux | grep java | |
traut 62339 123.7 1.4 414737136 239472 s001 R+ 10:05PM 0:01.54 java -classpath /Users/traut/Sandbox/tmpproj/test:/Users/traut/Sandbox/tmpproj/.:/Users/traut/Sandbox/tmpproj/dev-resources:/Users/traut/Sandbox/tmpproj/resources:/Users/traut/Sandbox/tmpproj/target/classes:/Users/traut/.m2/repository/org/nrepl/incomplete/0.1.0/incomplete-0.1.0.jar:/Users/traut/.m2/repository/mvxcvi/arrangement/1.1.1/arrangement-1.1.1.jar:/Users/traut/.m2/repository/mvxcvi/whidbey/2.1.0/whidbey-2.1.0.jar:/Users/traut/.m2/repository/org/clojure/clojure/1.11.1/clojure-1.11.1.jar:/Users/traut/.m2/repository/org/clojure/core.rrb-vector/0.0.13/core.rrb-vector-0.0.13.jar:/Users/traut/.m2/repository/grimradical/clj-semver/0.3.0/clj-semver-0.3.0.jar:/Users/traut/.m2/repository/org/clojars/brenton/google-diff-match-patch/0.1/google-diff-match-patch-0.1.jar:/Users/traut/.m2/repository/robert/hooke/1.3.0/hooke-1.3.0.jar:/Users/traut/.m2/repository/io/aviso/pretty/0.1.35/pretty-0.1.35.jar:/Users/traut/.m2/repository/org/clojure/data.codec/0.1.1/data.codec-0.1.1.jar:/Users/traut/.m2/repository/org/antlr/antlr4/4.5.3/antlr4-4.5.3.jar:/Users/traut/.m2/repository/nrepl/nrepl/0.8.3/nrepl-0.8.3.jar:/Users/traut/.m2/repository/instaparse/instaparse/1.4.1/instaparse-1.4.1.jar:/Users/traut/.m2/repository/org/clojure/core.specs.alpha/0.2.62/core.specs.alpha-0.2.62.jar:/Users/traut/.m2/repository/org/clojure/spec.alpha/0.3.218/spec.alpha-0.3.218.jar:/Users/traut/.m2/repository/venantius/glow/0.1.5/glow-0.1.5.jar:/Users/traut/.m2/repository/fipp/fipp/0.6.14/fipp-0.6.14.jar:/Users/traut/.m2/repository/clj-antlr/clj-antlr/0.2.3/clj-antlr-0.2.3.jar:/Users/traut/.m2/repository/mvxcvi/puget/1.1.0/puget-1.1.0.jar:/Users/traut/.m2/repository/venantius/ultra/0.6.0/ultra-0.6.0.jar:/Users/traut/.m2/repository/org/antlr/antlr4-runtime/4.5.3/antlr4-runtime-4.5.3.jar -Dfile.encoding=UTF-8 -XX:-OmitStackTraceInFastThrow -XX:+TieredCompilation -XX:TieredStopAtLevel=1 -Dclojure.compile.path=/Users/traut/Sandbox/tmpproj/target/classes -Dtmpprj.version=1.0.0-SNAPSHOT -Dclojure.debug=false clojure.main -i /private/var/folders/15/31dw1_vx3c97xffjh0nbtp_40000gn/T/form-init2888506915098950494.clj | |
$ cat ~/.lein/profiles.clj | |
{:user {:plugins [[venantius/ultra "0.6.0"]]}} |
This file contains 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 tmpproj) | |
(defn -main | |
[& args] | |
(println "Hello")) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment