/* * 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 */ // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ // Applies details for `https://ge.hibernate.org` // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ gradleEnterprise { server = 'https://ge.hibernate.org' buildScan { captureTaskInputFiles = true publishAlways() publishIfAuthenticated() def isCi = System.getenv("CI") != null || System.getProperty("CI") != null uploadInBackground = !isCi if ( isCi ) { tag "JOB ${System.getenv('JOB_NAME')}" } tag "JDK ${JavaVersion.current().toString()}" value 'database', rootProject.hasProperty( 'db' ) ? rootProject.properties.db : 'h2' } }