Skip to content

Instantly share code, notes, and snippets.

@techwhizbang
Created June 18, 2014 21:26

Revisions

  1. techwhizbang created this gist Jun 18, 2014.
    18 changes: 18 additions & 0 deletions profiles.clj
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,18 @@
    {:user {:compile-path ".out/",

    :target-path ".dist/",

    :clean-targets [:target-path :compile-path],

    :mirrors {#".+" {:url "https://artifactory/repo"
    :username ~(System/getenv "username")
    :password ~(System/getenv "password")}},

    :deploy-repositories [["releases" {:url "https://artifactory/artifactory-local"
    :username ~(System/getenv "username")
    :password ~(System/getenv "password")
    :sign-releases false}]
    ["snapshots" {:url "https://artifactory/artifactory-local"
    :username ~(System/getenv "username")
    :password ~(System/getenv "password")
    :sign-releases false}]]}}