I know that I can install a dependency like this libraryDependencies ++= Seq( javaJdbc , cache , javaWs, "com.amazonaws" % "aws-java-sdk" % "1.11.38" )
but the problem with this approach is that it will install all the unnecessary dependencies. I just want to install one specific dependency as mentioned in the docs using the BOM way. How can i do that in play framework?