Javadocs

Forgive me for mixing old school make terminology with new school gradle-speak.

Is there a mechanism in WPILib VSCode to fire off a gradlerio target to generate javadocs for a project ?

TIA

You should be able to use:

task javadocJar(type: Jar) {
    classifier = 'javadoc'
    from javadoc
}

then run ./gradlew javadocJar to create the JAR

1 Like

Worked like a charm. Now I have to read up on what really happended.
Thank you very much.