Apache Licenseバージョン2.0の原文と説明を平易な英語で読みました。
OK、The Best Company in the Worldが配布したクラスとそのライセンスをコピーし、コードを少し変更します。
変更した元のファイル。
/*
* Copyright (C) 2011 The Best Company in the World
*
* 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.
*/
package com.mypackage;
public class MyClass {
private void someMethod() {
// Their code
// My little change
}
}
次に、アプリケーションでMyClassを使用します。
- The Best Company in the Worldを自分の会社の名前または自分の名前に置き換える必要がありますか?そうでない場合、私のプロジェクトには2つのライセンスが含まれます:彼らのものと私のものですか?この場合、どこに保存しますか?
- 私の知る限り、Apache Licenceバージョン2.0を使用してアプリケーションを配布する必要があります。
ウィキペディアによると:
Apacheライセンスは、同じライセンスを使用して配布するために、ソフトウェアの派生物またはオリジナルの修正を必要としないという点で、一般的ではありませんが広く認められています(コピーレフトライセンスとは異なります。比較を参照)。