Skip to content

Commit

Permalink
Reproduce scala/scala3#14691
Browse files Browse the repository at this point in the history
  • Loading branch information
mkurz committed Jul 10, 2024
0 parents commit 26d06c6
Show file tree
Hide file tree
Showing 5 changed files with 44 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# macOS
.DS_Store

# sbt specific
dist/*
target/
lib_managed/
src_managed/
project/boot/
project/plugins/project/
project/local-plugins.sbt
.history
.ensime
.ensime_cache/
.sbt-scripted/
local.sbt

# Bloop
.bsp

# VS Code
.vscode/

# Metals
.bloop/
.metals/
metals.sbt

# IDEA
.idea
.idea_modules
/.worksheet/
9 changes: 9 additions & 0 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
lazy val root = project
.enablePlugins(SbtTwirl)
.in(file("."))
.settings(
name := "Scala 3 Project Template",
version := "0.1.0-SNAPSHOT",
scalaVersion := "3.3.3",
crossScalaVersions := Seq("2.13.14", "3.3.3"),
)
1 change: 1 addition & 0 deletions project/build.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
sbt.version=1.10.0
1 change: 1 addition & 0 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
addSbtPlugin("org.playframework.twirl" % "sbt-twirl" % "2.0.7")
1 change: 1 addition & 0 deletions src/main/twirl/error.scala.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<h1>Hello @world</h1>

0 comments on commit 26d06c6

Please sign in to comment.