Skip to content

Commit 33c9e39

Browse files
authored
Merge pull request #2 from CfrancCyrille/dev
Add licence text
2 parents 7920ef1 + 83a4d66 commit 33c9e39

Some content is hidden

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

42 files changed

+697
-36
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,4 @@ buildNumber.properties
1818
=======
1919
# Avoid ignoring Eclipse project specific configuration if someone use another IDE
2020
# /.project
21+
/bin/

src/main/java/fr/cnes/sonarqube/plugins/icode/ICodePlugin.java

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
/*
2+
* This file is part of sonar-icode-cnes-plugin.
3+
*
4+
* sonar-icode-cnes-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.
8+
*
9+
* sonar-icode-cnes-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.
13+
*
14+
* You should have received a copy of the GNU General Public License
15+
* along with sonar-icode-cnes-plugin. If not, see <http://www.gnu.org/licenses/>.
16+
17+
*/
118
package fr.cnes.sonarqube.plugins.icode;
219

320
import org.sonar.api.Plugin;

src/main/java/fr/cnes/sonarqube/plugins/icode/languages/ICodeLanguage.java

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
/*
2+
* This file is part of sonar-icode-cnes-plugin.
3+
*
4+
* sonar-icode-cnes-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.
8+
*
9+
* sonar-icode-cnes-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.
13+
*
14+
* You should have received a copy of the GNU General Public License
15+
* along with sonar-icode-cnes-plugin. If not, see <http://www.gnu.org/licenses/>.
16+
17+
*/
118
package fr.cnes.sonarqube.plugins.icode.languages;
219

320
import java.util.ArrayList;

src/main/java/fr/cnes/sonarqube/plugins/icode/languages/ICodeQualityProfile.java

Lines changed: 16 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,20 @@
11
/*
2-
* Example Plugin for SonarQube
3-
* Copyright (C) 2009-2016 SonarSource SA
4-
* mailto:contact AT sonarsource DOT com
5-
*
6-
* This program is free software; you can redistribute it and/or
7-
* modify it under the terms of the GNU Lesser General Public
8-
* License as published by the Free Software Foundation; either
9-
* version 3 of the License, or (at your option) any later version.
10-
*
11-
* This program is distributed in the hope that it will be useful,
12-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14-
* Lesser General Public License for more details.
15-
*
16-
* You should have received a copy of the GNU Lesser General Public License
17-
* along with this program; if not, write to the Free Software Foundation,
18-
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19-
*/
2+
* This file is part of sonar-icode-cnes-plugin.
3+
*
4+
* sonar-icode-cnes-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.
8+
*
9+
* sonar-icode-cnes-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.
13+
*
14+
* You should have received a copy of the GNU General Public License
15+
* along with sonar-icode-cnes-plugin. If not, see <http://www.gnu.org/licenses/>.
16+
17+
*/
2018

2119
package fr.cnes.sonarqube.plugins.icode.languages;
2220

src/main/java/fr/cnes/sonarqube/plugins/icode/measures/ComputeModuleF77CyclomaticStatistics.java

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
/*
2+
* This file is part of sonar-icode-cnes-plugin.
3+
*
4+
* sonar-icode-cnes-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.
8+
*
9+
* sonar-icode-cnes-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.
13+
*
14+
* You should have received a copy of the GNU General Public License
15+
* along with sonar-icode-cnes-plugin. If not, see <http://www.gnu.org/licenses/>.
16+
17+
*/
118
package fr.cnes.sonarqube.plugins.icode.measures;
219

320
//import static fr.cnes.sonarqube.plugins.icode.measures.ICodeMetrics.DBG;

src/main/java/fr/cnes/sonarqube/plugins/icode/measures/ComputeModuleF77LinesOfCodeStatistics.java

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
/*
2+
* This file is part of sonar-icode-cnes-plugin.
3+
*
4+
* sonar-icode-cnes-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.
8+
*
9+
* sonar-icode-cnes-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.
13+
*
14+
* You should have received a copy of the GNU General Public License
15+
* along with sonar-icode-cnes-plugin. If not, see <http://www.gnu.org/licenses/>.
16+
17+
*/
118
package fr.cnes.sonarqube.plugins.icode.measures;
219

320
//import static fr.cnes.sonarqube.plugins.icode.measures.ICodeMetrics.DBG;

src/main/java/fr/cnes/sonarqube/plugins/icode/measures/ComputeModuleF77NestingStatistics.java

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
/*
2+
* This file is part of sonar-icode-cnes-plugin.
3+
*
4+
* sonar-icode-cnes-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.
8+
*
9+
* sonar-icode-cnes-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.
13+
*
14+
* You should have received a copy of the GNU General Public License
15+
* along with sonar-icode-cnes-plugin. If not, see <http://www.gnu.org/licenses/>.
16+
17+
*/
118
package fr.cnes.sonarqube.plugins.icode.measures;
219

320
import static fr.cnes.sonarqube.plugins.icode.measures.ICodeMetricsF77Nesting.F77_NESTING;

src/main/java/fr/cnes/sonarqube/plugins/icode/measures/ComputeModuleF77RatioCommentStatistics.java

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
/*
2+
* This file is part of sonar-icode-cnes-plugin.
3+
*
4+
* sonar-icode-cnes-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.
8+
*
9+
* sonar-icode-cnes-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.
13+
*
14+
* You should have received a copy of the GNU General Public License
15+
* along with sonar-icode-cnes-plugin. If not, see <http://www.gnu.org/licenses/>.
16+
17+
*/
118
package fr.cnes.sonarqube.plugins.icode.measures;
219

320
import static fr.cnes.sonarqube.plugins.icode.measures.ICodeMetricsF77RatioComment.F77_RATIO_COMMENT;

src/main/java/fr/cnes/sonarqube/plugins/icode/measures/ComputeModuleF90CyclomaticStatistics.java

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
/*
2+
* This file is part of sonar-icode-cnes-plugin.
3+
*
4+
* sonar-icode-cnes-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.
8+
*
9+
* sonar-icode-cnes-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.
13+
*
14+
* You should have received a copy of the GNU General Public License
15+
* along with sonar-icode-cnes-plugin. If not, see <http://www.gnu.org/licenses/>.
16+
17+
*/
118
package fr.cnes.sonarqube.plugins.icode.measures;
219

320
import static fr.cnes.sonarqube.plugins.icode.measures.ICodeMetricsF90Cyclomatic.F90_CYCLOMATIC;

src/main/java/fr/cnes/sonarqube/plugins/icode/measures/ComputeModuleF90LinesOfCodeStatistics.java

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
/*
2+
* This file is part of sonar-icode-cnes-plugin.
3+
*
4+
* sonar-icode-cnes-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.
8+
*
9+
* sonar-icode-cnes-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.
13+
*
14+
* You should have received a copy of the GNU General Public License
15+
* along with sonar-icode-cnes-plugin. If not, see <http://www.gnu.org/licenses/>.
16+
17+
*/
118
package fr.cnes.sonarqube.plugins.icode.measures;
219

320
import static fr.cnes.sonarqube.plugins.icode.measures.ICodeMetricsF90LinesOfCode.F90_LOC;

0 commit comments

Comments
 (0)