/* * 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 . */ description = "Experimental extension to make it easier to compile applications into a GraalVM native image" apply from: rootProject.file( 'gradle/published-java-module.gradle' ) dependencies { //No need for transitive dependencies: this is all just metadata to be used as companion jar. compileOnly project( ':hibernate-core' ) compileOnly "org.graalvm.sdk:graal-sdk:22.2.0" testImplementation project( ':hibernate-core' ) testImplementation libs.jandex }