30 lines
978 B
Groovy
30 lines
978 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
|
|
*/
|
|
|
|
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
// Applies details for `https://ge.hibernate.org`
|
|
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
apply from: file( 'system-information.gradle' )
|
|
|
|
gradleEnterprise {
|
|
server = 'https://ge.hibernate.org'
|
|
|
|
buildScan {
|
|
captureTaskInputFiles = true
|
|
publishAlways()
|
|
publishIfAuthenticated()
|
|
|
|
uploadInBackground = !settings.ext.isCiEnvironment
|
|
|
|
if ( settings.ext.isCiEnvironment ) {
|
|
tag "JOB ${System.getenv('JOB_NAME')}"
|
|
}
|
|
tag "JDK ${JavaVersion.current().toString()}"
|
|
value 'database', rootProject.hasProperty( 'db' ) ? rootProject.properties.db : 'h2'
|
|
}
|
|
} |