0

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?

1 Answers1

1

You can install the aws-sdk-core and rest of the required modules individually.

libraryDependencies ++= Seq( javaJdbc ,  cache , javaWs,  
"com.amazonaws" % "aws-java-sdk-core" % "1.11.43",
"com.amazonaws" % "aws-java-sdk-s3" % "1.11.43"
)

and so on.

RP-
  • 5,827
  • 2
  • 27
  • 46