2021-08-02 19:04:41 -04:00
|
|
|
import org.asciidoctor.gradle.jvm.AsciidoctorTask
|
|
|
|
|
|
|
|
plugins {
|
|
|
|
id 'org.asciidoctor.jvm.convert' version '3.1.0'
|
|
|
|
}
|
2017-12-13 10:15:22 -05:00
|
|
|
|
2015-05-19 00:23:35 -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>.
|
|
|
|
*/
|
2018-01-10 16:06:58 -05:00
|
|
|
|
2021-06-28 16:59:35 -04:00
|
|
|
def projectsToIncludeInAggregatedJavadoc = [
|
|
|
|
':hibernate-core',
|
|
|
|
':hibernate-testing',
|
|
|
|
':hibernate-envers',
|
|
|
|
':hibernate-agroal',
|
|
|
|
':hibernate-c3p0',
|
|
|
|
':hibernate-graalvm',
|
|
|
|
':hibernate-hikaricp',
|
|
|
|
':hibernate-jcache',
|
|
|
|
':hibernate-micrometer',
|
|
|
|
':hibernate-proxool',
|
|
|
|
':hibernate-vibur',
|
|
|
|
':hibernate-gradle-plugin',
|
|
|
|
':hibernate-enhance-maven-plugin',
|
|
|
|
':hibernate-jpamodelgen',
|
|
|
|
]
|
|
|
|
|
|
|
|
projectsToIncludeInAggregatedJavadoc.each {projectPath ->
|
|
|
|
evaluationDependsOn projectPath
|
2018-01-10 16:06:58 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
apply from: rootProject.file( 'gradle/java-module.gradle' )
|
2021-07-14 12:44:35 -04:00
|
|
|
apply plugin: 'org.hibernate.matrix-test'
|
2016-02-18 04:16:46 -05:00
|
|
|
|
2021-06-28 16:59:35 -04:00
|
|
|
tasks.build.dependsOn 'buildDocs'
|
2013-11-22 15:51:56 -05:00
|
|
|
defaultTasks 'buildDocs'
|
|
|
|
|
2015-03-24 21:38:39 -04:00
|
|
|
|
2011-03-22 11:39:53 -04:00
|
|
|
dependencies {
|
2016-02-08 10:33:09 -05:00
|
|
|
ext.pressgangVersion = '3.0.0'
|
2013-11-22 15:51:56 -05:00
|
|
|
|
2021-05-14 15:59:59 -04:00
|
|
|
implementation project( ':hibernate-core' )
|
2016-02-08 10:33:09 -05:00
|
|
|
|
2021-05-14 15:59:59 -04:00
|
|
|
annotationProcessor project( ':hibernate-jpamodelgen' )
|
2011-03-29 16:14:09 -04:00
|
|
|
|
2021-05-14 15:59:59 -04:00
|
|
|
testImplementation project(':hibernate-testing')
|
|
|
|
testImplementation project(':hibernate-envers')
|
2019-07-25 12:39:32 -04:00
|
|
|
// todo (6.0) - add back hibernate-spatial dependency
|
2021-05-14 15:59:59 -04:00
|
|
|
//testImplementation project(':hibernate-spatial')
|
|
|
|
testImplementation project( ':hibernate-jcache' )
|
|
|
|
testImplementation libraries.jcache
|
|
|
|
testImplementation project( path: ':hibernate-core', configuration: 'tests' )
|
|
|
|
|
|
|
|
testImplementation 'org.apache.commons:commons-lang3:3.4'
|
|
|
|
testImplementation 'org.osgi:org.osgi.core:4.3.1'
|
|
|
|
|
|
|
|
testImplementation libraries.mockito
|
|
|
|
testImplementation libraries.mockito_inline
|
|
|
|
|
|
|
|
testRuntimeOnly libraries.wildfly_transaction_client
|
|
|
|
testRuntimeOnly libraries.ehcache3
|
2016-01-13 01:28:20 -05:00
|
|
|
}
|
2013-11-22 15:51:56 -05:00
|
|
|
|
2016-03-22 09:16:21 -04:00
|
|
|
|
2018-04-30 11:38:09 -04:00
|
|
|
if ( project.ormVersion.isSnapshot ) {
|
2018-01-22 12:28:24 -05:00
|
|
|
// only run the ci build tasks for SNAPSHOT versions
|
|
|
|
task ciBuild( dependsOn: [clean, test] )
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
task release( dependsOn: [clean, test] )
|
|
|
|
}
|
|
|
|
|
2021-05-08 16:42:43 -04:00
|
|
|
//tasks.test.include 'org/hibernate/'
|
|
|
|
|
2016-02-11 16:59:13 -05:00
|
|
|
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
// grouping tasks - declaration, see below for task dependency definitions
|
|
|
|
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2013-11-22 15:51:56 -05:00
|
|
|
task buildDocs {
|
2016-02-11 16:59:13 -05:00
|
|
|
group 'Documentation'
|
|
|
|
description 'Grouping task for performing all documentation building tasks'
|
|
|
|
}
|
|
|
|
|
|
|
|
task buildDocsForPublishing {
|
|
|
|
group 'Documentation'
|
|
|
|
description 'Grouping task for building all documentation for publishing (release)'
|
2013-11-22 15:51:56 -05:00
|
|
|
}
|
|
|
|
|
2016-02-11 16:59:13 -05:00
|
|
|
|
|
|
|
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
// aggregated JavaDoc
|
|
|
|
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2013-11-22 15:51:56 -05:00
|
|
|
|
|
|
|
final File javadocDir = mkdir( new File( (File) project.buildDir, 'javadocs' ) );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Builds the JavaDocs aggregated (unified) across all the sub-projects
|
|
|
|
*/
|
|
|
|
task aggregateJavadocs(type: Javadoc) {
|
2021-06-28 16:59:35 -04:00
|
|
|
description = 'Builds an aggregated JavaDoc across all ORM sub-projects'
|
2013-11-22 15:51:56 -05:00
|
|
|
|
2017-12-26 12:27:58 -05:00
|
|
|
final int currentYear = new GregorianCalendar().get( Calendar.YEAR )
|
|
|
|
|
|
|
|
// exclude any generated sources and internal packages
|
|
|
|
exclude( '**/generated-src/**' )
|
|
|
|
exclude( '**/internal/**' )
|
|
|
|
|
2013-11-22 15:51:56 -05:00
|
|
|
|
2017-12-26 12:27:58 -05:00
|
|
|
// apply standard config
|
|
|
|
maxMemory = '512m'
|
|
|
|
destinationDir = javadocDir
|
|
|
|
configure( options ) {
|
|
|
|
overview = project.file( 'src/main/javadoc/overview.html' )
|
|
|
|
windowTitle = 'Hibernate JavaDocs'
|
|
|
|
docTitle = "Hibernate JavaDoc ($project.version)"
|
2021-06-02 17:14:23 -04:00
|
|
|
bottom = "Copyright © 2001-$currentYear <a href=\"https://redhat.com\">Red Hat, Inc.</a> All Rights Reserved."
|
2017-12-26 12:27:58 -05:00
|
|
|
use = true
|
|
|
|
options.encoding = 'UTF-8'
|
|
|
|
|
|
|
|
links = [
|
|
|
|
'https://docs.oracle.com/javase/8/docs/api/',
|
2021-06-02 17:14:23 -04:00
|
|
|
'https://docs.jboss.org/hibernate/beanvalidation/spec/2.0/api/',
|
|
|
|
'https://docs.jboss.org/cdi/api/2.0/',
|
2018-06-11 06:57:38 -04:00
|
|
|
'https://javaee.github.io/javaee-spec/javadocs/'
|
2017-12-26 12:27:58 -05:00
|
|
|
]
|
2019-05-24 04:50:02 -04:00
|
|
|
|
2020-11-09 04:13:34 -05:00
|
|
|
if ( gradle.ext.javaVersions.main.compiler.asInt() >= 11 ) {
|
2019-05-24 04:50:02 -04:00
|
|
|
//The need to set `--source 1.8` applies to all JVMs after 11, and also to 11
|
2019-05-29 13:43:36 -04:00
|
|
|
// but after excluding the first two builds; see also specific comments on
|
|
|
|
// https://bugs.openjdk.java.net/browse/JDK-8212233?focusedCommentId=14245762
|
|
|
|
// For now, let's be compatible with JDK 11.0.3+. We can improve on it if people
|
|
|
|
// complain they cannot build with JDK 11.0.0, 11.0.1 and 11.0.2.
|
2020-11-09 04:13:34 -05:00
|
|
|
logger.lifecycle "Forcing Javadoc in Java 8 compatible mode"
|
|
|
|
options.source = gradle.ext.baselineJavaVersion
|
2019-05-29 13:43:36 -04:00
|
|
|
}
|
|
|
|
|
2020-04-03 04:20:45 -04:00
|
|
|
options.addStringOption( 'Xdoclint:none', '-quiet' )
|
2020-11-09 06:09:02 -05:00
|
|
|
|
|
|
|
if ( gradle.ext.javaToolchainEnabled ) {
|
|
|
|
options.setJFlags( getProperty( 'toolchain.javadoc.jvmargs' ).toString().
|
|
|
|
split( ' ' ).toList().findAll( { !it.isEmpty() } ) )
|
|
|
|
}
|
2017-12-26 12:27:58 -05:00
|
|
|
}
|
2013-11-22 15:51:56 -05:00
|
|
|
|
2020-11-09 04:13:34 -05:00
|
|
|
if ( gradle.ext.javaToolchainEnabled ) {
|
|
|
|
// Display version of Java tools
|
|
|
|
doFirst {
|
|
|
|
logger.lifecycle "Aggregating javadoc with '${javadocTool.get().metadata.installationPath}'"
|
|
|
|
}
|
2017-12-26 12:27:58 -05:00
|
|
|
}
|
2013-11-22 15:51:56 -05:00
|
|
|
|
|
|
|
// process each project, building up:
|
|
|
|
// 1) appropriate sources
|
|
|
|
// 2) classpath
|
2021-06-28 16:59:35 -04:00
|
|
|
projectsToIncludeInAggregatedJavadoc.each {projectPath ->
|
|
|
|
def includeProject = parent.project(projectPath)
|
2013-12-02 21:53:19 -05:00
|
|
|
|
2021-06-28 16:59:35 -04:00
|
|
|
// we only care about the main SourceSet...
|
|
|
|
source includeProject.sourceSets.main.java
|
|
|
|
classpath += ( includeProject.sourceSets.main.output + includeProject.sourceSets.main.compileClasspath )
|
|
|
|
|
|
|
|
}
|
2013-11-22 15:51:56 -05:00
|
|
|
}
|
|
|
|
|
2021-08-02 19:04:41 -04:00
|
|
|
|
|
|
|
asciidoctorj {
|
|
|
|
attributes icons: 'font',
|
|
|
|
experimental: true,
|
|
|
|
'source-highlighter': 'prettify',
|
|
|
|
majorMinorVersion: rootProject.ormVersion.family,
|
|
|
|
fullVersion: rootProject.ormVersion.fullName
|
|
|
|
|
|
|
|
options logDocuments: true
|
2011-03-29 16:14:09 -04:00
|
|
|
}
|
|
|
|
|
2021-08-02 19:04:41 -04:00
|
|
|
|
2015-07-14 15:46:02 -04:00
|
|
|
// Topical Guides ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2011-03-29 16:14:09 -04:00
|
|
|
|
2015-07-14 15:46:02 -04:00
|
|
|
task renderTopicalGuides(type: AsciidoctorTask, group: 'Documentation') {
|
|
|
|
description = 'Renders the Topical Guides in HTML format using Asciidoctor.'
|
2021-08-02 19:04:41 -04:00
|
|
|
|
2015-07-14 15:46:02 -04:00
|
|
|
sourceDir = file( 'src/main/asciidoc/topical' )
|
2021-08-02 19:04:41 -04:00
|
|
|
outputDir = new File("$buildDir/asciidoc/topical/html_single")
|
|
|
|
|
|
|
|
baseDirFollowsSourceDir()
|
|
|
|
|
2018-04-16 16:28:08 -04:00
|
|
|
resources {
|
|
|
|
from('src/main/asciidoc/topical/') {
|
|
|
|
include '**/images/**'
|
|
|
|
}
|
|
|
|
}
|
2021-08-02 19:04:41 -04:00
|
|
|
|
2011-03-29 16:14:09 -04:00
|
|
|
}
|
|
|
|
|
2013-10-14 21:12:47 -04:00
|
|
|
|
2015-07-14 15:46:02 -04:00
|
|
|
// Getting Started Guides (quick starts) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2013-11-22 15:51:56 -05:00
|
|
|
|
2015-07-14 15:46:02 -04:00
|
|
|
task renderGettingStartedGuides(type: AsciidoctorTask, group: 'Documentation') {
|
|
|
|
description = 'Renders the Getting Started Guides (quick starts) in HTML format using Asciidoctor.'
|
2021-08-02 19:04:41 -04:00
|
|
|
|
2015-07-14 15:46:02 -04:00
|
|
|
sourceDir = file( 'src/main/asciidoc/quickstart/guides' )
|
2018-06-26 04:49:57 -04:00
|
|
|
sources {
|
|
|
|
include 'index.adoc'
|
|
|
|
}
|
2016-02-11 16:59:13 -05:00
|
|
|
outputDir = new File("$buildDir/asciidoc/quickstart/html_single")
|
2021-08-02 19:04:41 -04:00
|
|
|
|
|
|
|
baseDirFollowsSourceDir()
|
2013-10-31 07:08:36 -04:00
|
|
|
}
|
|
|
|
|
2016-02-11 16:59:13 -05:00
|
|
|
|
|
|
|
task buildTutorialZip(type: Zip) {
|
|
|
|
from 'src/main/asciidoc/quickstart/tutorials'
|
2021-06-28 16:59:35 -04:00
|
|
|
destinationDirectory = tasks.renderGettingStartedGuides.outputDir
|
|
|
|
archiveBaseName = 'hibernate-tutorials.zip'
|
2016-02-11 16:59:13 -05:00
|
|
|
expand(
|
|
|
|
version: project.version,
|
|
|
|
slf4j: "1.7.5",
|
2018-01-10 16:06:58 -05:00
|
|
|
junit: project.junitVersion,
|
|
|
|
h2: project.h2Version
|
2016-02-11 16:59:13 -05:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
renderGettingStartedGuides.dependsOn buildTutorialZip
|
|
|
|
|
2016-08-02 09:45:36 -04:00
|
|
|
// User Guide ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2016-01-11 10:25:13 -05:00
|
|
|
task renderUserGuide(type: AsciidoctorTask, group: 'Documentation') {
|
|
|
|
description = 'Renders the User Guides in HTML format using Asciidoctor.'
|
2021-08-02 19:04:41 -04:00
|
|
|
|
2016-01-11 10:25:13 -05:00
|
|
|
sourceDir = file( 'src/main/asciidoc/userguide' )
|
2018-06-26 04:49:57 -04:00
|
|
|
sources {
|
|
|
|
include 'Hibernate_User_Guide.adoc'
|
|
|
|
}
|
2016-02-11 16:59:13 -05:00
|
|
|
outputDir = new File("$buildDir/asciidoc/userguide/html_single")
|
2021-08-02 19:04:41 -04:00
|
|
|
|
|
|
|
baseDirFollowsSourceDir()
|
|
|
|
|
|
|
|
attributes linkcss: true,
|
2017-09-12 08:40:34 -04:00
|
|
|
stylesheet: "css/hibernate.css",
|
2020-04-14 10:58:41 -04:00
|
|
|
docinfo: 'private',
|
|
|
|
jpaJavadocUrlPrefix: "https://javaee.github.io/javaee-spec/javadocs/javax/persistence/"
|
2017-09-12 08:40:34 -04:00
|
|
|
|
|
|
|
resources {
|
2016-01-11 10:25:13 -05:00
|
|
|
from('src/main/asciidoc/userguide/') {
|
|
|
|
include 'images/**'
|
|
|
|
}
|
2016-03-02 08:16:13 -05:00
|
|
|
from('src/main/style/asciidoctor') {
|
|
|
|
include 'images/**'
|
|
|
|
}
|
2016-02-29 08:06:03 -05:00
|
|
|
from('src/main/style/asciidoctor') {
|
|
|
|
include 'css/**'
|
|
|
|
}
|
2017-09-12 08:40:34 -04:00
|
|
|
from('src/main/style/asciidoctor') {
|
|
|
|
include 'js/**'
|
|
|
|
}
|
2016-01-11 10:25:13 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-02 09:45:36 -04:00
|
|
|
// Integration Guide ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
task renderIntegrationGuide(type: AsciidoctorTask, group: 'Documentation') {
|
|
|
|
description = 'Renders the User Guides in HTML format using Asciidoctor.'
|
2021-08-02 19:04:41 -04:00
|
|
|
|
2016-08-02 09:45:36 -04:00
|
|
|
sourceDir = file( 'src/main/asciidoc/integrationguide' )
|
2018-06-26 04:49:57 -04:00
|
|
|
sources {
|
|
|
|
include 'Hibernate_Integration_Guide.adoc'
|
|
|
|
}
|
2021-08-02 19:04:41 -04:00
|
|
|
|
2016-08-02 09:45:36 -04:00
|
|
|
outputDir = new File("$buildDir/asciidoc/integrationguide/html_single")
|
2021-08-02 19:04:41 -04:00
|
|
|
|
|
|
|
baseDirFollowsSourceDir()
|
|
|
|
|
|
|
|
attributes linkcss: true,
|
|
|
|
stylesheet: "css/hibernate.css"
|
|
|
|
|
2016-08-02 09:45:36 -04:00
|
|
|
resources {
|
|
|
|
from('src/main/asciidoc/integrationguide/') {
|
|
|
|
include 'images/**'
|
|
|
|
}
|
|
|
|
from('src/main/style/asciidoctor') {
|
|
|
|
include 'images/**'
|
|
|
|
}
|
|
|
|
from('src/main/style/asciidoctor') {
|
|
|
|
include 'css/**'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-01-11 10:25:13 -05:00
|
|
|
|
2018-03-21 15:57:57 -04:00
|
|
|
// Testing
|
|
|
|
|
2021-05-08 16:42:43 -04:00
|
|
|
test {
|
|
|
|
include '**/mapping/basic/**'
|
|
|
|
}
|
|
|
|
|
2018-03-21 15:57:57 -04:00
|
|
|
// resources inherently exclude sources
|
|
|
|
sourceSets.test.resources {
|
|
|
|
setSrcDirs( ['src/test/java','src/test/resources'] )
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-02-11 16:59:13 -05:00
|
|
|
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
// grouping tasks
|
|
|
|
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2015-07-14 15:46:02 -04:00
|
|
|
|
2016-02-11 16:59:13 -05:00
|
|
|
buildDocs.dependsOn aggregateJavadocs
|
|
|
|
buildDocs.dependsOn renderTopicalGuides
|
|
|
|
buildDocs.dependsOn renderGettingStartedGuides
|
|
|
|
buildDocs.dependsOn renderUserGuide
|
2016-08-02 09:45:36 -04:00
|
|
|
buildDocs.dependsOn renderIntegrationGuide
|
2015-07-14 15:46:02 -04:00
|
|
|
|
2016-02-11 16:59:13 -05:00
|
|
|
buildDocsForPublishing.dependsOn aggregateJavadocs
|
|
|
|
buildDocsForPublishing.dependsOn renderTopicalGuides
|
|
|
|
buildDocsForPublishing.dependsOn renderGettingStartedGuides
|
|
|
|
buildDocsForPublishing.dependsOn renderUserGuide
|
2016-08-02 09:45:36 -04:00
|
|
|
buildDocsForPublishing.dependsOn renderIntegrationGuide
|
2017-12-13 12:38:25 -05:00
|
|
|
|
|
|
|
checkstyleMain.exclude '**/org/hibernate/userguide/model/*'
|
2018-01-10 16:06:58 -05:00
|
|
|
|