diff options
author | Sébastien Lesaint <sebastien.lesaint@sonarsource.com> | 2015-08-13 15:01:06 +0200 |
---|---|---|
committer | Sébastien Lesaint <sebastien.lesaint@sonarsource.com> | 2015-08-13 15:02:19 +0200 |
commit | da1cbd3a083fd60520de77d3b1bf4c586cfd1b74 (patch) | |
tree | 806ab70293087d30ba8a258944b671cf56c91056 /server/sonar-views-bridge | |
parent | 64cab919086d9d3f46038210039c3ec0390e96b7 (diff) | |
download | sonarqube-da1cbd3a083fd60520de77d3b1bf4c586cfd1b74.tar.gz sonarqube-da1cbd3a083fd60520de77d3b1bf4c586cfd1b74.zip |
fix quality flaws in sonar-views-bridge
Diffstat (limited to 'server/sonar-views-bridge')
-rw-r--r-- | server/sonar-views-bridge/pom.xml | 5 | ||||
-rw-r--r-- | server/sonar-views-bridge/src/main/java/org/sonar/server/views/package-info.java | 24 |
2 files changed, 29 insertions, 0 deletions
diff --git a/server/sonar-views-bridge/pom.xml b/server/sonar-views-bridge/pom.xml index e434b99fedd..18a2b0a5075 100644 --- a/server/sonar-views-bridge/pom.xml +++ b/server/sonar-views-bridge/pom.xml @@ -20,6 +20,11 @@ <groupId>org.codehaus.sonar</groupId> <artifactId>sonar-core</artifactId> </dependency> + <dependency> + <groupId>com.google.code.findbugs</groupId> + <artifactId>jsr305</artifactId> + <scope>provided</scope> + </dependency> </dependencies> <build> diff --git a/server/sonar-views-bridge/src/main/java/org/sonar/server/views/package-info.java b/server/sonar-views-bridge/src/main/java/org/sonar/server/views/package-info.java new file mode 100644 index 00000000000..ab2a357436a --- /dev/null +++ b/server/sonar-views-bridge/src/main/java/org/sonar/server/views/package-info.java @@ -0,0 +1,24 @@ +/* + * SonarQube, open source software quality management tool. + * Copyright (C) 2008-2014 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.server.views; + +import javax.annotation.ParametersAreNonnullByDefault; |