Skip to content
This repository was archived by the owner on Dec 23, 2017. It is now read-only.

Commit 13c37a8

Browse files
Merge pull request #21 from Graylog2/gpl-3
Change license to GPL 3.0
2 parents 4a9643c + 1a14c52 commit 13c37a8

File tree

69 files changed

+1480
-869
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+1480
-869
lines changed

CODE_OF_CONDUCT.md

Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
# Contributor Covenant Code of Conduct
2+
3+
## Our Pledge
4+
5+
In the interest of fostering an open and welcoming environment, we as
6+
contributors and maintainers pledge to making participation in our project and
7+
our community a harassment-free experience for everyone, regardless of age, body
8+
size, disability, ethnicity, gender identity and expression, level of experience,
9+
nationality, personal appearance, race, religion, or sexual identity and
10+
orientation.
11+
12+
## Our Standards
13+
14+
Examples of behavior that contributes to creating a positive environment
15+
include:
16+
17+
* Using welcoming and inclusive language
18+
* Being respectful of differing viewpoints and experiences
19+
* Gracefully accepting constructive criticism
20+
* Focusing on what is best for the community
21+
* Showing empathy towards other community members
22+
23+
Examples of unacceptable behavior by participants include:
24+
25+
* The use of sexualized language or imagery and unwelcome sexual attention or
26+
advances
27+
* Trolling, insulting/derogatory comments, and personal or political attacks
28+
* Public or private harassment
29+
* Publishing others' private information, such as a physical or electronic
30+
address, without explicit permission
31+
* Other conduct which could reasonably be considered inappropriate in a
32+
professional setting
33+
34+
## Our Responsibilities
35+
36+
Project maintainers are responsible for clarifying the standards of acceptable
37+
behavior and are expected to take appropriate and fair corrective action in
38+
response to any instances of unacceptable behavior.
39+
40+
Project maintainers have the right and responsibility to remove, edit, or
41+
reject comments, commits, code, wiki edits, issues, and other contributions
42+
that are not aligned to this Code of Conduct, or to ban temporarily or
43+
permanently any contributor for other behaviors that they deem inappropriate,
44+
threatening, offensive, or harmful.
45+
46+
## Scope
47+
48+
This Code of Conduct applies both within project spaces and in public spaces
49+
when an individual is representing the project or its community. Examples of
50+
representing a project or community include using an official project e-mail
51+
address, posting via an official social media account, or acting as an appointed
52+
representative at an online or offline event. Representation of a project may be
53+
further defined and clarified by project maintainers.
54+
55+
## Enforcement
56+
57+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
58+
reported by contacting the project team at <[email protected]>. All
59+
complaints will be reviewed and investigated and will result in a response that
60+
is deemed necessary and appropriate to the circumstances. The project team is
61+
obligated to maintain confidentiality with regard to the reporter of an incident.
62+
Further details of specific enforcement policies may be posted separately.
63+
64+
Project maintainers who do not follow or enforce the Code of Conduct in good
65+
faith may face temporary or permanent repercussions as determined by other
66+
members of the project's leadership.
67+
68+
## Attribution
69+
70+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71+
available at [http://contributor-covenant.org/version/1/4][version]
72+
73+
[homepage]: http://contributor-covenant.org
74+
[version]: http://contributor-covenant.org/version/1/4/

CONTRIBUTING.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
Please follow [the instructions on graylog.org](https://www.graylog.org/contributing-to-graylog/).
2+
3+
#### Code of Conduct
4+
5+
In the interest of fostering an open and welcoming environment, we as
6+
contributors and maintainers pledge to making participation in our project and
7+
our community a harassment-free experience for everyone, regardless of age, body
8+
size, disability, ethnicity, gender identity and expression, level of experience,
9+
nationality, personal appearance, race, religion, or sexual identity and
10+
orientation.
11+
12+
Please read and understand the [Code of Conduct](CODE_OF_CONDUCT.md).

COPYING

Lines changed: 674 additions & 0 deletions
Large diffs are not rendered by default.

LICENSE

Lines changed: 0 additions & 202 deletions
This file was deleted.

pom.xml

Lines changed: 4 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
<relativePath>../graylog2-server/graylog-plugin-parent</relativePath>
1313
</parent>
1414

15-
<groupId>org.graylog.plugins</groupId>
1615
<artifactId>graylog-plugin-anonymous-usage-statistics</artifactId>
1716
<version>2.3.0-alpha.2-SNAPSHOT</version>
1817
<packaging>jar</packaging>
@@ -39,8 +38,8 @@
3938

4039
<licenses>
4140
<license>
42-
<name>Apache 2.0</name>
43-
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
41+
<name>GNU General Public License, Version 3</name>
42+
<url>http://www.gnu.org/licenses/gpl-3.0.html</url>
4443
<distribution>repo</distribution>
4544
</license>
4645
</licenses>
@@ -231,7 +230,8 @@
231230
<groupId>com.mycila</groupId>
232231
<artifactId>license-maven-plugin</artifactId>
233232
<configuration>
234-
<header>com/mycila/maven/plugin/license/templates/APACHE-2.txt</header>
233+
<skip>false</skip>
234+
<header>com/mycila/maven/plugin/license/templates/GPL-3.txt</header>
235235
<properties>
236236
<owner>${project.organization.name}</owner>
237237
<email>[email protected]</email>
@@ -254,16 +254,6 @@
254254
</plugins>
255255
<pluginManagement>
256256
<plugins>
257-
<plugin>
258-
<groupId>org.apache.maven.plugins</groupId>
259-
<artifactId>maven-shade-plugin</artifactId>
260-
<version>2.4.3</version>
261-
</plugin>
262-
<plugin>
263-
<groupId>com.mycila</groupId>
264-
<artifactId>license-maven-plugin</artifactId>
265-
<version>${license-maven.version}</version>
266-
</plugin>
267257
<plugin>
268258
<groupId>org.codehaus.mojo</groupId>
269259
<artifactId>findbugs-maven-plugin</artifactId>

src/main/java/org/graylog/plugins/usagestatistics/UsageStatsClusterPeriodical.java

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
11
/**
2-
* Copyright (C) 2015 Graylog, Inc. ([email protected])
2+
* This file is part of Graylog Anonymous Usage Statistics Plugin.
33
*
4-
* Licensed under the Apache License, Version 2.0 (the "License");
5-
* you may not use this file except in compliance with the License.
6-
* You may obtain a copy of the License at
4+
* Graylog Anonymous Usage Statistics Plugin is free software: you can redistribute it and/or modify
5+
* it under the terms of the GNU General Public License as published by
6+
* the Free Software Foundation, either version 3 of the License, or
7+
* (at your option) any later version.
78
*
8-
* http://www.apache.org/licenses/LICENSE-2.0
9+
* Graylog Anonymous Usage Statistics Plugin is distributed in the hope that it will be useful,
10+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12+
* GNU General Public License for more details.
913
*
10-
* Unless required by applicable law or agreed to in writing, software
11-
* distributed under the License is distributed on an "AS IS" BASIS,
12-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13-
* See the License for the specific language governing permissions and
14-
* limitations under the License.
14+
* You should have received a copy of the GNU General Public License
15+
* along with Graylog Anonymous Usage Statistics Plugin. If not, see <http://www.gnu.org/licenses/>.
1516
*/
1617
package org.graylog.plugins.usagestatistics;
1718

@@ -103,4 +104,4 @@ public boolean startOnThisNode() {
103104
protected Logger getLogger() {
104105
return LOG;
105106
}
106-
}
107+
}

0 commit comments

Comments
 (0)