-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: add deployment configuration with sonatype * chore: add all publishing info * doc: update README with installation instructions * style: format file * doc: update deployment section * chore: add felix email * doc: update readme * fix: use good Thomas Bony information * doc: add team proton to contributors Co-authored-by: Quentin Nambot <[email protected]> Co-authored-by: Félix MARSAULT <[email protected]>
- Loading branch information
1 parent
c82708e
commit 99d2dd8
Showing
3 changed files
with
85 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
ThisBuild / organizationName := "bedrockstreaming" | ||
ThisBuild / organizationHomepage := Some(url("https://github.com/BedrockStreaming/")) | ||
|
||
ThisBuild / scmInfo := Some( | ||
ScmInfo(url("https://github.com/BedrockStreaming/sparktest"), "scm:[email protected]:BedrockStreaming/sparktest.git") | ||
) | ||
|
||
ThisBuild / developers := List( | ||
Developer(id = "tbony", name = "Thomas BONY", email = "[email protected]", url = url("https://github.com/tbony")), | ||
Developer( | ||
id = "fmarsault", | ||
name = "Félix MARSAULT", | ||
email = "[email protected]", | ||
url = url("https://github.com/fmarsault") | ||
), | ||
Developer( | ||
id = "rinzool", | ||
name = "Quentin NAMBOT", | ||
email = "[email protected]", | ||
url = url("https://github.com/rinzool") | ||
) | ||
) | ||
|
||
ThisBuild / description := "A testing tool for Scala and Spark developers ." | ||
|
||
ThisBuild / licenses := List( | ||
"MIT License" -> new URL("https://github.com/BedrockStreaming/sparktest/blob/main/LICENSE") | ||
) | ||
ThisBuild / homepage := Some(url("https://github.com/BedrockStreaming/sparktest/")) | ||
|
||
ThisBuild / pomIncludeRepository := { _ => false } | ||
|
||
ThisBuild / publishTo := { | ||
val nexus = "https://s01.oss.sonatype.org/" | ||
if (isSnapshot.value) Some("snapshots".at(nexus + "content/repositories/snapshots")) | ||
else Some("releases".at(nexus + "content/repositories/releases/")) | ||
} | ||
ThisBuild / publishMavenStyle := true |