nOOb level -
I cannot get this to run. The dependencies are to be downloaded first and then it should jump to -main (is my understanding).
the project.clj is:
(defproject todo-list "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [
[org.clojure/clojure "1.8.0"]
[ring "1.4.0"]
[compojure "1.3.4"]
]
:main todo-list.core
:profiles {:dev
{:main todo-list.core/-dev-main}}
The error message is: Could not transfer artifact org.clojure:clojure:pom:1.8.0 from/to central (https://repo1.maven.org/maven2/): sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target ....etc ....etc
Could not transfer artifact clojure-complete:clojure-complete:pom:0.2.4 from/to central (https://repo1.maven.org/maven2/): sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target This could be due to a typo in :dependencies or network issues. If you are behind a proxy, try setting the 'http_proxy' environment variable.
I have looked other solutions however none seem to apply.
Since I am on Ubuntu 15.10 in an xterm on a home network without a ad-blocker using a UniFi EdgeRouter providing my connection. I do not have a configured firewall on PC.
Same problem when I use "lein deps"
BTW my OSX installation works fine and I have mirrored the same codebase to Ubuntu.
Any suggestions?
java -version
command. – Piotrek Bzdyl