From df7564a9c9bcfc41bd500aaa2bc46ba5d49465e3 Mon Sep 17 00:00:00 2001 From: Alexandre Archambault Date: Tue, 16 Feb 2016 16:09:54 +0100 Subject: [PATCH] Temporarily add Sonatype snapshots repository to plugin module For 2.10 artifacts of the other modules to be found by the coursier SBT plugin - it can't else because of its to-naive inter-project resolver --- build.sbt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 7c3e032e9..ec33d9a9b 100644 --- a/build.sbt +++ b/build.sbt @@ -319,7 +319,10 @@ lazy val plugin = project name := "coursier-sbt-plugin", sbtPlugin := { scalaVersion.value.startsWith("2.10.") - } + }, + // added so that 2.10 artifacts of the other modules can be found by + // the too-naive-for-now inter-project resolver of the coursier SBT plugin + resolvers += Resolver.sonatypeRepo("snapshots") ) lazy val `coursier` = project.in(file("."))