ひがやすを技術ブログ

電通国際情報サービスのプログラマ

ソースのヘッダのCopyrightを2008から2009にしたい

ソースコードのヘッダのCopyrightを新年になったから新しく2009にかえたいって人、いますよね。
mavenを使っていれば、簡単に書き換えられます。
詳細は、こちらをご覧ください。
http://code.google.com/p/maven-license-plugin/wiki/HowTo


簡単に使い方を書いておくと、まずpom.xmlにlicense-pluginの設定をします。

<plugin>
  <groupId>com.google.code.maven-license-plugin</groupId>
  <artifactId>maven-license-plugin</artifactId>
  <version>1.4.0</version>
  <configuration>
    <header>src/header.txt</header>
    <includes>
      <include>src/**/*.java</include>
    </includes>
    <encoding>UTF-8</encoding>
    <headerDefinitions>
      <headerDefinition>src/header-definition.xml</headerDefinition>
    </headerDefinitions>
  </configuration>
</plugin> 

プロジェクトのルートにsrcディレクトリを作って、そこにheader.txtとheader-definition.xmlを格納します。Slim3の場合はこんな感じ。

header.txt

Copyright 2004-${year} the Seasar Foundation and the Others.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
either express or implied. See the License for the specific language
governing permissions and limitations under the License.

${year}がポイントで、この部分が書き換えられます。

header-definition.xml

<?xml version="1.0" encoding="UTF-8"?>
<additionalHeaders>
    <javadoc_style>
        <firstLine>/*</firstLine>
        <beforeEachLine> * </beforeEachLine>
        <endLine> */</endLine>
        <!--skipLine></skipLine-->
        <firstLineDetectionPattern>(\s|\t)*/\*.*$</firstLineDetectionPattern>
        <lastLineDetectionPattern>.*\*/(\s|\t)*$</lastLineDetectionPattern>
    </javadoc_style>
</additionalHeaders>

後は、コマンドプロンプトから

mvn license:format -Dyear=2009

を実行しましょう。これで、ヘッダのCopyrightを2008から2009に変えることができます。
後は、EclipseのCode TemplatesのFilesの設定を変えるだけ。


追記:コメントにもあるようにJava5以上の環境で実行する必要があります。