Reputation: 619
I have downloaded grails 3.0.4 today itself and created a new app. On running grails run-app I get a javax.net.ssl.SSLPeerUnverifiedException.
I have performed only two steps.
Tried to google the error but could not find much information. I am not behind any proxy. Any idea what could be wrong.
Upvotes: 1
Views: 93
Reputation: 53713
Grails site has the certificate expired today (https://github.com/grails/grails-core/issues/9200)
If you're using grails 3.x as you indicated you can change your build.gradle
file and replace the repository section with
repositories {
mavenLocal()
maven { url "http://repo.grails.org/grails/core" }
}
replace any https://repo.grails with http if you're using plugins too
Upvotes: 3