开发者

The copyright part in a file [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.

This question does not appear to be about programming within the scope defined in the help center.

开发者_如何学Go

Closed 7 years ago.

Improve this question

My project is contributed under the GPL lisence. I want to add some copyright notices into all files. Would it be enough:

/*
 * Copyright (c) 2010 Developer Name 1, Developer Name 2
 * This file is part of %Project name% (page at https://page).
 * Project is contributed with GPL license. For more information, visit web page.
 */

Or I have to include some license text there?


If you're going to distribute code under the GPL, then have a look at the GNU Hello program for examples of how to decorate your source code with appropriate comments.


The ordinary boilerplate for the GNU GPL reads as follows, and that is what you should use.

Copyright (C) [years] [name of copyright holder]

This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program; if not, see http://www.gnu.org/licenses.

(From the GPL FAQ)

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜