Hi,


In build.gradle I have -


def projectsForDoc = [project(':core'), project(':web')] // the set of projects 
to 


aggregate
task javadocFull(type: Javadoc) {
    source projectsForDoc.collect { project ->
        project.sourceSets.main.allJava
    }
    classpath = files(
            projectsForDoc.collect { project ->
                project.sourceSets.main.compileClasspath})
     destinationDir = new File(buildDir, 'javadoc') 
    optionsFile = new File( 'build/tmp/javadoc.txt' )
} 




But I  get lots of warnings like -

@hibernate.property is an unknown tag.
@hibernate.id is an unknown tag.
@hibernate.generator-param is an unknown tag.
@hibernate.subclass is an unknown tag.
@hibernate.class is an unknown tag.
@hibernate.component is an unknown tag.
@hibernate.many-to-one is an unknown tag.
@hibernate.list is an unknown tag.
@hibernate.collection-one-to-many is an unknown tag.
@hibernate.collection-index is an unknown tag.
@hibernate.collection-key is an unknown tag.
@hibernate.discriminator is an unknown tag.
@hibernate.query is an unknown tag.
@hibernate.discriminator is an unknown tag.

@spring.bean is an unknown tag.
@spring.property is an unknown tag.

@see: can't find execute(com.search.Template) in com.search.QueryBuilder

@link: reference not found: 

@inheritDoc#FlowExecutionListner.sessionStarting is an unknown tag.



Please  advice.

Thanks.

Regards
Neeraj


      

Reply via email to