I have created a Leiningen project on my local machine which I then turn into a template by doing:
lein create-template webdb
: Then I install the template:
cd webdb
lein install
: which allows me to create projects based on the template locally:
lein new webdb anewproject
: Everything works fine up to here. However if I try to deploy the template to clojars using:
cd webdb
lein deploy clojars
: then whenever I try to use the clojars profile to create a template I get an error:
lein new org.clojars.zubairq2/webdb anothernewproject
: gives the error:
Could not find metadata org.clojars.zubairq2/webdb:lein-template/maven-metadata.xml in local (/Users/faroukzquraishi/.m2/repository)
Failure to find org.clojars.zubairq2/webdb:lein-template/maven-metadata.xml in http://repo1.maven.org/maven2 was cached in the local repository, resolution will not be reattempted until the update interval of central has elapsed or updates are forced
Failure to find org.clojars.zubairq2/webdb:lein-template/maven-metadata.xml in http://clojars.org/repo/ was cached in the local repository, resolution will not be reattempted until the update interval of clojars has elapsed or updates are forced
This could be due to a typo in :dependencies or network issues.
Could not find template org.clojars.zubairq2/webdb on the classpath.
: does anyone know what I am doing wrong here?
Update - project.clj
(defproject cljstemplate "org.clojars.zubairq2/webdb"
:dependencies [
[org.clojure/clojure "1.5.1"]
[org.clojure/google-closure-library-third-party "0.0-2029"]
[domina "1.0.1"]
[crate "0.2.4"]
[prismatic/dommy "0.1.1"]
[korma "0.3.0-RC5"]
[org.postgresql/postgresql "9.2-1002-jdbc4"]
[compojure "1.1.5"]
[shoreleave "0.3.0"]
[shoreleave/shoreleave-remote-ring "0.3.0"]
[ring-middleware-format "0.3.0"]
[ring/ring-json "0.2.0"]
[jayq "2.3.0"]
]
:url "http://org.clojars.zubair2/webdb"
:plugins [
[lein-cljsbuild "0.3.0"]
[lein-httpd "1.0.0"]
[lein-ring "0.8.5"]
]
:source-paths ["src"]
:ring {:handler webapp.framework.server.core/app}
:cljsbuild
{
:builds
[
{
:source-paths ["src"]
:compiler {
:output-to "resources/public/main.js"
:optimizations :simple
:externs ["resources/public/jquery.js" "resources/public/google_maps_api_v3_3.js"]
:pretty-print false
}
}
]
}
)