mirror of https://github.com/sbt/sbt.git
Add missing language.higherKinds imports
This commit is contained in:
parent
6f577fff0b
commit
7194fe7b48
|
|
@ -1,6 +1,6 @@
|
||||||
package coursier
|
package coursier
|
||||||
|
|
||||||
import coursier.maven.MavenSource
|
import scala.language.higherKinds
|
||||||
|
|
||||||
import scalaz._
|
import scalaz._
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3,6 +3,7 @@ package core
|
||||||
|
|
||||||
import scalaz._
|
import scalaz._
|
||||||
import scala.annotation.tailrec
|
import scala.annotation.tailrec
|
||||||
|
import scala.language.higherKinds
|
||||||
|
|
||||||
|
|
||||||
sealed abstract class ResolutionProcess {
|
sealed abstract class ResolutionProcess {
|
||||||
|
|
|
||||||
|
|
@ -3,6 +3,8 @@ package coursier.ivy
|
||||||
import coursier.Fetch
|
import coursier.Fetch
|
||||||
import coursier.core._
|
import coursier.core._
|
||||||
|
|
||||||
|
import scala.language.higherKinds
|
||||||
|
|
||||||
import scalaz._
|
import scalaz._
|
||||||
import scalaz.Scalaz._
|
import scalaz.Scalaz._
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3,6 +3,8 @@ package coursier
|
||||||
import java.io.{ File, FileNotFoundException, IOException }
|
import java.io.{ File, FileNotFoundException, IOException }
|
||||||
import java.net.{ HttpURLConnection, URL, URLConnection }
|
import java.net.{ HttpURLConnection, URL, URLConnection }
|
||||||
|
|
||||||
|
import scala.language.higherKinds
|
||||||
|
|
||||||
import scalaz.{ EitherT, Monad }
|
import scalaz.{ EitherT, Monad }
|
||||||
|
|
||||||
object FallbackDependenciesRepository {
|
object FallbackDependenciesRepository {
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,7 @@
|
||||||
package coursier
|
package coursier
|
||||||
|
|
||||||
|
import scala.language.higherKinds
|
||||||
|
|
||||||
import scalaz.{ -\/, \/-, Monad, EitherT }
|
import scalaz.{ -\/, \/-, Monad, EitherT }
|
||||||
|
|
||||||
case class InterProjectRepository(projects: Seq[Project]) extends Repository {
|
case class InterProjectRepository(projects: Seq[Project]) extends Repository {
|
||||||
|
|
|
||||||
|
|
@ -3,6 +3,8 @@ package test
|
||||||
|
|
||||||
import coursier.core._
|
import coursier.core._
|
||||||
|
|
||||||
|
import scala.language.higherKinds
|
||||||
|
|
||||||
import scalaz.{ Monad, EitherT }
|
import scalaz.{ Monad, EitherT }
|
||||||
import scalaz.Scalaz._
|
import scalaz.Scalaz._
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue