Ho letto il testo originale di Licenza Apache, Versione 2.0 e la spiegazione in inglese semplice.
OK, copio una classe distribuita da The Best Company in the World , la loro licenza e modifica un po 'il codice.
Il file originale con le mie modifiche.
/*
* 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
}
}
Quindi uso MyClass nella mia applicazione.
- Devo sostituire The Best Company in the World con il nome della mia azienda o con il mio nome? In caso contrario, il mio progetto includerà due licenze: la loro e la mia? Dove salvarli in questo caso?
- E per quanto ho capito, devo distribuire la mia applicazione usando Licenza Apache, versione 2.0.
Wikipedia dice:
The Apache License is widely, but not universally, considered permissive in that it does not require a derivative work of the software, or modifications to the original, to be distributed using the same license (unlike copyleft licenses – see comparison).