J'ai lu le texte original de la licence Apache, version 2.0 et l'explication en anglais simple.
OK, je copie une classe distribuée par La meilleure compagnie du monde , sa licence et modifie un peu le code.
Le fichier d'origine avec mes modifications.
/*
* 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
}
}
Ensuite, j'utilise MyClass dans mon application.
- Dois-je remplacer La meilleure société du monde par le nom de ma société ou par mon propre nom? Sinon, mon projet contiendra-t-il deux licences: la leur et la mienne? Où les sauver dans ce cas?
- Et pour autant que je sache, je dois distribuer mon application à l'aide de la licence Apache, version 2.0.
Wikipedia dit:
La licence Apache est largement, mais pas universellement, considérée comme permissive dans la mesure où elle ne nécessite pas de travail dérivé du logiciel, ni de modification de l'original, pour être distribué avec la même licence (contrairement aux licences Copyleft - voir comparaison).