Play Framework 2.0 - How to exclude packages from dependencies
2 minuti di lettura
In Build.scala change your classic dependence
in
and add the packages to exclude like
Bye, marco
"xxxx" % "xxxxxxx" % "X.X"
in
("xxxx" % "xxxxxxx" % "X.X" notTransitive())
and add the packages to exclude like
("xxxx" % "xxxxxxx" % "X.X" notTransitive()).exclude("com.google.guava", "guava").exclude("javassist", "javassist")
Bye, marco
Dalla stessa categoria
Play Framework: add a custom Scalar Type in Ebean
2 minuti di lettura