diff options
author | Julien Lancelot <julien.lancelot@gmail.com> | 2013-07-16 09:20:08 +0200 |
---|---|---|
committer | Julien Lancelot <julien.lancelot@gmail.com> | 2013-07-16 09:20:08 +0200 |
commit | 55658914713c35b9b2bdea682103743c5265ff68 (patch) | |
tree | 3839ebd87d0ae12d9423835f0dc3e899a4808717 | |
parent | 31e7fdbe45238ada90eb3838db24142f1638a9e3 (diff) | |
download | sonarqube-55658914713c35b9b2bdea682103743c5265ff68.tar.gz sonarqube-55658914713c35b9b2bdea682103743c5265ff68.zip |
Add missing package-info file
-rw-r--r-- | sonar-core/src/main/java/org/sonar/core/resource/package-info.java | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/sonar-core/src/main/java/org/sonar/core/resource/package-info.java b/sonar-core/src/main/java/org/sonar/core/resource/package-info.java new file mode 100644 index 00000000000..fc127b0b0e3 --- /dev/null +++ b/sonar-core/src/main/java/org/sonar/core/resource/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.core.resource; + +import javax.annotation.ParametersAreNonnullByDefault;
\ No newline at end of file |