-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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 #852 from adelbertc/build-sbt-org-change
Update build with org change
- Loading branch information
Showing
1 changed file
with
56 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -74,7 +74,7 @@ lazy val docSettings = Seq( | |
"-sourcepath", baseDirectory.in(LocalRootProject).value.getAbsolutePath, | ||
"-diagrams" | ||
), | ||
git.remoteRepo := "[email protected]:non/cats.git", | ||
git.remoteRepo := "[email protected]:typelevel/cats.git", | ||
includeFilter in makeSite := "*.html" | "*.css" | "*.png" | "*.jpg" | "*.gif" | "*.js" | "*.swf" | "*.yml" | "*.md" | ||
) | ||
|
||
|
@@ -192,21 +192,71 @@ lazy val js = project | |
.enablePlugins(ScalaJSPlugin) | ||
|
||
lazy val publishSettings = Seq( | ||
homepage := Some(url("https://github.com/non/cats")), | ||
homepage := Some(url("https://github.com/typelevel/cats")), | ||
licenses := Seq("MIT" -> url("http://opensource.org/licenses/MIT")), | ||
scmInfo := Some(ScmInfo(url("https://github.com/non/cats"), "scm:git:[email protected]:non/cats.git")), | ||
scmInfo := Some(ScmInfo(url("https://github.com/typelevel/cats"), "scm:git:[email protected]:typelevel/cats.git")), | ||
autoAPIMappings := true, | ||
apiURL := Some(url("https://non.github.io/cats/api/")), | ||
apiURL := Some(url("http://typelevel.org/cats/api/")), | ||
pomExtra := ( | ||
<developers> | ||
<developer> | ||
<id>ceedubs</id> | ||
<name>Cody Allen</name> | ||
<url>https://github.com/ceedubs/</url> | ||
</developer> | ||
<developer> | ||
<id>rossabaker</id> | ||
<name>Ross Baker</name> | ||
<url>https://github.com/rossabaker/</url> | ||
</developer> | ||
<developer> | ||
<id>travisbrown</id> | ||
<name>Travis Brown</name> | ||
<url>https://github.com/travisbrown/</url> | ||
</developer> | ||
<developer> | ||
<id>adelbertc</id> | ||
<name>Adelbert Chang</name> | ||
<url>https://github.com/adelbertc/</url> | ||
</developer> | ||
<developer> | ||
<id>tpolecat</id> | ||
<name>Rob Norris</name> | ||
<url>https://github.com/tpolecat/</url> | ||
</developer> | ||
<developer> | ||
<id>stew</id> | ||
<name>Mike O'Connor</name> | ||
<url>https://github.com/stew/</url> | ||
</developer> | ||
<developer> | ||
<id>non</id> | ||
<name>Erik Osheim</name> | ||
<url>http://github.com/non/</url> | ||
<url>https://github.com/non/</url> | ||
</developer> | ||
<developer> | ||
<id>mpilquist</id> | ||
<name>Michael Pilquist</name> | ||
<url>https://github.com/mpilquist/</url> | ||
</developer> | ||
<developer> | ||
<id>milessabin</id> | ||
<name>Miles Sabin</name> | ||
<url>https://github.com/milessabin/</url> | ||
</developer> | ||
<developer> | ||
<id>fthomas</id> | ||
<name>Frank Thomas</name> | ||
<url>https://github.com/fthomas/</url> | ||
</developer> | ||
<developer> | ||
<id>julien-truffaut</id> | ||
<name>Julien Truffaut</name> | ||
<url>https://github.com/julien-truffaut/</url> | ||
</developer> | ||
</developers> | ||
) | ||
) ++ credentialSettings ++ sharedPublishSettings ++ sharedReleaseProcess | ||
) ++ credentialSettings ++ sharedPublishSettings ++ sharedReleaseProcess | ||
|
||
// These aliases serialise the build for the benefit of Travis-CI. | ||
addCommandAlias("buildJVM", ";macrosJVM/compile;coreJVM/compile;coreJVM/test;lawsJVM/compile;testsJVM/test;jvm/test;bench/test") | ||
|