-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from marko-asplund/update-org-info
fork project and update publish info; update sbt-pgp plugin
- Loading branch information
Showing
7 changed files
with
57 additions
and
36 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 |
---|---|---|
@@ -1,5 +1,6 @@ | ||
.idea | ||
.bsp | ||
project/project | ||
project/target | ||
target | ||
release.sh | ||
release.sh |
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 |
---|---|---|
@@ -1,3 +1,9 @@ | ||
|
||
0.2.7 | ||
======= | ||
* fork project and update publish info | ||
* update sbt-pgp plugin | ||
|
||
0.2.6 | ||
======= | ||
* scala 2.13 support | ||
|
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
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,40 @@ | ||
organization := "io.github.marko-asplund" | ||
organizationName := "marko-asplund" | ||
organizationHomepage := Some(url("https://github.com/marko-asplund/")) | ||
|
||
ThisBuild / scmInfo := Some( | ||
ScmInfo( | ||
url("https://github.com/marko-asplund/s3mock"), | ||
"scm:git:[email protected]:marko-asplund/s3mock.git" | ||
) | ||
) | ||
ThisBuild / developers := List( | ||
Developer( | ||
id = "romangrebennikov", | ||
name = "Roman Grebennikov", | ||
email = "your@email", | ||
url = url("http://www.dfdx.me") | ||
), | ||
Developer( | ||
id = "marko-asplund", | ||
name = "Marko Asplund", | ||
email = "your@email", | ||
url = url("https://github.com/marko-asplund") | ||
) | ||
) | ||
|
||
ThisBuild / description := "Embedded S3 server for easy mocking" | ||
ThisBuild / licenses := List( | ||
"MIT" -> url("https://opensource.org/licenses/MIT") | ||
) | ||
ThisBuild / homepage := Some(url("https://github.com/marko-asplund/s3mock")) | ||
|
||
// Remove all additional repository other than Maven Central from POM | ||
ThisBuild / pomIncludeRepository := { _ => false } | ||
ThisBuild / publishTo := { | ||
// For accounts created after Feb 2021: | ||
val nexus = "https://s01.oss.sonatype.org/" | ||
if (isSnapshot.value) Some("snapshots" at nexus + "content/repositories/snapshots") | ||
else Some("releases" at nexus + "service/local/staging/deploy/maven2") | ||
} | ||
ThisBuild / publishMavenStyle := true |