Olá. Desde já, peço perdão pela minha ignorância, sou programador a bastante tempo, mas criei minha conta no Github e comecei nesse mundo a pouco tempo. A minha pergunta é a seguinte: Se eu crio um projeto no Github, com licença GPL. Eu continuo sendo o criador? Alguém pode vir e dizer que criou um software que eu passei messes desenvolvendo?
Leia isso e vê se te ajuda:
Muito obrigado. Que falta de atenção da minha parte. Mas aí me surge outra dúvida. Como fica registrado que eu sou o criador? Fica registrado que a minha conta no Github que criou o projeto certo? Não tem como registrar o meu nome completo na licença?
tem essa parte que você pode colocar no seus arquivos fontes :
https://www.gnu.org/licenses/gpl.html#howto
em portugues : https://www.gnu.org/licenses/gpl-howto.pt-br.html
O GitHub é um repositório com milhares de projetos open-source, onde todos podem ver o código-fonte,baixar os mesmo sem precisar fazer um fork. Isso não irá me impedir de pegar o seu projeto, modificar o seu nome e colocar o meu,fazer algumas modificação e vender por ai,etc( minha opinião, posso está errado).
exemplo no Spring :
/*
* Copyright 2002-2007 the original author or authors.
*
* 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 org.springframework.stereotype;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
Exemplo MongoDB
/*
* Copyright (c) 2008-2014 MongoDB, Inc.
*
* 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 org.bson;
Valeu. Muito obrigado pelas informações.