1

In Play's dependencies.yml configuration file, how can I add my local Maven repository (M2_HOME) to repositories:?

pistacchio
  • 56,889
  • 107
  • 278
  • 420

1 Answers1

2

Play 1.x uses Ivy to resolve the dependencies. So you need to configure your ivysettings.xml file to add any kind of Maven repository (including your local one).

You can see how to do that in this SO question.

Community
  • 1
  • 1
Romain Linsolas
  • 79,475
  • 49
  • 202
  • 273