I’m using the Play Framework for a little project. It has a dependency to a maven package with a classifier like this:
<dependency>
<groupId>org.example.something</groupId>
<artifactId>something-ejb</artifactId>
<version>1.0</version>
<classifier>client</classifier>
</dependency>
I want to include this client package… but I have not found a way to tell sbt that I want to have that classifier…
Normally I would add the following:
val appDependencies = Seq(
"org.example.something" % "something-ejb" % "1.0"
)
But what then? Where do I include the classifier client?
I would take a deep look into the docs which looks like this: