All Downloads are FREE. Search and download functionalities are using the official Maven repository.

mill.scalalib.SbtModule.scala Maven / Gradle / Ivy

There is a newer version: 0.12.0-RC2-17-07e173
Show newest version
package mill.scalalib

import mill.T

import scala.annotation.nowarn

/**
 * A [[ScalaModule]] with sbt compatible directory layout.
 */
trait SbtModule extends ScalaModule with MavenModule {

  override def sources = T.sources(
    millSourcePath / "src/main/scala",
    millSourcePath / "src/main/java"
  )

  @nowarn
  type SbtTests = SbtModuleTests
  @deprecated("Use SbtTests instead", since = "Mill 0.11.10")
  trait SbtModuleTests extends ScalaTests with MavenTests {
    override def sources = T.sources(
      millSourcePath / "src/test/scala",
      millSourcePath / "src/test/java"
    )
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy