Skip to content

Commit

Permalink
Reflect the move from guardian to scanamo Github organisation
Browse files Browse the repository at this point in the history
  • Loading branch information
Philip Wills committed Oct 27, 2017
1 parent 67be2b3 commit 24624d1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ scala> Scanamo.exec(client)(ops)
res1: Option[Either[error.DynamoReadError, Farmer]] = Some(Right(Farmer(McDonald,156,Farm(List(sheep, cow)))))
```

For more details, please see the [Scanamo site](https://guardian.github.io/scanamo).
For more details, please see the [Scanamo site](http://www.scanamo.org).

License
-------
Expand Down
12 changes: 6 additions & 6 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ val commonSettings = Seq(
},
scalacOptions in (Compile, console) := (scalacOptions in Test).value,
autoAPIMappings := true,
apiURL := Some(url("https://guardian.github.io/scanamo/latest/api/")),
apiURL := Some(url("https://scanamo.github.io/scanamo/latest/api/")),
)

val dynamoTestSettings = Seq(
Expand Down Expand Up @@ -156,7 +156,7 @@ lazy val docs = (project in file("docs"))

includeFilter in makeSite := "*.html" | "*.css" | "*.png" | "*.jpg" | "*.gif" | "*.js" | "*.yml",
ghpagesNoJekyll := false,
git.remoteRepo := "[email protected]:guardian/scanamo.git",
git.remoteRepo := "[email protected]:scanamo/scanamo.git",

makeMicrosite := makeMicrosite.dependsOn(unidoc in Compile).value,
addMappingsToSiteDir(mappings in (ScalaUnidoc, packageDoc), siteSubdirName in ScalaUnidoc),
Expand All @@ -169,13 +169,13 @@ lazy val docs = (project in file("docs"))

import ReleaseTransformations._
val publishingSettings = Seq(
homepage := Some(url("https://guardian.github.io/scanamo/")),
homepage := Some(url("http://www.scanamo.org/")),
licenses := Seq("Apache V2" -> url("http://www.apache.org/licenses/LICENSE-2.0.html")),
publishMavenStyle := true,
publishArtifact in Test := false,
scmInfo := Some(ScmInfo(
url("https://github.com/guardian/scanamo"),
"scm:git:[email protected]:guardian/scanamo.git"
url("https://github.com/scanamo/scanamo"),
"scm:git:[email protected]:scanamo/scanamo.git"
)),

pomExtra := {
Expand Down Expand Up @@ -225,7 +225,7 @@ val micrositeSettings = Seq(
micrositeName := "Scanamo",
micrositeDescription := "Scanamo: simpler DynamoDB access for Scala",
micrositeAuthor := "Scanamo Contributors",
micrositeGithubOwner := "guardian",
micrositeGithubOwner := "scanamo",
micrositeGithubRepo := "scanamo",
micrositeBaseUrl := "scanamo",
micrositeDocumentationUrl := "/scanamo/latest/api",
Expand Down

0 comments on commit 24624d1

Please sign in to comment.