-
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 #6 from algorithmiaio/maven
Add sonatype CI
- Loading branch information
Showing
3 changed files
with
17 additions
and
21 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,20 @@ | ||
|
||
inThisBuild(List( | ||
organization := "com.algorithmia", | ||
homepage := Some(url("https://github.com/algorithmiaio/plugin-sdk")), | ||
licenses := List("MIT" -> url("https://github.com/algorithmiaio/plugin-sdk/blob/master/LICENSE")), | ||
developers := List( | ||
Developer( | ||
"jbooth", | ||
"Joshua Booth", | ||
"[email protected]", | ||
url("https://algorithmia.com") | ||
) | ||
) | ||
)) | ||
name := "plugin-sdk" | ||
|
||
organization := "com.algorithmia" | ||
|
||
description := "Algorithmia plugin SDK" | ||
|
||
publishMavenStyle := true | ||
publishTo := Some("Algorithmia Maven" at "s3://s3-us-west-2.amazonaws.com/algorithmia-maven/repo") | ||
|
||
// Do not append Scala versions to generated artifacts | ||
crossPaths := false | ||
|
||
// Forbid including Scala related libraries | ||
autoScalaLibrary := false | ||
|
||
// version artifacts using Git | ||
enablePlugins(GitVersioning) |
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,4 @@ | ||
addSbtPlugin("com.frugalmechanic" % "fm-sbt-s3-resolver" % "[0.11.0,1)") | ||
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.15.0") | ||
addSbtPlugin("com.typesafe.sbt" % "sbt-git" % "1.0.0") | ||
addSbtPlugin("com.geirsson" % "sbt-ci-release" % "1.5.7") |