hibernate-orm/release/release.gradle

632 lines
20 KiB
Groovy
Raw Normal View History

import java.nio.charset.StandardCharsets
import groovy.json.JsonSlurper
/*
* 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>.
*/
apply from: rootProject.file( 'gradle/base-information.gradle' )
apply plugin: 'idea'
apply plugin: 'distribution'
//apply plugin: 'java-library-distribution'
idea.module {
}
//def documentationDir = project.layout.buildDirectory.dir('documentation')
configurations {
core
// testing
envers
spatial
agroal
c3p0
hikaricp
proxool
vibur
jcache
jpamodelgen
}
dependencies {
core project( ':hibernate-core' )
// testing project( ':hibernate-testing' )
envers project( ':hibernate-envers' )
spatial project( ':hibernate-spatial' )
agroal project( ':hibernate-agroal' )
c3p0 project( ':hibernate-c3p0' )
hikaricp project( ':hibernate-hikaricp' )
proxool project( ':hibernate-proxool' )
vibur project( ':hibernate-vibur' )
// jcache project( ':hibernate-jcache' )
jpamodelgen project( ':hibernate-jpamodelgen' )
}
/**
2013-11-22 15:51:56 -05:00
* Assembles all documentation into the {buildDir}/documentation directory.
*
2013-11-22 15:51:56 -05:00
* Depends on building the docs
*/
2021-07-19 11:38:41 -04:00
task assembleDocumentation(type: Copy) {
2021-05-14 18:31:28 -04:00
group 'Release'
description 'Assembles all documentation into the {buildDir}/documentation directory'
dependsOn ':documentation:buildDocsForPublishing'
2021-07-19 11:38:41 -04:00
// copy documentation outputs into target/documentation.
// * this is used in building the dist bundles
// * it is also used as a base to build a staged directory for documentation upload
// Integrations Guide
from "${rootProject.project( 'documentation' ).buildDir}/asciidoc/integrationguide"
into "${buildDir}/documentation/integrationguide"
2021-07-19 11:38:41 -04:00
// Getting-started Guide
from "${rootProject.project( 'documentation' ).buildDir}/asciidoc/quickstart"
into "${buildDir}/documentation/quickstart"
2021-07-19 11:38:41 -04:00
// Topical Guide
from "${rootProject.project( 'documentation' ).buildDir}/asciidoc/topical"
into "${buildDir}/documentation/topical"
2021-07-19 11:38:41 -04:00
// User Guide
from "${rootProject.project( 'documentation' ).buildDir}/asciidoc/userguide"
into "${buildDir}/documentation/userguide"
2021-07-19 11:38:41 -04:00
// Aggregated JavaDoc
from "${rootProject.project( 'documentation' ).buildDir}/javadocs"
into "${buildDir}/documentation/javadocs"
}
//task assembleProjectTemplates(type:Copy, dependsOn: project( ":project-template" ).tasks.assembleDist) {
// def templateProject = project( ":project-template" )
// from templateProject.layout.buildDirectory.dir( "distributions" )
// into projectTemplateStagingDir
//}
/**
* Upload the documentation to the JBoss doc server
*/
2021-05-14 18:31:28 -04:00
task uploadDocumentation(type:Exec) {
group 'Release'
description 'Uploads documentation to the JBoss doc server'
dependsOn assembleDocumentation
final String url = "filemgmt.jboss.org:/docs_htdocs/hibernate/orm/${rootProject.ormVersion.family}";
executable 'rsync'
args '-avz', '--links', '--protocol=28', "${buildDir}/documentation/", url
doFirst {
if ( rootProject.ormVersion.isSnapshot ) {
logger.error( "Cannot perform upload of SNAPSHOT documentation" );
throw new RuntimeException( "Cannot perform upload of SNAPSHOT documentation" );
}
else {
logger.lifecycle( "Uploading documentation [{$url}]..." )
}
}
doLast {
logger.lifecycle( 'Done uploading documentation' )
}
}
/**
* Configuration of the distribution plugin, used to build release bundle as both ZIP and TGZ
*/
distributions {
main {
distributionBaseName = 'hibernate-release'
contents {
from rootProject.file( 'lgpl.txt' )
from rootProject.file( 'changelog.txt' )
from rootProject.file( 'hibernate_logo.gif' )
into('lib/required') {
from configurations.core
}
// todo (6.0) - add back
// into( 'project-template' ) {
// // todo : hook in some form of variable replacement - especially for version
// from project( ':project-template' ).files( 'src/main/dist' )
// }
into( 'lib/spatial' ) {
from( configurations.spatial - configurations.core )
}
into( 'lib/jpa-metamodel-generator' ) {
from( configurations.jpamodelgen - configurations.core )
}
into( 'lib/envers' ) {
from( configurations.envers - configurations.core )
}
// into( 'lib/testing' ) {
// from( configurations.testing - configurations.core )
// }
//
into( 'lib/optional' ) {
into( 'agroal' ) {
from( configurations.agroal - configurations.core )
}
into( 'c3p0' ) {
from( configurations.c3p0 - configurations.core )
}
into( 'hikaricp' ) {
from( configurations.hikaricp - configurations.core )
}
into( 'jcache' ) {
from( configurations.jcache - configurations.core )
}
into( 'proxool' ) {
from( configurations.proxool - configurations.core )
}
into( 'vibur' ) {
from( configurations.vibur - configurations.core )
}
}
into('documentation') {
from "${buildDir}/documentation"
}
into( 'project' ) {
from ( rootProject.projectDir ) {
exclude( '.git' )
exclude( '.gitignore' )
exclude( 'changelog.txt' )
exclude( 'lgpl.txt' )
exclude( 'hibernate_logo.gif' )
exclude( 'tagRelease.sh' )
exclude( 'gradlew' )
exclude( 'gradlew.bat' )
exclude( 'wrapper/*' )
exclude( '**/.gradle/**' )
exclude( '**/target/**' )
exclude( '.idea' )
exclude( '**/*.ipr' )
exclude( '**/*.iml' )
exclude( '**/*.iws' )
exclude( '**/atlassian-ide-plugin.xml' )
exclude( '**/.classpath' )
exclude( '**/.project' )
exclude( '**/.settings' )
exclude( '**/.nbattrs' )
exclude( '**/out/**' )
exclude( '**/bin/**' )
exclude( 'build/**' )
exclude( '*/build/**' )
}
}
}
}
}
distTar.compression = Compression.GZIP
distTar.dependsOn assembleDocumentation
distZip.dependsOn assembleDocumentation
/**
* "virtual" task for building both types of dist bundles
*/
2021-05-14 18:31:28 -04:00
task buildBundles {
group 'Release'
description 'Builds all release bundles'
dependsOn distZip
dependsOn distTar
}
2021-05-14 18:31:28 -04:00
task uploadBundlesSourceForge(type: Exec) {
group 'Release'
description 'Uploads release bundles to SourceForge'
dependsOn buildBundles
final String url = "frs.sourceforge.net:/home/frs/project/hibernate/hibernate-orm/${version}";
executable 'rsync'
args '-vr', '-e ssh', "${project.buildDir}/distributions/", url
doFirst {
if ( rootProject.ormVersion.isSnapshot ) {
logger.error( "Cannot perform upload of SNAPSHOT bundles to SourceForge" );
throw new RuntimeException( "Cannot perform upload of SNAPSHOT bundles to SourceForge" )
}
else {
logger.lifecycle( "Uploading release bundles to SourceForge..." )
}
}
doLast {
logger.lifecycle( 'Done uploading release bundles to SourceForge' )
}
}
configurations {
bundles {
description = 'Configuration used to group the archives output from the distribution plugin.'
}
}
artifacts {
bundles distTar
bundles distZip
}
2021-05-14 18:31:28 -04:00
task releaseChecks {
group 'Release'
2021-05-18 16:50:10 -04:00
description 'Checks and preparation for release'
2021-05-14 18:31:28 -04:00
}
task changeLogFile {
group 'Release'
description 'Updates the changelog.txt file based on the change-log report from Jira'
2021-05-14 18:31:28 -04:00
dependsOn project.tasks.releaseChecks
2020-06-22 05:31:36 -04:00
doFirst {
2021-05-18 16:50:10 -04:00
logger.lifecycle( "Appending version `${project.releaseVersion}` to changelog..." )
ChangeLogFile.update( ormVersion.fullName );
2020-06-22 05:31:36 -04:00
}
}
2021-05-18 16:50:10 -04:00
task changeToReleaseVersion {
group 'Release'
description 'Updates `gradle/version.properties` file to the specified release-version'
2021-05-14 18:31:28 -04:00
dependsOn project.tasks.releaseChecks
doFirst {
2021-05-18 16:50:10 -04:00
logger.lifecycle( "Updating version-file to release-version : `${project.releaseVersion}`" )
updateVersionFile( project.releaseVersion )
}
}
2021-05-18 16:50:10 -04:00
task gitPreparationForRelease {
dependsOn changeLogFile
dependsOn changeToReleaseVersion
doLast {
logger.lifecycle( "Performing pre-steps Git commit : `${project.releaseVersion}`" )
executeGitCommand( 'add', '.' )
2021-05-18 16:50:10 -04:00
executeGitCommand( 'commit', '-m', "Pre-steps for release : `${project.ormVersion.fullName}`" )
}
}
task changeToDevelopmentVersion {
group 'Release'
description 'Updates `gradle/version.properties` file to the specified development-version'
dependsOn project.tasks.releaseChecks
doFirst {
logger.lifecycle( "Updating version-file to development-version : `${project.developmentVersion}`" )
updateVersionFile( project.developmentVersion )
}
}
2021-05-14 18:31:28 -04:00
2021-05-18 16:50:10 -04:00
task gitTasksAfterRelease {
dependsOn changeToDevelopmentVersion
doLast {
logger.lifecycle( "Performing pre-steps Git commit : `${project.releaseVersion}`" )
executeGitCommand( 'add', '.' )
executeGitCommand( 'commit', '-m', "Post-steps for release : `${project.ormVersion.fullName}`" )
if ( project.createTag ) {
2021-05-18 16:50:10 -04:00
logger.lifecycle("Tagging release : `${project.releaseTag}`...")
executeGitCommand( 'tag', project.releaseTag )
}
}
}
void updateVersionFile(String version) {
logger.lifecycle( "Updating `gradle/version.properties` version to `${version}`" )
project.ormVersionFile.text = "hibernateVersion=${version}"
}
2021-05-14 18:31:28 -04:00
task publishReleaseArtifacts {
dependsOn releaseChecks
dependsOn uploadDocumentation
dependsOn uploadBundlesSourceForge
2021-05-18 16:50:10 -04:00
mustRunAfter gitPreparationForRelease
2021-05-14 18:31:28 -04:00
}
task release {
group 'Release'
description 'Performs a release on local check-out, including updating changelog and '
2021-05-18 16:50:10 -04:00
dependsOn gitPreparationForRelease
2021-05-14 18:31:28 -04:00
dependsOn publishReleaseArtifacts
2021-05-18 16:50:10 -04:00
finalizedBy gitTasksAfterRelease
2021-05-14 18:31:28 -04:00
}
rootProject.subprojects.each { Project subProject ->
2021-05-14 18:31:28 -04:00
if ( project.name != subProject.name ) {
if ( subProject.tasks.findByName( 'release' ) ) {
2021-05-14 18:31:28 -04:00
project.tasks.publishReleaseArtifacts.dependsOn( subProject.tasks.release )
subProject.tasks.release.dependsOn( releaseChecks )
subProject.tasks.release.mustRunAfter( releaseChecks )
}
}
}
2021-05-14 18:31:28 -04:00
task ciReleaseChecks {
dependsOn releaseChecks
}
2021-05-18 16:50:10 -04:00
task gitTasksAfterCiRelease {
dependsOn gitTasksAfterRelease
2021-05-14 18:31:28 -04:00
doLast {
2021-05-18 16:50:10 -04:00
if ( project.createTag ) {
logger.lifecycle( "Pushing branch and tag to remote `${project.gitRemote}`..." )
executeGitCommand( 'push', '--atomic', project.gitRemote , project.gitBranch, project.releaseTag )
}
else {
2021-05-18 16:50:10 -04:00
logger.lifecycle("Pushing branch to remote `${project.gitRemote}`..." )
executeGitCommand( 'push', project.gitRemote , project.gitBranch )
}
}
}
2021-05-18 16:50:10 -04:00
task ciRelease {
group 'Release'
description 'Performs a release: the hibernate version is set and the changelog.txt file updated, the changes are pushed to github, then the release is performed, tagged and the hibernate version is set to the development one.'
dependsOn ciReleaseChecks
dependsOn release
finalizedBy gitTasksAfterCiRelease
}
static String executeGitCommand(Object ... subcommand){
List<Object> command = ['git']
Collections.addAll( command, subcommand )
def proc = command.execute()
def code = proc.waitFor()
def stdout = inputStreamToString( proc.getInputStream() )
def stderr = inputStreamToString( proc.getErrorStream() )
if ( code != 0 ) {
throw new GradleException( "An error occurred while executing " + command + "\n\nstdout:\n" + stdout + "\n\nstderr:\n" + stderr )
}
return stdout
}
static String inputStreamToString(InputStream inputStream) {
inputStream.withCloseable { ins ->
new BufferedInputStream(ins).withCloseable { bis ->
new ByteArrayOutputStream().withCloseable { buf ->
int result = bis.read();
while (result != -1) {
buf.write((byte) result);
result = bis.read();
}
return buf.toString( StandardCharsets.UTF_8.name());
}
}
}
}
class ChangeLogFile {
// Get the Release Notes from Jira and add them to the Hibernate changelog.txt file
static void update(String releaseVersion) {
def text = ""
File changelog = new File( "changelog.txt" )
def newReleaseNoteBlock = getNewReleaseNoteBlock(releaseVersion)
changelog.eachLine {
line ->
if ( line.startsWith( "Note:" ) ) {
text += line + System.lineSeparator() + System.lineSeparator() + newReleaseNoteBlock
}
else {
text += line + System.lineSeparator()
}
}
changelog.text = text
}
// Get the Release Notes from Jira
static String getNewReleaseNoteBlock(String releaseVersion) {
def restReleaseVersion;
if ( releaseVersion.endsWith( ".Final" ) ) {
restReleaseVersion = releaseVersion.replace( ".Final", "" )
}
else {
restReleaseVersion = releaseVersion
}
def apiString = "https://hibernate.atlassian.net/rest/api/2/search/?jql=project=HHH%20AND%20fixVersion=${restReleaseVersion}%20order%20by%20issuetype%20ASC"
def apiUrl = new URL( apiString )
def jsonReleaseNotes = new JsonSlurper().parse( apiUrl )
def releaseDate = new Date().format( 'MMMM dd, YYYY' )
def versionId = getVersionId( jsonReleaseNotes, restReleaseVersion )
ReleaseNote releaseNotes = new ReleaseNote( releaseVersion, releaseDate, versionId )
def issuetype
jsonReleaseNotes.issues.each {
issue ->
if ( issuetype != issue.fields.issuetype.name ) {
issuetype = issue.fields.issuetype.name
releaseNotes.addEmptyLine();
releaseNotes.addLine( "** ${issue.fields.issuetype.name}" )
}
releaseNotes.addLine( " * [" + issue.key + "] - " + issue.fields.summary )
}
releaseNotes.addEmptyLine()
return releaseNotes.notes
}
private static getVersionId(jsonReleaseNotes, String restReleaseVersion) {
def fixVersions = jsonReleaseNotes.issues.get( 0 ).fields.fixVersions
for ( def fixVersion : fixVersions ) {
if ( fixVersion.name.equals( restReleaseVersion ) ) {
return fixVersion.id
}
}
throw new GradleException( "Unable to determine the version id of the current release." )
}
}
class ReleaseNote {
String notes;
String notesHeaderSeparator = "------------------------------------------------------------------------------------------------------------------------"
ReleaseNote(String releaseVersion, String releaseDate, String versionId) {
notes = "Changes in ${releaseVersion} (${releaseDate})" + System.lineSeparator()
addHeaderSeparator()
addEmptyLine()
addLine( "https://hibernate.atlassian.net/projects/HHH/versions/${versionId}" )
}
void addLine(String text) {
notes += text + System.lineSeparator()
}
void addHeaderSeparator() {
addLine( notesHeaderSeparator )
}
void addEmptyLine() {
notes += System.lineSeparator()
}
void addEmptyLines(int numberOfLines) {
for ( i in 1..numberOfLines ) {
notes += System.lineSeparator()
}
}
}
2021-05-14 18:31:28 -04:00
gradle.getTaskGraph().whenReady {tg->
2021-05-14 18:31:28 -04:00
if ( tg.hasTask( project.tasks.releaseChecks ) ) {
String releaseVersionLocal
String developmentVersionLocal
def console = tg.hasTask( project.tasks.ciReleaseChecks )
? null
: System.console()
if (project.hasProperty('releaseVersion')) {
releaseVersionLocal = project.property('releaseVersion')
}
else {
if (console) {
// prompt for `releaseVersion`
releaseVersionLocal = console.readLine('> Enter the release version: ')
}
else {
throw new GradleException(
"`release`-related tasks require the following properties: 'releaseVersion', 'developmentVersion'"
)
}
2021-05-14 18:31:28 -04:00
}
if (project.hasProperty('developmentVersion')) {
developmentVersionLocal = project.property('developmentVersion')
}
else {
if (console) {
// prompt for `developmentVersion`
developmentVersionLocal = console.readLine('> Enter the next development version: ')
}
else {
throw new GradleException(
"`release`-related tasks require the following properties: 'releaseVersion', 'developmentVersion'"
)
}
}
assert releaseVersionLocal != null && developmentVersionLocal != null;
2021-05-14 18:31:28 -04:00
// set up information for the release-related tasks
project.ext {
releaseVersion = releaseVersionLocal;
developmentVersion = developmentVersionLocal;
createTag = !project.hasProperty('noTag')
releaseTag = project.createTag ? determineReleaseTag(releaseVersionLocal) : ''
2021-05-14 18:31:28 -04:00
}
logger.lifecycle("Checking that the working tree is clean...")
String uncommittedFiles = executeGitCommand('status', '--porcelain')
if (!uncommittedFiles.isEmpty()) {
2021-05-14 18:31:28 -04:00
throw new GradleException(
"Cannot release because there are uncommitted or untracked files in the working tree.\n" +
"Commit or stash your changes first.\n" +
"Uncommitted files:\n " +
uncommittedFiles
);
}
if (tg.hasTask(project.tasks.ciReleaseChecks)) {
String gitBranchLocal
String gitRemoteLocal
2021-05-14 18:31:28 -04:00
if (project.hasProperty('gitBranch')) {
gitBranchLocal = project.property('gitBranch')
}
else {
gitBranchLocal = executeGitCommand( 'branch', '--show-current' )
}
2021-05-14 18:31:28 -04:00
if (project.hasProperty('gitRemote')) {
gitRemoteLocal = project.property('gitRemote')
}
else {
final String remotes = executeGitCommand( 'remote', 'show' )
final List<String> tokens = remotes.tokenize()
if ( tokens.size() != 1 ) {
throw new GradleException( "Could not determine `gitRemote` property for `ciRelease` tasks." )
}
gitRemoteLocal = tokens.get( 0 )
}
2021-05-14 18:31:28 -04:00
project.ext {
gitBranch = gitBranchLocal
gitRemote = gitRemoteLocal
}
2021-05-14 18:31:28 -04:00
logger.lifecycle("Switching to branch '${project.gitBranch}'...")
executeGitCommand('checkout', project.gitBranch)
logger.lifecycle("Checking that all commits are pushed...")
String diffWithUpstream = executeGitCommand('diff', '@{u}')
if (!diffWithUpstream.isEmpty()) {
throw new GradleException(
"Cannot perform `ciRelease` tasks because there are un-pushed local commits .\n" +
"Push your commits first."
);
}
2021-05-14 18:31:28 -04:00
}
}
}
static String determineReleaseTag(String releaseVersion) {
return releaseVersion.endsWith( '.Final' )
? releaseVersion.replace( ".Final", "" )
: releaseVersion;
2021-05-18 16:50:10 -04:00
}