Как определить зависимость maven test-jar от sbt

У меня есть следующая зависимость maven

   <dependency>
      <groupId>org.apache.hbase</groupId>
      <artifactId>hbase</artifactId>
      <version>0.90.4</version>
      <type>test-jar</type>
      <scope>test</scope>
    </dependency>

Я знаю, как указать groupId, artifactId, версию и область

 "org.apache.hbase" % "hbase" % "0.90.4" % "test"

но как указать тип (test-jar), чтобы я получил hbase-0.90.4-tests.jar из репо?

Ответ 1

"org.apache.hbase" % "hbase" % "0.90.4" % "test" classifier "tests"