Skip to content

Commit 1dea467

Browse files
committed
Update to the latest versions
1 parent 3a3e5dd commit 1dea467

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name := "sbt-paradox-apidoc"
77

88
addSbtPlugin(Library.sbtParadox)
99
libraryDependencies ++= Seq(
10-
Library.fastClassPathScanner,
10+
Library.classgraph,
1111
Library.jtidy % Test,
1212
Library.scalatest % Test
1313
)

project/Dependencies.scala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
import sbt._
22

33
object Version {
4-
val fastClassPathScanner = "2.21"
4+
val classgraph = "4.4.2"
55
val jtidy = "r938"
66
val sbtParadox = "0.4.3"
7-
val scalatest = "3.0.3"
7+
val scalatest = "3.0.5"
88
}
99

1010
object Library {
11-
val fastClassPathScanner = "io.github.lukehutch" % "fast-classpath-scanner" % Version.fastClassPathScanner
11+
val classgraph = "io.github.classgraph" % "classgraph" % Version.classgraph
1212
val jtidy = "net.sf.jtidy" % "jtidy" % Version.jtidy
1313
val sbtParadox = "com.lightbend.paradox" % "sbt-paradox" % Version.sbtParadox
1414
val scalatest = "org.scalatest" %% "scalatest" % Version.scalatest

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.2.4
1+
sbt.version=1.2.6

0 commit comments

Comments
 (0)