summaryrefslogtreecommitdiff
path: root/integration/src/test/resources/acyclic
diff options
context:
space:
mode:
authorLi Haoyi <haoyi.sg@gmail.com>2018-01-20 03:49:17 -0800
committerLi Haoyi <haoyi.sg@gmail.com>2018-01-20 03:49:17 -0800
commitd14f56a3fd881f809e58783c49866d1491a5f3fe (patch)
tree4a9f93d3d7f69211aa444ce15837fe6e79b9db7f /integration/src/test/resources/acyclic
parentaebd7a144fab5bdb95f6ee4f4bc170be65cd0549 (diff)
downloadmill-d14f56a3fd881f809e58783c49866d1491a5f3fe.tar.gz
mill-d14f56a3fd881f809e58783c49866d1491a5f3fe.tar.bz2
mill-d14f56a3fd881f809e58783c49866d1491a5f3fe.zip
Swap over to simplified Mill module/source layout from SBT's
Removes a lot of useless folders and gives us a chance to exercise this simplified layout. Support for the SBT layout is still verified by our integration tests
Diffstat (limited to 'integration/src/test/resources/acyclic')
-rw-r--r--integration/src/test/resources/acyclic/build.sc37
1 files changed, 0 insertions, 37 deletions
diff --git a/integration/src/test/resources/acyclic/build.sc b/integration/src/test/resources/acyclic/build.sc
deleted file mode 100644
index b8f878ad..00000000
--- a/integration/src/test/resources/acyclic/build.sc
+++ /dev/null
@@ -1,37 +0,0 @@
-import mill.Cross
-import mill.scalalib.{SbtModule, PublishModule, Dep, CrossSbtModule, DepSyntax}
-import mill.scalalib.publish.{PomSettings, License, Developer, SCM}
-
-object acyclic extends Cross[AcyclicModule]("2.10.6", "2.11.8", "2.12.3", "2.12.4")
-class AcyclicModule(val crossScalaVersion: String) extends CrossSbtModule 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 ivyDeps = Agg(
- ivy"org.scala-lang:scala-compiler:${scalaVersion()}"
- )
- object test extends Tests{
- def forkWorkingDir = ammonite.ops.pwd / 'target / 'workspace / 'acyclic
- def ivyDeps = Agg(
- ivy"com.lihaoyi::utest:0.6.0"
- )
- def testFramework = "utest.runner.Framework"
- }
-} \ No newline at end of file