summaryrefslogblamecommitdiff
path: root/docs/example-2/build.sc
blob: 9457b51aaf57bbc09b03d847a37f3987d44a80dc (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                                               
                                








                                                                   
// build.sc
import mill._, scalalib._, publish._

object foo extends PublishModule{
  def scalaVersion = "2.12.4"
  def publishVersion = "0.0.1"

  def pomSettings = PomSettings(
    description = "Hello",
    organization = "com.lihaoyi",
    url = "https://github.com/lihaoyi/example",
    licenses = Seq(License.MIT),
    scm = SCM(
      "git://github.com/lihaoyi/example.git",
      "scm:git://github.com/lihaoyi/example.git"
    ),
    developers = Seq(
      Developer("lihaoyi", "Li Haoyi","https://github.com/lihaoyi")
    )
  )
}