summaryrefslogtreecommitdiff
path: root/integration/src/test/resource/acyclic/build.sc
diff options
context:
space:
mode:
authorLi Haoyi <haoyi.sg@gmail.com>2018-01-07 00:31:34 -0800
committerLi Haoyi <haoyi.sg@gmail.com>2018-01-07 00:31:34 -0800
commit259b57dd34fc6762835dde236ba4e459dec32103 (patch)
treedb6e6b7bb5d602e19171c039f600a3cf2fd02d7e /integration/src/test/resource/acyclic/build.sc
parent7cd18fd936b95410274be031a8231e5a3d9866a4 (diff)
downloadmill-259b57dd34fc6762835dde236ba4e459dec32103.tar.gz
mill-259b57dd34fc6762835dde236ba4e459dec32103.tar.bz2
mill-259b57dd34fc6762835dde236ba4e459dec32103.zip
Rename `resource/` folders `resources/` to properly match SBT convention, making changes within them get picked up by the file-watching `~compile`/`~test` commands
Diffstat (limited to 'integration/src/test/resource/acyclic/build.sc')
-rw-r--r--integration/src/test/resource/acyclic/build.sc39
1 files changed, 0 insertions, 39 deletions
diff --git a/integration/src/test/resource/acyclic/build.sc b/integration/src/test/resource/acyclic/build.sc
deleted file mode 100644
index f1381c7e..00000000
--- a/integration/src/test/resource/acyclic/build.sc
+++ /dev/null
@@ -1,39 +0,0 @@
-import mill.define.Cross
-import mill.CrossModule
-import mill.scalalib.{SbtModule, PublishModule, Dep}
-import mill.scalalib.publish.{PomSettings, License, Developer, SCM}
-
-object acyclic extends CrossModule(AcyclicModule, "2.10.6", "2.11.8", "2.12.3", "2.12.4")
-case class AcyclicModule(crossVersion: String) extends SbtModule with PublishModule {
- def basePath = super.basePath / ammonite.ops.up
- def artifactName = "acyclic"
- def publishVersion = "0.1.7"
-
- def pomSettings = PomSettings(
- description = artifactName(),
- organization = "com.lihaoyi",
- url = "https://github.com/lihaoyi/acyclic",
- licenses = Seq(
- License("MIT license", "http://www.opensource.org/licenses/mit-license.php")
- ),
- scm = SCM(
- "git://github.com/lihaoyi/acyclic.git",
- "scm:git://github.com/lihaoyi/acyclic.git"
- ),
- developers = Seq(
- Developer("lihaoyi", "Li Haoyi","https://github.com/lihaoyi")
- )
- )
-
- def scalaVersion = crossVersion
- def ivyDeps = Seq(
- Dep.Java("org.scala-lang", "scala-compiler", scalaVersion())
- )
- object test extends Tests{
- def forkWorkingDir = ammonite.ops.pwd / 'target / 'workspace / 'acyclic
- def ivyDeps = Seq(
- Dep("com.lihaoyi", "utest", "0.6.0")
- )
- def testFramework = "utest.runner.Framework"
- }
-} \ No newline at end of file