-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
24 lines (19 loc) · 790 Bytes
/
build.sbt
File metadata and controls
24 lines (19 loc) · 790 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
name := "ergoline"
organization := "edu.illinois.cs.ergoline"
version := "0.1"
scalaVersion := "2.13.6"
scalacOptions += "-feature"
scalacOptions += "-deprecation"
libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.9" % "test"
libraryDependencies += "com.lihaoyi" %% "os-lib" % "0.7.8"
libraryDependencies += "com.lihaoyi" %% "fastparse" % "2.2.2"
Global / concurrentRestrictions += Tags.limit(Tags.Test, 1)
Test / testOptions += Tests.Argument("-oD")
enablePlugins(Antlr4Plugin)
Antlr4 / antlr4PackageName := Some("edu.illinois.cs.ergoline")
Antlr4 / antlr4GenListener := false
Antlr4 / antlr4GenVisitor := true
// specify the name of the resulting jar
assembly / assemblyOutputPath := baseDirectory.value / "ergc.jar"
// skip the test during assembly
assembly / test := {}