aboutsummaryrefslogblamecommitdiff
path: root/publish.sbt
blob: 12101e0436f7c9dba6be61971b165bb40b47686b (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11




                                                                           
                               




                                   
                             




                                                 
                                






                                    







                                                                                            
organization in ThisBuild := "io.crashbox"
licenses in ThisBuild := Seq(
  ("Apache 2.0", url("https://www.apache.org/licenses/LICENSE-2.0")))
homepage in ThisBuild := Some(url("https://github.com/jodersky/yamlesque"))
publishMavenStyle in ThisBuild := true
publishTo in ThisBuild := Some(
  if (isSnapshot.value)
    Opts.resolver.sonatypeSnapshots
  else
    Opts.resolver.sonatypeStaging
)
scmInfo in ThisBuild := Some(
  ScmInfo(
    url("https://github.com/jodersky/yamlesque"),
    "scm:git@github.com:jodersky/yamlesque.git"
  )
)
developers in ThisBuild := List(
  Developer(
    id = "jodersky",
    name = "Jakob Odersky",
    email = "jakob@odersky.com",
    url = url("https://crashbox.io")
  )
)

// settings for root project
publishArtifact := false
publish := {}
publishLocal := {}
// make sbt-pgp happy
publishTo := Some(Resolver.file("Unused transient repository", target.value / "unusedrepo"))
skip in publish := true