2.0.0
The @SystemProperty
annotation is now @Repeatable
so any usages of @SystemProperties
will have to be changed on upgrading to v2.x.
For example, this ...
@SystemProperties(
properties = {
@SystemProperty(name = "keyA", value = "valueA"),
@SystemProperty(name = "keyB", value = "valueB")
}
)
... changes to:
@SystemProperty(name = "keyA", value = "valueA")
@SystemProperty(name = "keyB", value = "valueB")