diff options
author | Janos Gyerik <janos.gyerik@sonarsource.com> | 2017-10-12 14:41:19 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-12 14:41:19 +0200 |
commit | 01f503279a25c643069968b262492981fb5826ae (patch) | |
tree | a56a92aa074e5b61ac32731927c2afea61ec317a /sonar-plugin-api | |
parent | b084faad25e6f601ac90d993379c799d6500e98f (diff) | |
download | sonarqube-01f503279a25c643069968b262492981fb5826ae.tar.gz sonarqube-01f503279a25c643069968b262492981fb5826ae.zip |
SONAR-9799 deprecate legacy branch param (#2662)
Diffstat (limited to 'sonar-plugin-api')
-rw-r--r-- | sonar-plugin-api/src/main/java/org/sonar/api/CoreProperties.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sonar-plugin-api/src/main/java/org/sonar/api/CoreProperties.java b/sonar-plugin-api/src/main/java/org/sonar/api/CoreProperties.java index 9157f49b532..ba01afdc6d5 100644 --- a/sonar-plugin-api/src/main/java/org/sonar/api/CoreProperties.java +++ b/sonar-plugin-api/src/main/java/org/sonar/api/CoreProperties.java @@ -128,6 +128,12 @@ public interface CoreProperties { /* Global settings */ String SONAR_HOME = "SONAR_HOME"; + + /** + * @deprecated since 6.7. This feature is deprecated in favor of the new branch feature. + * @see <a href="https://redirect.sonarsource.com/doc/branches.html">https://redirect.sonarsource.com/doc/branches.html/a> + */ + @Deprecated String PROJECT_BRANCH_PROPERTY = "sonar.branch"; String PROJECT_VERSION_PROPERTY = "sonar.projectVersion"; |