aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-graph
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@sonarsource.com>2014-10-09 23:35:41 +0200
committerSimon Brandhof <simon.brandhof@sonarsource.com>2014-10-09 23:35:41 +0200
commit7d562d641868532e5edbd6f03fac739eff9bcc90 (patch)
tree35f7ac6c07958d80561c898b9956b6830a071a66 /sonar-graph
parent39934181c5a5eba68665ea8922ff9a28322d0c0a (diff)
downloadsonarqube-7d562d641868532e5edbd6f03fac739eff9bcc90.tar.gz
sonarqube-7d562d641868532e5edbd6f03fac739eff9bcc90.zip
Fix quality flaws
Diffstat (limited to 'sonar-graph')
-rw-r--r--sonar-graph/pom.xml7
-rw-r--r--sonar-graph/src/main/java/org/sonar/graph/package-info.java25
2 files changed, 31 insertions, 1 deletions
diff --git a/sonar-graph/pom.xml b/sonar-graph/pom.xml
index ffc47c481b4..132a7ea540f 100644
--- a/sonar-graph/pom.xml
+++ b/sonar-graph/pom.xml
@@ -7,7 +7,6 @@
<version>5.0-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>
- <groupId>org.codehaus.sonar</groupId>
<artifactId>sonar-graph</artifactId>
<packaging>jar</packaging>
<name>SonarQube :: Graph</name>
@@ -22,6 +21,12 @@
<artifactId>guava</artifactId>
</dependency>
<dependency>
+ <groupId>com.google.code.findbugs</groupId>
+ <artifactId>jsr305</artifactId>
+ <scope>provided</scope>
+ </dependency>
+
+ <dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
diff --git a/sonar-graph/src/main/java/org/sonar/graph/package-info.java b/sonar-graph/src/main/java/org/sonar/graph/package-info.java
new file mode 100644
index 00000000000..e1f395aea51
--- /dev/null
+++ b/sonar-graph/src/main/java/org/sonar/graph/package-info.java
@@ -0,0 +1,25 @@
+/*
+ * 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.graph;
+
+import javax.annotation.ParametersAreNonnullByDefault;
+