summaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
authorLi Haoyi <haoyi.sg@gmail.com>2017-11-10 20:52:57 -0800
committerLi Haoyi <haoyi.sg@gmail.com>2017-11-10 20:52:57 -0800
commit337508c82cbe598b8796fc532cd92e8230b099cb (patch)
tree8e1732b4978a7d9e40dc545bb1dd1fdc8acdf2e9 /build.sbt
parent79bfb324a231bb3f46a180039b6d68ca042f181b (diff)
downloadmill-337508c82cbe598b8796fc532cd92e8230b099cb.tar.gz
mill-337508c82cbe598b8796fc532cd92e8230b099cb.tar.bz2
mill-337508c82cbe598b8796fc532cd92e8230b099cb.zip
rename forge -> mill
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt6
1 files changed, 3 insertions, 3 deletions
diff --git a/build.sbt b/build.sbt
index c0f04fb2..f8c85428 100644
--- a/build.sbt
+++ b/build.sbt
@@ -3,7 +3,7 @@ val sharedSettings = Seq(
organization := "com.lihaoyi",
libraryDependencies += "com.lihaoyi" %% "utest" % "0.6.0" % "test",
- testFrameworks += new TestFramework("forge.UTestFramework"),
+ testFrameworks += new TestFramework("mill.UTestFramework"),
parallelExecution in Test := false,
test in assembly := {},
@@ -32,7 +32,7 @@ val sharedSettings = Seq(
lazy val core = project
.settings(
sharedSettings,
- name := "forge-core",
+ name := "mill-core",
libraryDependencies ++= Seq(
"org.scala-lang" % "scala-reflect" % scalaVersion.value % "provided",
"com.lihaoyi" %% "sourcecode" % "0.1.4",
@@ -47,5 +47,5 @@ lazy val scalaplugin = project
.dependsOn(core % "compile->compile;test->test")
.settings(
sharedSettings,
- name := "forge-scalaplugin"
+ name := "mill-scalaplugin"
) \ No newline at end of file