summaryrefslogblamecommitdiff
path: root/docs/example-2/build.sc
blob: e8cb27efac69b5c920df4d776bdcc8d3596e943b (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),
    versionControl = VersionControl.github("lihaoyi", "example"),
    developers = Seq(
      Developer("lihaoyi", "Li Haoyi","https://github.com/lihaoyi")
    )
  )
}