X(Twitter) Binding Update

I am trying to update the X binding to use the V2 API and when I try to add a new dependency mvn gives an error when I try to build it. Any advise on how to fix it.

Thanks,
Scott

  <dependencies>
    <!-- https://mvnrepository.com/artifact/io.github.redouane59.twitter/twittered -->
    <dependency>
      <groupId>io.github.redouane59.twitter</groupId>
      <artifactId>twittered</artifactId>
      <version>2.23</version>
      <scope>compile</scope>
    </dependency>
  </dependencies>

Your dependency has dependencies that are missing. The last package name (com.github.scribejava) gives a hint what is missing. Add a bundle that provides this package to the POM. If you don‘t need that dependency, you can also exclude it, see bnd.importPackage property.