Rammohan
Rammohan

Reputation: 619

grails 3.0.4 throws SSLPeerUnverifiedException

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.

  1. grails create-app demoapp
  2. grails run-app

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

Answers (1)

Frederic Henri
Frederic Henri

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

Related Questions