-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
34 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/bin/sh -e | ||
|
||
sbt +clean \ | ||
+test \ | ||
+publishLocal |
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,5 @@ | ||
#!/bin/sh -e | ||
|
||
sbt +clean +test \ | ||
+publishSigned \ | ||
sonatypeBundleRelease |
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,24 @@ | ||
import sbt.url | ||
import xerial.sbt.Sonatype.GitHubHosting | ||
|
||
sonatypeProfileName in ThisBuild := "ky.korins" | ||
publishMavenStyle in ThisBuild := true | ||
sonatypeProjectHosting in ThisBuild := Some( | ||
GitHubHosting("catap", "scala-sha", "[email protected]") | ||
) | ||
licenses in ThisBuild := LicenseDefinition.licenses | ||
homepage in ThisBuild := Some(url("https://github.com/catap/scala-sha")) | ||
scmInfo in ThisBuild := Some( | ||
ScmInfo( | ||
url("https://github.com/catap/scala-sha"), | ||
"scm:[email protected]:catap/scala-sha.git" | ||
) | ||
) | ||
developers in ThisBuild := List( | ||
Developer( | ||
id = "catap", | ||
name = "Kirill A. Korinsky", | ||
email = "[email protected]", | ||
url = url("https://github.com/catap") | ||
) | ||
) |