すべてのJavaソースファイルのLGPLライセンスヘッダーをApacheLicense2.0ヘッダーに置き換える必要があります。
/*
* Copyright (c) 2012 Tyler Treat
*
* This file is part of Project Foo.
*
* Project Foo is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Project Foo is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Project Foo. If not, see <http://www.gnu.org/licenses/>.
*/
になる必要があります
/*
* Copyright (c) 2012 Tyler Treat
*
* 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.
*/
私は、sedを使用して、この著作権ヘッダーのすべての出現箇所を検索して置換するのが最も簡単な方法だと考えました。私はUnixの初心者なので、コマンドを必要な方法で動作させるのに問題がありました。具体的には、複数行の文字列を処理します。基本的に、との代わりにそれぞれのヘッダーを除いて、以下のようなものfoo
ですbar
。
find . -name "*.java" -print | xargs sed -i 's/foo/bar/g'
sedは一度に1行で動作することを理解しているので、もっと良い解決策があるのではないでしょうか。