You could try examining your dependency tree -
https://docs.gradle.org/current/userguide/viewing_debugging_dependencies.html
i.e. you can run something like:
gradle dependencies
This should tell you if the unit-api is included, or if multiple
conflicting versions are included, which could also c
I don't know how gradle works but looking at `mvn dependency:tree` gives me
the following
[INFO] org.geotools:gt-api:jar:32-SNAPSHOT
[INFO] +- commons-pool:commons-pool:jar:1.5.4:compile
[INFO] +- systems.uom:systems-common:jar:2.1:compile
[INFO] | +- javax.measure:unit-api:jar:2.1.3:compile
[INF