Hello,
I would like to know how it is possible within a “build.gradle” file to specify that I want the “gradle publish” command not only package the .java sources to a .jar in a repository area, but also, I would like to “copy” the .java in the repository area.
I would then be able to work with Eclipse, with the published-modules declared in the .classpath I would like to get access to the .java source code from the Eclipse Gui (with the ‘F3’ key for example).
I guess it cannot be a simple ‘Copy Task’, because Eclipse relies on the ".classpath’ file which contain the path to the published .jar modules and it should exist a connexion between these .jar and the “.java” I want to publish.
Thanks a lot for your help !
P.