hibernate-orm/hibernate-orm-build/build.gradle

40 lines
827 B
Groovy
Raw Normal View History

2021-06-22 10:53:21 -04:00
/*
* 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()
}
apply plugin: 'java-gradle-plugin'
group = 'org.hibernate.build'
version = '1.0.0-SNAPSHOT'
buildDir = "target"
dependencies {
implementation gradleApi()
2021-06-22 10:53:21 -04:00
}
tasks.compileJava {
options.encoding = 'UTF-8'
sourceCompatibility = 8
targetCompatibility = 8
}
gradlePlugin {
plugins {
databaseServicePlugin {
id = 'org.hibernate.orm.database-service'
implementationClass = 'org.hibernate.orm.db.DatabaseServicePlugin'
2021-06-22 10:53:21 -04:00
}
antlrPlugin {
id = 'org.hibernate.orm.antlr'
implementationClass = 'org.hibernate.orm.antlr.Antlr4Plugin'
}
2021-06-22 10:53:21 -04:00
}
}