I have forked a Java project recently but am a little confused when trying to conform to its GPL. How often should you quote the source?
Right now I've noted that this forked the original project and linked to it in the home page, but should I also add it to the Javadocs as well?
/**
* ...
* @author Originally by Someone
* <a href="http://project.com">http://project.com</a>
* <p/>Forked by Leon Blakey as part of the MyProject project
* <a href="http://myproject.com">http://myproject.com</a>
*/
To me that seems a little verbose, and then what do I do with the files that I didn't touch or the original author didn't create? Or is such a linkback even necessary?