2010-10-12 16:39:33 -04:00
|
|
|
apply plugin: 'base'
|
|
|
|
apply plugin: 'idea'
|
|
|
|
|
|
|
|
buildDir = "target"
|
|
|
|
|
|
|
|
ideaModule {
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Javadocs ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
javadocBuildDir = dir( buildDirName + "/documentation/javadocs" )
|
|
|
|
|
2011-03-22 11:39:53 -04:00
|
|
|
def List subProjectsToSkipForJavadoc = ['release','documentation'];
|
2011-12-16 15:26:52 -05:00
|
|
|
def List sourceSetsToSkipForJavadoc = ['test','matrix'];
|
2010-10-12 16:39:33 -04:00
|
|
|
|
2011-03-18 10:02:31 -04:00
|
|
|
def copyRightYear = new java.util.GregorianCalendar().get( java.util.Calendar.YEAR );
|
|
|
|
|
2010-11-01 14:44:41 -04:00
|
|
|
task aggregateJavadocs(type: Javadoc) {
|
2011-12-16 15:26:52 -05:00
|
|
|
Set<String> apiPackages = new HashSet<String>()
|
|
|
|
Set<String> spiPackages = new HashSet<String>()
|
|
|
|
Set<String> internalPackages = new HashSet<String>()
|
|
|
|
|
|
|
|
parent.subprojects.each{ subProject->
|
|
|
|
if ( !subProjectsToSkipForJavadoc.contains( subProject.name ) ) {
|
|
|
|
subProject.sourceSets.each { sourceSet ->
|
|
|
|
if ( !sourceSetsToSkipForJavadoc.contains( sourceSet.name ) ) {
|
|
|
|
source sourceSet.java
|
|
|
|
|
|
|
|
if( classpath ) {
|
|
|
|
classpath += sourceSet.classes + sourceSet.compileClasspath
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
classpath = sourceSet.classes + sourceSet.compileClasspath
|
|
|
|
}
|
|
|
|
|
|
|
|
sourceSet.java.each { javaFile ->
|
|
|
|
final String packageName = determinePackageName( sourceSet.java, javaFile );
|
|
|
|
if ( packageName.endsWith( ".internal" ) || packageName.contains( ".internal." ) ) {
|
|
|
|
internalPackages.add( packageName );
|
|
|
|
}
|
|
|
|
else if ( packageName.endsWith( ".spi" ) || packageName.contains( ".spi." ) ) {
|
|
|
|
spiPackages.add( packageName );
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
apiPackages.add( packageName );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-10-12 16:39:33 -04:00
|
|
|
description = "Build the aggregated JavaDocs for all modules"
|
|
|
|
maxMemory = '512m'
|
|
|
|
destinationDir = javadocBuildDir.dir
|
|
|
|
configure( options ) {
|
|
|
|
overview = new File( projectDir, 'src/javadoc/package.html' )
|
|
|
|
stylesheetFile = new File( projectDir, 'src/javadoc/stylesheet.css' )
|
|
|
|
windowTitle = 'Hibernate JavaDocs'
|
|
|
|
docTitle = "Hibernate JavaDoc ($project.version)"
|
2011-03-18 10:02:31 -04:00
|
|
|
bottom = "Copyright © 2001-$copyRightYear <a href=\"http://redhat.com\">Red Hat, Inc.</a> All Rights Reserved."
|
2010-10-12 16:39:33 -04:00
|
|
|
use = true
|
|
|
|
links = [ 'http://download.oracle.com/javase/6/docs/api/', 'http://download.oracle.com/javaee/6/api/' ]
|
2011-12-16 15:26:52 -05:00
|
|
|
group( 'API', apiPackages.asList() )
|
|
|
|
group( 'SPI', spiPackages.asList() )
|
|
|
|
group( 'Internal', internalPackages.asList() )
|
|
|
|
group ( 'Testing Support', ['org.hibernate.testing*'] )
|
2010-10-12 16:39:33 -04:00
|
|
|
}
|
2011-12-16 15:26:52 -05:00
|
|
|
}
|
2010-10-12 16:39:33 -04:00
|
|
|
|
2011-12-16 15:26:52 -05:00
|
|
|
String determinePackageName(SourceDirectorySet sourceDirectorySet, File javaFile) {
|
|
|
|
final javaFileAbsolutePath = javaFile.absolutePath;
|
|
|
|
for ( File sourceDirectory : sourceDirectorySet.srcDirs ) {
|
|
|
|
final String sourceDirectoryAbsolutePath = sourceDirectory.absolutePath;
|
|
|
|
if ( javaFileAbsolutePath.startsWith( sourceDirectoryAbsolutePath ) ) {
|
|
|
|
final String javaFileRelativePath = javaFileAbsolutePath.substring(
|
|
|
|
sourceDirectoryAbsolutePath.length() + 1,
|
|
|
|
javaFileAbsolutePath.lastIndexOf( '/' )
|
|
|
|
);
|
|
|
|
return javaFileRelativePath.replace( '/', '.' );
|
2010-10-12 16:39:33 -04:00
|
|
|
}
|
|
|
|
}
|
2011-12-16 15:26:52 -05:00
|
|
|
throw new RuntimeException( "ugh" );
|
2010-10-12 16:39:33 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
aggregateJavadocs.doLast {
|
|
|
|
copy {
|
|
|
|
from new File( projectDir, 'src/javadoc/images' )
|
|
|
|
into new File( javadocBuildDir.dir, "/images" )
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// release bundles ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
releaseBuildDir = dir( buildDirName )
|
2011-12-16 10:12:45 -05:00
|
|
|
task prepareReleaseBundles( dependsOn: [parent.project( 'documentation' ).tasks.buildDocs,parent.project('hibernate-entitymanager' ).tasks.buildDocs,aggregateJavadocs] )
|
2010-10-12 16:39:33 -04:00
|
|
|
|
|
|
|
|
|
|
|
releaseCopySpec = copySpec {
|
2011-03-18 10:49:00 -04:00
|
|
|
into( "hibernate-release-$project.version" ) {
|
|
|
|
from new File( parent.projectDir, 'lgpl.txt' )
|
|
|
|
from new File( parent.projectDir, 'changelog.txt' )
|
|
|
|
from new File( parent.projectDir, 'hibernate_logo.gif' )
|
|
|
|
|
|
|
|
into('lib/required') {
|
|
|
|
from parent.project( 'hibernate-core' ).configurations.provided.files { dep -> dep.name == 'jta' }
|
|
|
|
from parent.project( 'hibernate-core' ).configurations.runtime
|
|
|
|
from parent.project( 'hibernate-core' ).configurations.archives.allArtifactFiles.filter{ file -> !file.name.endsWith('-sources.jar') }
|
2011-03-29 16:14:09 -04:00
|
|
|
// for now,
|
2011-03-18 10:49:00 -04:00
|
|
|
from parent.project( 'hibernate-core' ).configurations.provided.files { dep -> dep.name == 'javassist' }
|
|
|
|
}
|
2010-10-12 16:39:33 -04:00
|
|
|
|
2011-03-29 16:14:09 -04:00
|
|
|
// into('lib/bytecode/javassist') {
|
|
|
|
// from parent.project( 'hibernate-core' ).configurations.provided.files { dep -> dep.name == 'javassist' }
|
|
|
|
// }
|
|
|
|
|
2011-03-18 10:49:00 -04:00
|
|
|
into( 'lib/jpa' ) {
|
|
|
|
from parent.project( 'hibernate-entitymanager' ).configurations.archives.allArtifactFiles.filter{ file -> !file.name.endsWith('-sources.jar') }
|
|
|
|
}
|
2010-10-12 16:39:33 -04:00
|
|
|
|
2011-03-18 10:49:00 -04:00
|
|
|
into( 'lib/envers' ) {
|
|
|
|
from(
|
|
|
|
( parent.project( 'hibernate-envers' ).configurations.archives.allArtifactFiles.filter{ file -> !file.name.endsWith('-sources.jar') }
|
|
|
|
+ parent.project( 'hibernate-envers' ).configurations.runtime )
|
2010-10-12 16:39:33 -04:00
|
|
|
- parent.project( 'hibernate-core' ).configurations.runtime
|
|
|
|
- parent.project( 'hibernate-core' ).configurations.archives.allArtifactFiles
|
2011-03-18 10:49:00 -04:00
|
|
|
- parent.project( 'hibernate-entitymanager' ).configurations.runtime
|
|
|
|
- parent.project( 'hibernate-entitymanager' ).configurations.archives.allArtifactFiles
|
2010-10-12 16:39:33 -04:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2011-03-18 10:49:00 -04:00
|
|
|
// todo : this closure is problematic as it does not write into the hibernate-release-$project.version directory
|
2011-03-22 12:35:28 -04:00
|
|
|
// due to http://issues.gradle.org/browse/GRADLE-1450
|
2011-03-18 10:49:00 -04:00
|
|
|
[ 'hibernate-c3p0', 'hibernate-proxool', 'hibernate-ehcache', 'hibernate-infinispan' ].each { feature ->
|
|
|
|
final String shortName = feature.substring( 'hibernate-'.length() );
|
2011-03-22 12:35:28 -04:00
|
|
|
// WORKAROUND http://issues.gradle.org/browse/GRADLE-1450
|
|
|
|
// into('lib/optional/' + shortName) {
|
|
|
|
owner.into('lib/optional/' + shortName) {
|
2011-03-18 10:49:00 -04:00
|
|
|
from (
|
|
|
|
( parent.project( feature ).configurations.archives.allArtifactFiles.filter{ file -> !file.name.endsWith('-sources.jar') }
|
|
|
|
+ parent.project( feature ).configurations.runtime )
|
|
|
|
- parent.project( 'hibernate-core' ).configurations.runtime
|
|
|
|
- parent.project( 'hibernate-core' ).configurations.archives.allArtifactFiles
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
2010-10-12 16:39:33 -04:00
|
|
|
|
2011-03-29 16:14:09 -04:00
|
|
|
into('documentation') {
|
|
|
|
from new File( parent.project( 'documentation' ).buildDir, 'docbook/publish' )
|
|
|
|
}
|
2011-03-18 10:49:00 -04:00
|
|
|
|
2011-12-16 10:12:45 -05:00
|
|
|
into('documentation/hem') {
|
|
|
|
from new File( parent.project( 'hibernate-entitymanager' ).buildDir, 'docbook/publish' )
|
|
|
|
}
|
|
|
|
|
2011-03-18 10:49:00 -04:00
|
|
|
into('documentation/javadocs') {
|
|
|
|
from javadocBuildDir.dir
|
|
|
|
}
|
2010-10-12 16:39:33 -04:00
|
|
|
|
2011-03-18 10:49:00 -04:00
|
|
|
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' )
|
|
|
|
}
|
2010-10-12 16:39:33 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task buildReleaseZip( type: Zip, dependsOn: [prepareReleaseBundles] ) {
|
|
|
|
description = "Build release bundle in ZIP format"
|
|
|
|
baseName = 'hibernate-release'
|
|
|
|
destinationDir = releaseBuildDir.dir
|
|
|
|
with project.releaseCopySpec
|
|
|
|
}
|
|
|
|
|
|
|
|
task buildReleaseTgz( type: Tar, dependsOn: [prepareReleaseBundles] ) {
|
|
|
|
description = "Build release bundle in GZIP format"
|
|
|
|
baseName = 'hibernate-release'
|
|
|
|
destinationDir = releaseBuildDir.dir
|
|
|
|
compression = Compression.GZIP
|
|
|
|
with project.releaseCopySpec
|
|
|
|
}
|
|
|
|
|
|
|
|
task buildReleaseBundles( dependsOn: [buildReleaseZip,buildReleaseTgz] ) {
|
|
|
|
description = "Build release bundle in all formats"
|
|
|
|
}
|