I have a Java project in a SVN repository, with a bunch of .java files, each of those files has a licence agreement flower box at the top of the file (I have customers which have licenced the source as well as running the product).

Is there a good way to be able to modify / maintain the licence text in one place rather than having to update all the source files manually if it changes?

Looking at some similar (but not identical) questions it seems like SVN does not have this functionality out of the box - what other approaches would be most suitable?

Edit: Ideally the solution would act like the SVN keywords (Id, Author etc.) rather than being a build-time solution. The customer has access to the SVN repository too, so it would be ideal if the licence text was present in the SVN version of the file. I know SVN has commit triggers - what's a simple way to implement that?

Edit 2: Looking at the SVN hooks it doesn't look like what I'd like to do is possible. I guess build process that can be run when the text changes is ok - since it won't change too often.

link|improve this question

Do your customers require immediate access to the source, or would a small delay such as an hour between commit and availability be acceptable? – Mark Roddy Apr 1 '09 at 1:16
That would probably be acceptable - would you suggest a job to mirror the svn repository and apply the changes (using Ant or something)? – Richard Nichols Apr 2 '09 at 23:46
feedback

2 Answers

up vote 2 down vote accepted

Modify the source files that need to contain the text of the license to contain some token instead, and then move the license text to a single file that's kept in subversion. Finally, as part of your build process, add a step that substitutes the text of the license for the token. At my job, I do something along these lines using a combination of sed and make. You could then execute this single step before distributing the source to your customers.

link|improve this answer
feedback

ANT can do the substitution easily. Look into the <copy> target.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.