How to manage license banners in source files of Eclipse plug-in projects - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T12:16:46Zhttp://stackoverflow.com/feeds/question/204676http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/204676/how-to-manage-license-banners-in-source-files-of-eclipse-plug-in-projects1How to manage license banners in source files of Eclipse plug-in projectsfhe2008-10-15T13:22:17Z2009-02-07T18:44:24Z
<p>I'm about to release a set of Eclipse plug-ins as Open Source and noticed that most source code released under the LGPL/EPL contains a header banner in each file that refers to the license or contains the license itself.</p>
<p>Since adding these banners to each file manually seems to be a daunting and error-prone task, I was wondering whether there are any best practices regarding this task. Are there any tools or plug-ins for Eclipse that support the developer at adding and updating this kind of metadata?</p>
<p>Are there any best-practices when it comes to generated source code?</p>
<p>Any advice is much appreciated.</p>
<p><strong>Edit:</strong> After looking around more closely, I found <a href="http://www.wdev91.com/?p=cpw" rel="nofollow">Copyright Wizard</a> which is a Eclipse plug-in which also allows for updating existing license banners.</p>
http://stackoverflow.com/questions/204676/how-to-manage-license-banners-in-source-files-of-eclipse-plug-in-projects/204928#2049282Answer by idrosid for How to manage license banners in source files of Eclipse plug-in projectsidrosid2008-10-15T14:28:14Z2008-10-15T14:28:14Z<p>Concerning best practises, I believe you should have your license text in a separate file and have a build tool (ie ant) to add it at the beginning of all other files. Since you are talking about an open source project you would need a build process anyway for thinks like generating the javadocs, publishing releases etc.</p>
<p>BTW,ant tasks are simple Java classes so it should be easy to write one yourself if you don't find an ant plugin that does exactly that.</p>
<p>Coming to eclipse, to my knowledge, it cannot do something like this. The quickest way I can think of to do it is with bash (if you are using Linux). Assume the file msg contains the text you want to add at the beginning of every file.</p>
<ol>
<li><p>Create a new directory to store the files:</p>
<p>mkdir ~/outdir</p></li>
<li><p>Add the msg at the beginning of every file and put the result at the outdir </p>
<p>for i in <code>ls "*.java"</code>; do cat msg $i > ~/outdir/$i ; done</p></li>
</ol>
<p>Similarly you can write a command that does the same recursively, with an extra step to create the directory strucutre:</p>
<pre><code>mkdir ~/outdir
for i in `find -type d | sed 's/\.//' | grep -v "^$"`; do mkdir ~/outdir$i; done
for i in `find -name "*.java"`; do cat msg $i > ~/outdir/$i ; done
</code></pre>
http://stackoverflow.com/questions/204676/how-to-manage-license-banners-in-source-files-of-eclipse-plug-in-projects/206602#2066021Answer by Chris R for How to manage license banners in source files of Eclipse plug-in projectsChris R2008-10-15T21:37:40Z2008-10-15T21:37:40Z<p>A more Eclipse-like approach than the manual addition is the following, done via GUI in Eclipse. Note that these are the Linux / Windows menus; Mac is a bit different.</p>
<ol>
<li>Open <code>Windows->Preferences</code></li>
<li>Navigate to <code>Java->Code Style->Code Templates</code></li>
<li>Edit the <code>Comments->Files</code> comment template to include your boilerplate.<br />
There are variables for the current year, file name, etc...</li>
</ol>
<p>Note, also, that this is a solution for new files only; it's not going to help you with old files; for that, I would use something like <a href="#204928" rel="nofollow">idrosid</a>'s solution for your existing code</p>
http://stackoverflow.com/questions/204676/how-to-manage-license-banners-in-source-files-of-eclipse-plug-in-projects/524335#5243351Answer by fhe for How to manage license banners in source files of Eclipse plug-in projectsfhe2009-02-07T18:44:24Z2009-02-07T18:44:24Z<p>Eventually, I found <a href="http://www.wdev91.com/?p=cpw" rel="nofollow">Copyright Wizard</a> which is a Eclipse plug-in which also allows for updating existing license banners.</p>