Hello !
We’ve just upgraded from gradle 4.4 to 4.7, and a task that used to be run, is now stuck with :
- What went wrong:
A problem occurred evaluating project ‘:terracotta-db’.
> Could not get unknown property 'javadocJar' for project ':terracotta-ehcache-client' of type org.gradle.api.Project.
This task is created in a build.gradle file this way :
task javadocJar(type: Jar, dependsOn: javadoc) {
from javadoc.destinationDir
classifier = 'javadoc'
}
and is being used in another build.gradle file this way :
into('client/ehcache/javadoc') {
from project(':terracotta-ehcache-client').javadocJar
}
So apparently gradle stopped supporting calling tasks defined in projects (between 4.4 and 4.7), do you have any suggestions how to fix this task ?
Thank you !