starter cannot be used with maven
Closed this issue · 2 comments
zeitlinger commented
The starter can't be used with maven, because the jar file is published with "plain" modifer, which maven doesn't understand (works fine for gradle).
petersj-ess commented
I managed to fix this by using a classifier
<dependency>
<groupId>com.grafana</groupId>
<artifactId>grafana-opentelemetry-starter</artifactId>
<version>1.0.1</version>
<classifier>plain</classifier>
</dependency>
zeitlinger commented
Fixed in 1.1.0