Skip to content

Commit

Permalink
exclude compat from generated groovy/javadocs
Browse files Browse the repository at this point in the history
  • Loading branch information
graemerocher committed Mar 5, 2015
1 parent 140a60b commit e2a5544
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gradle/docs.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ task docs {
}

task javadoc(type:Javadoc) {
def subs = subprojects.findAll { it.name != 'grails-dependencies' && it.name != 'grails-bom' }
def subs = subprojects.findAll { it.name != 'grails-dependencies' && it.name != 'grails-bom' && it.name != 'grails-compat' }
classpath = files(subs.configurations.compile)
dependsOn stubs
maxMemory = '256M'
Expand All @@ -67,7 +67,7 @@ task javadoc(type:Javadoc) {
}

task groovydoc(type:Groovydoc) {
def subs = subprojects.findAll { it.name != 'grails-dependencies' && it.name != 'grails-bom' }
def subs = subprojects.findAll { it.name != 'grails-dependencies' && it.name != 'grails-bom' && it.name != 'grails-compat' }
classpath = files(subs.configurations.compile)
groovyClasspath = files(subs.configurations.compile)
destinationDir = file("$docs.destinationDir/api")
Expand Down

0 comments on commit e2a5544

Please sign in to comment.