We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec4bc96 commit 3111fbbCopy full SHA for 3111fbb
CHANGELOG.md
@@ -1,5 +1,8 @@
1
# Changelog
2
3
+## 13.6
4
+* Deprecate `org.sonar.api.config.PropertyDefinitions`. Use `PropertyDefinition.builder(String)` to declare properties instead.
5
+
6
## 13.5
7
* Introduce support for issue resolution from sensors:
8
* Introduce `org.sonar.api.batch.sensor.issue.NewIssueResolution`
plugin-api/src/main/java/org/sonar/api/config/PropertyDefinitions.java
@@ -46,7 +46,9 @@
46
* Metadata of all the properties declared by plugins
47
*
48
* @since 2.12
49
+ * @deprecated since 13.6. Use {@link PropertyDefinition#builder(String)} to declare properties instead.
50
*/
51
+@Deprecated(since = "13.6", forRemoval = true)
52
@ScannerSide
53
@ServerSide
54
@ComputeEngineSide
0 commit comments