Skip to content

Commit

Permalink
Merge pull request #30 from eed3si9n/wip/bumpsbt
Browse files Browse the repository at this point in the history
Scala 2.12.8 + ThisBuild slash syntax
  • Loading branch information
SethTisue authored Jan 17, 2019
2 parents c937b08 + 23f510c commit 59b2ed6
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions src/main/g8/build.sbt
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.

0 comments on commit 59b2ed6

Please sign in to comment.