]> source.dussan.org Git - sonar-scanner-cli.git/commitdiff
SONARUNNER-99 Remove references to sonar.libraries and sonar.binaries
authorJulien HENRY <julien.henry@sonarsource.com>
Mon, 28 Sep 2015 08:31:56 +0000 (10:31 +0200)
committerJulien HENRY <julien.henry@sonarsource.com>
Mon, 28 Sep 2015 12:25:52 +0000 (14:25 +0200)
sonar-runner-api/src/main/java/org/sonar/runner/api/RunnerProperties.java
sonar-runner-api/src/main/java/org/sonar/runner/api/ScanProperties.java

index 0a855b71eb0cc4b55e663243f091413b52345e81..73bb921fb012c3922ba2c620f79127bf4e0cdd76 100644 (file)
@@ -20,8 +20,8 @@
 package org.sonar.runner.api;
 
 /**
- * Mostly used properties that can be injected in {@link Runner#setProperty(String, String)}.
- * See <a href="http://docs.codehaus.org/pages/viewinfo.action?pageId=194314339">documentation</a> for more properties.
+ * Mostly used properties that can be passed to {@link EmbeddedRunner#addGlobalProperties(java.util.Properties)}.
+ * See <a href="http://docs.sonarqube.org/display/SONAR/Analysis+Parameters">documentation</a> for more properties.
  *
  * @since 2.2
  */
@@ -33,7 +33,9 @@ public interface RunnerProperties {
 
   /**
    * Task to execute, "scan" by default
+   * @deprecated since 2.5 No more task starting from SQ 5.2
    */
+  @Deprecated
   String TASK = "sonar.task";
 
   /**
index 8d8154b400eb0354142a9a64a65a17ba87bd33d5..75d24c82bc0b7f913b37d105dd5d853682d6539d 100644 (file)
@@ -20,8 +20,8 @@
 package org.sonar.runner.api;
 
 /**
- * Most commonly used properties of the task "scan". These properties are injected in {@link Runner#setProperty(String, String)}.
- * See <a href="http://docs.codehaus.org/pages/viewinfo.action?pageId=194314339">documentation</a> for more properties.
+ * Most commonly used properties for a SonarQube analysis. These properties are passed to {@link EmbeddedRunner#runAnalysis(java.util.Properties)}.
+ * See <a href="http://docs.sonarqube.org/display/SONAR/Analysis+Parameters">documentation</a> for more properties.
  *
  * @since 2.2
  */
@@ -31,7 +31,9 @@ public interface ScanProperties {
    * Default task
    *
    * @see RunnerProperties#TASK
+   * @deprecated since 2.5 No more task since SQ 5.2
    */
+  @Deprecated
   String SCAN_TASK = "scan";
 
   /**
@@ -64,24 +66,6 @@ public interface ScanProperties {
    */
   String PROJECT_TEST_DIRS = "sonar.tests";
 
-  /**
-   * Optional paths to binaries, for example to declare the directory of Java bytecode. Example : "binDir"
-   */
-  String PROJECT_BINARY_DIRS = "sonar.binaries";
-
-  /**
-   * Optional comma-separated list of paths to libraries. Example : <code>path/to/library/*.jar,path/to/specific/library/myLibrary.jar,parent/*.jar</code>
-   */
-  String PROJECT_LIBRARIES = "sonar.libraries";
-
-  String PROJECT_LANGUAGE = "sonar.language";
-
-  /**
-   * It becomes quickly necessary to input historical data and to highlight some events. It is possible by going for example in a subversion tag
-   * and use this property. Format is yyyy-MM-dd, for example 2010-12-25.
-   */
-  String PROJECT_DATE = "sonar.projectDate";
-
   /**
    * Property used to specify the base directory of the project to analyse. Default is ".".
    */