I am working on a twitter binding for openHAB 3 and I cannot get the twitter4j dependency to work when building with maven. I get the following errors.
“Unable to create resource for bundle mvn:org.twitter4j/twitter4j-core/4.0.7”
feature.xml
<bundle dependency="true">mvn:org.twitter4j/twitter4j-core/4.0.7</bundle>
pom.xml
<dependency>
<groupId>org.twitter4j</groupId>
<artifactId>twitter4j-core</artifactId>
<version>4.0.7</version>
<scope>compile</scope>
</dependency>
I also tried launching the code in Eclipse and I get a cannot resolve dependency error.
Thanks,
Scott Hanson