Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@kiras
Created June 26, 2010 23:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kiras/454449 to your computer and use it in GitHub Desktop.
Save kiras/454449 to your computer and use it in GitHub Desktop.
project directory structure:
/test-project/classes
/project.clj
/lib
/src/test_project/core.clj
/test
/test-project.jar
/test-project-standalone.jar
project.clj:
(defproject test-project "1.0.0-SNAPSHOT"
:description "FIXME: write"
:dependencies [[org.clojure/clojure "1.2.0-master-SNAPSHOT"]
[org.clojure/clojure-contrib "1.2.0-SNAPSHOT"]]
:dev-dependencies [[swank-clojure "1.2.1"]]
:main test-project.core)
core.clj:
(ns test-project.core
(:gen-class))
(defn -main [& args]
(println "Testing the main function"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment