-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
28 lines (24 loc) · 1.37 KB
/
build.sbt
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
val scala3Version = "3.3.1"
lazy val root = project
.in(file("."))
.enablePlugins(JavaAppPackaging)
.settings(
name := "csc",
version := "0.1.0-SNAPSHOT",
scalaVersion := scala3Version,
// Compile / mainClass := Some("org.nextprot.parser.cellosaurus.DoublingTimeStateAutomaton"),
// Compile / mainClass := Some("org.nextprot.parser.cellosaurus.SimpleParserPlayground"),
// Compile / mainClass := Some("org.nextprot.parser.cellosaurus.SourceChecker"),
// Compile / mainClass := Some("org.nextprot.parser.cellosaurus.SpeciesChecker"),
// Compile / mainClass := Some("org.nextprot.parser.cellosaurus.Utf8Checker"),
// Compile / mainClass := Some("org.nextprot.parser.cellosaurus.PublicationBuilder"),
// Compile / mainClass := Some("org.nextprot.parser.cellosaurus.GeneticIntegrationParser"),
// Compile / mainClass := Some("org.nextprot.parser.cellosaurus.BreedParser"),
// Compile / mainClass := Some("org.nextprot.parser.cellosaurus.SiteMapping"),
// Compile / mainClass := Some("org.nextprot.parser.cellosaurus.DerivedFromSiteParser"),
Compile / mainClass := Some("org.nextprot.parser.cellosaurus.CelloParser"),
scalacOptions ++= Seq("-deprecation", "-explain"),
exportJars := true,
libraryDependencies += "org.scalameta" %% "munit" % "0.7.29" % Test,
libraryDependencies += "org.scala-lang.modules" % "scala-xml_3" % "2.2.0"
)