Skip to content

Commit

Permalink
Bump build system
Browse files Browse the repository at this point in the history
  • Loading branch information
jerryz123 committed May 5, 2021
1 parent 59b0f0f commit 7168fec
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 31 deletions.
26 changes: 26 additions & 0 deletions build.sbt
@@ -0,0 +1,26 @@
lazy val commonSettings = Seq(
organization := "edu.berkeley.cs",
version := "1.1",
scalaVersion := "2.11.12",
libraryDependencies ++= Seq("com.github.scopt" %% "scopt" % "3.3.0"),
libraryDependencies ++= Seq("com.github.scala-incubator.io" %% "scala-io-core" % "0.4.3"),
libraryDependencies ++= Seq("com.github.scala-incubator.io" %% "scala-io-file" % "0.4.3")
)

lazy val torture = (project in file("."))
.settings(commonSettings)
.dependsOn(generator, testrun, overnight, fileop)

lazy val generator = (project in file("generator"))
.settings(commonSettings)

lazy val testrun = (project in file("testrun"))
.settings(commonSettings)
.dependsOn(generator)

lazy val overnight = (project in file("overnight"))
.settings(commonSettings)
.dependsOn(testrun, fileop)

lazy val fileop = (project in file("fileop"))
.settings(commonSettings)
2 changes: 1 addition & 1 deletion project/build.properties
@@ -1 +1 @@
sbt.version=0.13.8
sbt.version=1.4.4
30 changes: 0 additions & 30 deletions project/build.scala

This file was deleted.

Binary file modified sbt-launch.jar
Binary file not shown.

0 comments on commit 7168fec

Please sign in to comment.