Skip to content

Commit

Permalink
HHH-8137 - Javadoc generation is currently not playing nicely with Ja…
Browse files Browse the repository at this point in the history
…va7 javadoc changes
  • Loading branch information
sebersole committed Apr 15, 2013
1 parent f2b9ab8 commit a906d1f
Show file tree
Hide file tree
Showing 12 changed files with 71 additions and 751 deletions.
6 changes: 3 additions & 3 deletions release/release.gradle
Expand Up @@ -67,8 +67,8 @@ task aggregateJavadocs(type: Javadoc) {
maxMemory = '512m'
destinationDir = javadocBuildDir
configure( options ) {
overview = new File( projectDir, 'src/javadoc/overview.html' )
stylesheetFile = new File( projectDir, 'src/javadoc/stylesheet.css' )
overview = rootProject.file( 'shared/javadoc/overview.html' )
stylesheetFile = rootProject.file( 'shared/javadoc/stylesheet.css' )
windowTitle = 'Hibernate JavaDocs'
docTitle = "Hibernate JavaDoc ($project.version)"
bottom = "Copyright &copy; 2001-$copyRightYear <a href=\"http://redhat.com\">Red Hat, Inc.</a> All Rights Reserved."
Expand All @@ -87,7 +87,7 @@ task aggregateJavadocs(type: Javadoc) {

aggregateJavadocs.doLast {
copy {
from new File( projectDir, 'src/javadoc/images' )
from rootProject.file( 'shared/javadoc/images' )
into new File( javadocBuildDir, "/images" )
}
}
Expand Down

0 comments on commit a906d1f

Please sign in to comment.