Leí el texto original de la licencia Apache, versión 2.0 y la explicación en inglés.
OK, copio una clase distribuida por The Best Company in the World , su licencia, y modifico un poco el código.
El archivo original con mis cambios.
/*
* 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
}
}
Luego uso MyClass en mi aplicación.
- ¿Necesito reemplazar The Best Company in the World con el nombre de mi empresa o con mi propio nombre? Si no, ¿mi proyecto contendrá dos licencias: la suya y la mía? ¿Dónde guardarlos en este caso?
- Y hasta donde yo entiendo, debo distribuir mi aplicación usando la licencia Apache, versión 2.0.
Wikipedia dice:
La licencia de Apache es ampliamente, pero no universalmente, considerada permisiva ya que no requiere un trabajo derivado del software, o modificaciones al original, para ser distribuidas usando la misma licencia (a diferencia de las licencias copyleft - ver comparación).
fuente