|
@@ -25,7 +25,11 @@ version := "1.0"
|
|
|
// Want to use a published library in your project?
|
|
// Want to use a published library in your project?
|
|
|
// You can define other libraries as dependencies in your build like this:
|
|
// You can define other libraries as dependencies in your build like this:
|
|
|
|
|
|
|
|
-libraryDependencies += "org.scala-lang.modules" %% "scala-parser-combinators" % "2.1.1"
|
|
|
|
|
|
|
+libraryDependencies := List(
|
|
|
|
|
+ "com.lihaoyi" %% "requests" % "0.8.0",
|
|
|
|
|
+ "com.lihaoyi" %% "upickle" % "3.1.0",
|
|
|
|
|
+ "com.lihaoyi" %% "os-lib" % "0.9.1"
|
|
|
|
|
+)
|
|
|
|
|
|
|
|
// Here, `libraryDependencies` is a set of dependencies, and by using `+=`,
|
|
// Here, `libraryDependencies` is a set of dependencies, and by using `+=`,
|
|
|
// we're adding the scala-parser-combinators dependency to the set of dependencies
|
|
// we're adding the scala-parser-combinators dependency to the set of dependencies
|