Add a Dialect report

Also added
* H2Dialect#getMinimumSupportedVersion
* DerbyDialect#getMinimumSupportedVersion
This commit is contained in:
Steve Ebersole 2023-05-03 09:55:45 -05:00
parent c08af7469c
commit f87df304f9
1 changed files with 11 additions and 0 deletions

View File

@ -310,6 +310,17 @@ task stageOrmLoggingReport(type: Copy) { task ->
}
task stageOrmDialectReport(type: Copy) { task ->
group 'Release'
dependsOn ':documentation:renderDialectReport'
tasks.stageOrmReports.dependsOn task
from project( ":documentation" ).tasks.renderDialectReport.outputDir
into "${buildDir}/documentation/dialect"
}
/**
* Assembles all documentation into the {buildDir}/documentation directory.
*