-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
29 lines (24 loc) · 877 Bytes
/
build.sbt
File metadata and controls
29 lines (24 loc) · 877 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
//updateOptions := updateOptions.value.withLatestSnapshots(true)
ThisBuild / scalaVersion := "3.1.3"
ThisBuild / version := "0.1.1-SNAPSHOT"
ThisBuild / organization := "it.unich.scalafixexamples"
ThisBuild / organizationName := "it.unich"
ThisBuild / resolvers ++= Resolver.sonatypeOssRepos("releases")
ThisBuild / resolvers ++= Resolver.sonatypeOssRepos("snapshots")
ThisBuild / resolvers ++= Seq(Resolver.mavenLocal)
ThisBuild / scalacOptions ++= Seq(
"-deprecation",
"-feature",
"-unchecked",
"-Xfatal-warnings",
"-language:adhocExtensions",
"-source", "future"
)
ThisBuild / fork := true
lazy val root = (project in file("."))
.settings(
name := "ScalaFixExamples",
libraryDependencies += "it.unich.scalafix" %% "scalafix" % "0.10.0",
libraryDependencies += "it.unich.jppl" % "jppl" % "0.4",
)
.enablePlugins(JmhPlugin)