]> source.dussan.org Git - sonarqube.git/commitdiff
fix quality flaws in sonar-views-bridge
authorSébastien Lesaint <sebastien.lesaint@sonarsource.com>
Thu, 13 Aug 2015 13:01:06 +0000 (15:01 +0200)
committerSébastien Lesaint <sebastien.lesaint@sonarsource.com>
Thu, 13 Aug 2015 13:02:19 +0000 (15:02 +0200)
server/sonar-views-bridge/pom.xml
server/sonar-views-bridge/src/main/java/org/sonar/server/views/package-info.java [new file with mode: 0644]

index e434b99feddee2bf92ceed9a413edd2480b295c3..18a2b0a5075f35cbeb62d9b685c90f519fd4ba24 100644 (file)
       <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 (file)
index 0000000..ab2a357
--- /dev/null
@@ -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;