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


                                    
                                                   






                                               
                                
                                                                 



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

object foo extends ScalaModule with 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")
    )
  )
}