Skip to content
This repository has been archived by the owner on Aug 13, 2024. It is now read-only.

Commit

Permalink
Use https version of Sonatype OSS Snapshots (closes #23)
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeindykiewicz authored and chuwy committed Mar 10, 2021
1 parent f50e16f commit 1079402
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
3 changes: 2 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,15 @@ lazy val root = project.in(file("."))
.settings(
resolvers ++= Seq(
"Snowplow bintray" at "https://snowplow.bintray.com/snowplow-maven",
"Sonatype OSS Snapshots" at "http://oss.sonatype.org/content/repositories/snapshots/"
"Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots/"
),
libraryDependencies ++= Seq(
Dependencies.igluClient,
Dependencies.circeLiteral,
Dependencies.schemaDdl,
Dependencies.scalaCheck,
Dependencies.scalaCheckCats,
Dependencies.logger,
Dependencies.validator,
Dependencies.specs2,
Dependencies.specs2ScalaCheck
Expand Down
12 changes: 7 additions & 5 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,9 @@ object Dependencies {
val scalaCheck = "1.15.3"
val scalaCheckCats = "0.3.0"
// Scala (test only)
val validator = "1.6"
val specs2 = "4.10.6"
val slf4j = "1.7.30"
val validator = "1.6"
val specs2 = "4.10.6"
}

// Scala
Expand All @@ -33,7 +34,8 @@ object Dependencies {
val scalaCheck = "org.scalacheck" %% "scalacheck" % V.scalaCheck
val scalaCheckCats = "io.chrisdavenport" %% "cats-scalacheck" % V.scalaCheckCats
// Scala (test only)
val validator = "commons-validator" % "commons-validator" % V.validator % "test"
val specs2 = "org.specs2" %% "specs2-core" % V.specs2 % "test"
val specs2ScalaCheck = "org.specs2" %% "specs2-scalacheck" % V.specs2 % "test"
val logger = "org.slf4j" % "slf4j-simple" % V.slf4j % Test
val validator = "commons-validator" % "commons-validator" % V.validator % Test
val specs2 = "org.specs2" %% "specs2-core" % V.specs2 % Test
val specs2ScalaCheck = "org.specs2" %% "specs2-scalacheck" % V.specs2 % Test
}

0 comments on commit 1079402

Please sign in to comment.