Skip to content

2.0.0

Compare
Choose a tag to compare
@glytching glytching released this 01 Feb 15:10
· 63 commits to master since this release

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")