-
Notifications
You must be signed in to change notification settings - Fork 344
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1229 from eed3si9n/wip/by-example
Port the sbt by example to mdbook
- Loading branch information
Showing
11 changed files
with
97 additions
and
99 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,7 @@ | ||
ThisBuild / scalaVersion := "2.13.12" | ||
ThisBuild / organization := "com.example" | ||
|
||
lazy val hello = project | ||
.in(file(".")) | ||
.settings( | ||
name := "Hello", | ||
libraryDependencies ++= Seq( | ||
"org.scala-lang" %% "toolkit" % "0.1.7", | ||
"org.scala-lang" %% "toolkit-test" % "0.1.7" % Test | ||
) | ||
) | ||
scalaVersion := "3.3.3" | ||
organization := "com.example" | ||
name := "Hello" | ||
libraryDependencies ++= Seq( | ||
"org.scala-lang" %% "toolkit" % "0.1.7", | ||
"org.scala-lang" %% "toolkit-test" % "0.1.7" % Test, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,3 @@ | ||
ThisBuild / scalaVersion := "2.13.12" | ||
ThisBuild / organization := "com.example" | ||
|
||
lazy val hello = (project in file(".")) | ||
.settings( | ||
name := "Hello" | ||
) | ||
scalaVersion := "3.3.3" | ||
organization := "com.example" | ||
name := "Hello" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.