Created
September 3, 2014 01:49
-
-
Save uarun/97e85366ae454fa078f4 to your computer and use it in GitHub Desktop.
Revisions
-
uarun created this gist
Sep 3, 2014 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,16 @@ allprojects { project -> configurations.all { resolutionStrategy { //... Fail eagerly on version conflict (includes transitive dependencies) //... For e.g. multiple different versions of the same dependency (group and name are equal) failOnVersionConflict() //... Force certain versions of dependencies (including transitive) force libraries.scala_library force libraries.slf4j_api force libraries.commons_logging force libraries.commons_lang } } }