mirror of
https://github.com/hibernate/hibernate-orm
synced 2025-02-08 12:14:47 +00:00
Using SSL repositories with JDK 11 ends up with the error below: javax.net.ssl.SSLHandshakeException: extension (10) should not be presented in server_hello This is a bug in JDK 11 that will apparently be fixed in the next update (planned for January 2019). Until then, we need to use non-SSL links. For more information: https://stackoverflow.com/questions/52016415/jdk-11-ssl-error-on-valid-certificate-working-in-previous-versions https://bugs.openjdk.java.net/browse/JDK-8209965 - JDK 12 issue https://bugs.openjdk.java.net/browse/JDK-8210005 - JDK 11 issue
31 lines
762 B
Groovy
31 lines
762 B
Groovy
/*
|
|
* Hibernate, Relational Persistence for Idiomatic Java
|
|
*
|
|
* License: GNU Lesser General Public License (LGPL), version 2.1 or later.
|
|
* See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
|
|
*/
|
|
repositories {
|
|
mavenCentral()
|
|
jcenter()
|
|
maven {
|
|
name 'jboss-releases'
|
|
url 'http://repository.jboss.org/nexus/content/repositories/releases/'
|
|
}
|
|
maven {
|
|
name 'jboss-snapshots'
|
|
url 'http://repository.jboss.org/nexus/content/repositories/snapshots/'
|
|
}
|
|
}
|
|
|
|
apply plugin: "groovy"
|
|
|
|
buildDir = "target"
|
|
|
|
dependencies {
|
|
compile gradleApi()
|
|
compile localGroovy()
|
|
|
|
compile 'org.hibernate.build.gradle:gradle-animalSniffer-plugin:1.0.1.Final'
|
|
compile 'org.hibernate.build.gradle:hibernate-matrix-testing:2.0.0.Final'
|
|
}
|