--
You received this message because you are subscribed to the Google Groups "Area515 - Des Moines Maker Space" group.
To unsubscribe from this group and stop receiving emails from it, send an email to dsmhackerspac...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Sounds like a poss an ssl issue?
To see if it is an ssl issue, turn off ssl. If it is, import the self-signed cert (export it from your browser) into your machines java keystore.
In your build.gradle file, specify the url for your repo without ssl.
As an example build.gradle file with ssl
https://docs.gradle.org/current/userguide/artifact_dependencies_tutorial.html
apply plugin: 'java'
repositories {
mavenCentral()
}
dependencies {
compile group: 'org.hibernate', name: 'hibernate-core', version:'3.6.7.Final'
testCompile group: 'junit', name:'junit', version: '4.+'
}
An example build.gradle file without ssl (formatting is bad)
apply plugin: 'java'
repositories {
maven {
url "http://repo1.maven.org/maven2" } jcenter { url "http://jcenter.bintray.com/" } }
dependencies {
compile group: 'org.hibernate', name: 'hibernate-core', version: '3.6.7.Final'
testCompile group: 'junit', name: 'junit', version: '4.+'}
Have you checked to see if the time/date is correct?
Yes, the date command returns the correct date.
Sean, I changed to non https:// and kicked it off. I'll see later.
Does anyone know how to convince maven to also use http?
-Dmaven.wagon.http.ssl.insecure=true -Dmaven.wagon.http.ssl.allowall=true -Dmaven.wagon.http.ssl.ignore.validity.dates=true