Skip to content

Commit

Permalink
Better UX, project and build.sbt generation (#79)
Browse files Browse the repository at this point in the history
  • Loading branch information
boseabhishek authored Nov 24, 2023
1 parent 8c2b51c commit 535ffda
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main/g8/build.sbt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
lazy val root = (project in file(".")).
settings(
inThisBuild(List(
organization := "com.example",
scalaVersion := "2.13.6"
organization := "$package$",
scalaVersion := "$scala-version$"
)),
name := "scalatest-example"
name := "$name;format="norm"$"
)

libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.9" % Test
libraryDependencies += "org.scalatest" %% "scalatest" % "$scalatest-version$" % Test
3 changes: 3 additions & 0 deletions src/main/g8/default.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
name=My Something Project
description=Say something about this template.
package=com.example
scala-version=2.13.12
scalatest-version=3.2.17

0 comments on commit 535ffda

Please sign in to comment.