github.com/treeverse/lakefs@v1.24.1-0.20240520134607-95648127bfb0/clients/spark/publish.sbt (about) 1 val nexus = "https://s01.oss.sonatype.org/" 2 publishTo := { 3 if (isSnapshot.value) Some("snapshots" at nexus + "content/repositories/snapshots") 4 else Some("releases" at nexus + "service/local/staging/deploy/maven2") 5 } 6 // Remove all additional repository other than Maven Central from POM 7 pomIncludeRepository := { _ => false } 8 credentials ++= Seq( 9 Credentials(Path.userHome / ".sbt" / "credentials"), 10 Credentials(Path.userHome / ".sbt" / "sonatype_credentials") 11 ) 12 13 ThisBuild / scmInfo := Some( 14 ScmInfo( 15 url("https://github.com/treeverse/lakeFS"), 16 "scm:git@github.com:treeverse/lakeFS.git" 17 ) 18 ) 19 ThisBuild / developers := List( 20 Developer( 21 id = "ariels", 22 name = "Ariel Shaqed (Scolnicov)", 23 email = "ariels@treeverse.io", 24 url = url("https://github.com/arielshaqed") 25 ), 26 Developer( 27 id = "baraktr", 28 name = "B. A.", 29 email = "barak.amar@treeverse.io", 30 url = url("https://github.com/nopcoder") 31 ), 32 Developer( 33 id = "ozkatz", 34 name = "Oz Katz", 35 email = "oz.katz@treeverse.io", 36 url = url("https://github.com/ozkatz") 37 ), 38 Developer( 39 id = "johnnyaug", 40 name = "J. A.", 41 email = "yoni.augarten@treeverse.io", 42 url = url("https://github.com/johnnyaug") 43 ), 44 Developer( 45 id = "itai.admi", 46 name = "Itai Admi", 47 email = "itai.admi@treeverse.io", 48 url = url("https://github.com/itaiad200") 49 ), 50 Developer( 51 id = "niro", 52 name = "Nir Ozery", 53 email = "nir.ozery@treeverse.io", 54 url = url("https://github.com/N-o-Z") 55 ) 56 )