aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-maven-plugin
diff options
context:
space:
mode:
Diffstat (limited to 'sonar-maven-plugin')
-rw-r--r--sonar-maven-plugin/src/main/java/org/sonar/maven/SonarProperties.java46
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 = ',';
-
-}