Created
November 19, 2014 15:25
-
-
Save Kungi/323279dd582d3c9c7f9b to your computer and use it in GitHub Desktop.
leiningen profiles
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
:profiles {:dev {:source-paths ["dev"] | |
:env {:http-port 3000 | |
:context-path "" | |
:demgen-home "home" | |
:db-path "db" | |
:db-user "sa" | |
:db-pass ""}} | |
:test {:source-paths ["dev" "test/util"] | |
:test-paths ^:replace ["test/unit"] | |
:resource-paths ["resources" "test-data"] | |
:env {:nrepl-port 4113 | |
:http-port 0 | |
:context-path "" | |
:demgen-home "test-data/test-home" | |
:db-path "db" | |
:db-user "sa" | |
:db-pass ""} | |
:dependencies [[org.senatehouse/expect-call "0.1.0"]]} | |
:acceptance-test {:source-paths ["dev" "test/util"] | |
:test-paths ^:replace ["test/acceptance"] | |
:resource-paths ["resources" "test-data"] | |
:env {:nrepl-port 4113 | |
:http-port 0 | |
:context-path "" | |
:demgen-home "test-data/test-home" | |
:db-path "db" | |
:db-user "sa" | |
:db-pass ""} | |
:dependencies [[xml-apis "1.4.01"] | |
[com.gibbonspace/clj-webdriver "0.7.0-20140911.011428-1" | |
:exclusions [org.eclipse.jetty/jetty-http | |
org.apache.httpcomponents/httpclient | |
org.apache.httpcomponents/httpmime | |
org.seleniumhq.selenium/selenium-server]] | |
[org.seleniumhq.selenium/selenium-server "2.43.1"] | |
[org.seleniumhq.selenium/selenium-java "2.43.1"] | |
[org.seleniumhq.selenium/selenium-htmlunit-driver "2.43.1"] | |
[org.senatehouse/expect-call "0.1.0"]]} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment