diff options
author | Julien HENRY <julien.henry@sonarsource.com> | 2013-06-27 10:48:27 +0200 |
---|---|---|
committer | Julien HENRY <julien.henry@sonarsource.com> | 2013-06-27 10:48:52 +0200 |
commit | 97b90f376c11ae0344197c190f8df0fae1a9111d (patch) | |
tree | 8585fb2bf6297ad4eec83fa19635948e5b69b3d3 | |
parent | 7c82edb980ddb71d3482eaff31db38330d9455c4 (diff) | |
download | sonarqube-97b90f376c11ae0344197c190f8df0fae1a9111d.tar.gz sonarqube-97b90f376c11ae0344197c190f8df0fae1a9111d.zip |
Remove unused class
-rw-r--r-- | sonar-maven-plugin/src/main/java/org/sonar/maven/SonarProperties.java | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/sonar-maven-plugin/src/main/java/org/sonar/maven/SonarProperties.java b/sonar-maven-plugin/src/main/java/org/sonar/maven/SonarProperties.java deleted file mode 100644 index 6ebc9b3ce19..00000000000 --- a/sonar-maven-plugin/src/main/java/org/sonar/maven/SonarProperties.java +++ /dev/null @@ -1,46 +0,0 @@ -/* - * 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. - */ -package org.sonar.maven; - -public interface SonarProperties { - - String PROJECT_BRANCH_PROPERTY = "sonar.branch"; - String PROJECT_VERSION_PROPERTY = "sonar.projectVersion"; - String PROJECT_KEY_PROPERTY = "sonar.projectKey"; - String PROJECT_NAME_PROPERTY = "sonar.projectName"; - String PROJECT_DESCRIPTION_PROPERTY = "sonar.projectDescription"; - String PROJECT_LANGUAGE_PROPERTY = "sonar.language"; - String ENCODING_PROPERTY = "sonar.sourceEncoding"; - - String DRY_RUN_PROPERTY = "sonar.dryRun"; - String DRY_RUN_OUTPUT_PROPERTY = "sonar.dryRun.export.path"; - String REPORT_OUTPUT_PROPERTY = "sonar.report.export.path"; - - String SONAR_URL = "sonar.host.url"; - String SONAR_LOGIN = "sonar.login"; - String SONAR_PASSWORD = "sonar.password"; - String PROJECT_BASEDIR = "sonar.projectBaseDir"; - String WORK_DIR = "sonar.working.directory"; - - String VERBOSE_PROPERTY = "sonar.verbose"; - - char SEPARATOR = ','; - -} |