-
Notifications
You must be signed in to change notification settings - Fork 123
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 #30 from eed3si9n/wip/bumpsbt
Scala 2.12.8 + ThisBuild slash syntax
- Loading branch information
Showing
1 changed file
with
9 additions
and
7 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,14 @@ | ||
import Dependencies._ | ||
|
||
lazy val root = (project in file(".")). | ||
settings( | ||
inThisBuild(List( | ||
organization := "com.example", | ||
scalaVersion := "2.12.7", | ||
version := "0.1.0-SNAPSHOT" | ||
)), | ||
ThisBuild / scalaVersion := "2.12.8" | ||
ThisBuild / version := "0.1.0-SNAPSHOT" | ||
ThisBuild / organization := "com.example" | ||
ThisBuild / organizationName := "example" | ||
|
||
lazy val root = (project in file(".")) | ||
.settings( | ||
name := "$name$", | ||
libraryDependencies += scalaTest % Test | ||
) | ||
|
||
// See https://www.scala-sbt.org/1.x/docs/Using-Sonatype.html for instructions on how to publish to Sonatype. |