I am trying to read the compile time classpath inside an AnnotationProcessor, but I cannot find out how.
My annotation processor needs to save the classpath of a build to file, so it can be used when analyzing this build by a third party library later...
How can I find the classpath? System.getProperty("java.class.path")
will only find the classpath for the annotation processor, but I need the classpath for the build which is compiling.... suggestions?
I am trying to achieve this using maven...