Unresolved requirement: Import-Package: javax.measure; version="[2.1.0,3.0.0)"

Exact same issue here. I was able to solve this temporarily by adding an explicit dependency in pom.xml

  <dependencies>
    <dependency>
      <groupId>javax.measure</groupId>
      <artifactId>unit-api</artifactId>
      <version>1.0</version>
    </dependency>
  </dependencies>

I am quite interested in how to resolve this correctly.