From cd5be732eb6c203d9793a25a1a78ca5e38336913 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Lievremont Date: Fri, 17 Jan 2014 15:50:13 +0100 Subject: [PATCH] Add missing package-infos --- .../sonar/plugins/xoo/base/package-info.java | 23 +++++++++++++++++++ .../org/sonar/plugins/xoo/package-info.java | 23 +++++++++++++++++++ .../sonar/plugins/xoo/rules/package-info.java | 23 +++++++++++++++++++ 3 files changed, 69 insertions(+) create mode 100644 plugins/sonar-xoo-plugin/src/main/java/org/sonar/plugins/xoo/base/package-info.java create mode 100644 plugins/sonar-xoo-plugin/src/main/java/org/sonar/plugins/xoo/package-info.java create mode 100644 plugins/sonar-xoo-plugin/src/main/java/org/sonar/plugins/xoo/rules/package-info.java diff --git a/plugins/sonar-xoo-plugin/src/main/java/org/sonar/plugins/xoo/base/package-info.java b/plugins/sonar-xoo-plugin/src/main/java/org/sonar/plugins/xoo/base/package-info.java new file mode 100644 index 00000000000..75caceb3818 --- /dev/null +++ b/plugins/sonar-xoo-plugin/src/main/java/org/sonar/plugins/xoo/base/package-info.java @@ -0,0 +1,23 @@ +/* + * SonarQube, open source software quality management tool. + * Copyright (C) 2008-2013 SonarSource + * mailto:contact AT sonarsource DOT com + * + * SonarQube is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 3 of the License, or (at your option) any later version. + * + * SonarQube 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with this program; if not, write to the Free Software Foundation, + * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ +@ParametersAreNonnullByDefault +package org.sonar.plugins.xoo.base; + +import javax.annotation.ParametersAreNonnullByDefault; diff --git a/plugins/sonar-xoo-plugin/src/main/java/org/sonar/plugins/xoo/package-info.java b/plugins/sonar-xoo-plugin/src/main/java/org/sonar/plugins/xoo/package-info.java new file mode 100644 index 00000000000..79dac1a80c1 --- /dev/null +++ b/plugins/sonar-xoo-plugin/src/main/java/org/sonar/plugins/xoo/package-info.java @@ -0,0 +1,23 @@ +/* + * SonarQube, open source software quality management tool. + * Copyright (C) 2008-2013 SonarSource + * mailto:contact AT sonarsource DOT com + * + * SonarQube is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 3 of the License, or (at your option) any later version. + * + * SonarQube 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with this program; if not, write to the Free Software Foundation, + * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ +@ParametersAreNonnullByDefault +package org.sonar.plugins.xoo; + +import javax.annotation.ParametersAreNonnullByDefault; diff --git a/plugins/sonar-xoo-plugin/src/main/java/org/sonar/plugins/xoo/rules/package-info.java b/plugins/sonar-xoo-plugin/src/main/java/org/sonar/plugins/xoo/rules/package-info.java new file mode 100644 index 00000000000..cfe9cb3e7c8 --- /dev/null +++ b/plugins/sonar-xoo-plugin/src/main/java/org/sonar/plugins/xoo/rules/package-info.java @@ -0,0 +1,23 @@ +/* + * SonarQube, open source software quality management tool. + * Copyright (C) 2008-2013 SonarSource + * mailto:contact AT sonarsource DOT com + * + * SonarQube is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 3 of the License, or (at your option) any later version. + * + * SonarQube 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with this program; if not, write to the Free Software Foundation, + * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ +@ParametersAreNonnullByDefault +package org.sonar.plugins.xoo.rules; + +import javax.annotation.ParametersAreNonnullByDefault; -- 2.39.5