Skip to content

Commit

Permalink
Merge pull request #51 from Kevin-Lee/reorganize-dependency-libs
Browse files Browse the repository at this point in the history
Moved: Dependency info
  • Loading branch information
kevin-lee committed Jan 7, 2020
2 parents c12b3a3 + b1a8070 commit ec98120
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 17 deletions.
13 changes: 12 additions & 1 deletion build.sbt
@@ -1,4 +1,3 @@
import Dependencies._
import ProjectInfo._
import kevinlee.sbt.SbtCommon.crossVersionProps
import kevinlee.semver.{Major, Minor, SemanticVersion}
Expand All @@ -18,6 +17,18 @@ ThisBuild / scmInfo :=
, "git@github.com:Kevin-Lee/just-semver.git"
))

lazy val hedgehogVersion = "6dba7c9ba065e423000e9aa2b6981ce3d70b74cb"
lazy val hedgehogRepo =
"bintray-scala-hedgehog" at "https://dl.bintray.com/hedgehogqa/scala-hedgehog"

lazy val hedgehogLibs: Seq[ModuleID] = Seq(
"hedgehog" %% "hedgehog-core" % hedgehogVersion
, "hedgehog" %% "hedgehog-runner" % hedgehogVersion
, "hedgehog" %% "hedgehog-sbt" % hedgehogVersion
).map(_ % Test)

lazy val justFp: ModuleID = "io.kevinlee" %% "just-fp" % "1.3.4"

lazy val justSemVer = (project in file("."))
.enablePlugins(DevOopsGitReleasePlugin)
.settings(
Expand Down
16 changes: 0 additions & 16 deletions project/Dependencies.scala

This file was deleted.

0 comments on commit ec98120

Please sign in to comment.