diff options
author | Jean-Baptiste Lievremont <jean-baptiste.lievremont@sonarsource.com> | 2014-01-17 15:50:13 +0100 |
---|---|---|
committer | Jean-Baptiste Lievremont <jean-baptiste.lievremont@sonarsource.com> | 2014-01-17 15:50:13 +0100 |
commit | cd5be732eb6c203d9793a25a1a78ca5e38336913 (patch) | |
tree | 3a799308d144a09da84b5a5d576c6584f7118639 /plugins | |
parent | 9d1e3f31a23c4bac3d40c8855109f506b76fc89a (diff) | |
download | sonarqube-cd5be732eb6c203d9793a25a1a78ca5e38336913.tar.gz sonarqube-cd5be732eb6c203d9793a25a1a78ca5e38336913.zip |
Add missing package-infos
Diffstat (limited to 'plugins')
3 files changed, 69 insertions, 0 deletions
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; |