Where does gradle store jar files (VSCode JavaDoc generation issue)

I have been trying to generate JavaDocs from my team’s robot code but it gives errors whenever it finds a reference to an included library. In non FRC coding I would normally point JavaDoc to the included library .jar files, however I cannot find them anywhere in the VSCode project.

Does anyone know how I can access the vendordep library jar files from JavaDoc?

Alternatively, is there a better method of generating JavaDocs from within VSCode? I found reference to a method here but it does not work with the 2024 version.

They’re stored in the gradle/maven cache. If you install online dependencies, that should be ~/.gradle or ~/.m2 (I dont remember which offhand) where ~ is your home directory. If you install offline dependencies, then you’ll likely find them under C:\Users\Public\wpilib\2024\maven (I think… going from memory on that)

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.