aboutsummaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
authorJim Lawson2019-01-22 10:12:56 -0800
committerGitHub2019-01-22 10:12:56 -0800
commit0fd1fd100ab11a6a34c262e605ced3b166adec88 (patch)
tree2b8cd67c52e7d5e98bd5b1412d0094aff895acf3 /build.sbt
parentdf3a34f01d227ff9ad0e63a41ff10001ac01c01d (diff)
Remove ghpages plugin (#996)
* Remove GhpagesPlugin. (#979) * Restore old SCM reference (after removing ghpages) * Remove reference to sbt-ghpages plugin.
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt11
1 files changed, 6 insertions, 5 deletions
diff --git a/build.sbt b/build.sbt
index d4233084..536f17a5 100644
--- a/build.sbt
+++ b/build.sbt
@@ -4,10 +4,6 @@
enablePlugins(SiteScaladocPlugin)
-enablePlugins(GhpagesPlugin)
-
-git.remoteRepo := "git@github.com:freechipsproject/firrtl.git"
-
// Firrtl code
organization := "edu.berkeley.cs"
@@ -109,7 +105,8 @@ javaSource in Antlr4 := (sourceManaged in Compile).value
publishMavenStyle := true
publishArtifact in Test := false
pomIncludeRepository := { x => false }
-// Don't add 'scm' elements if we have a git.remoteRepo definition.
+// Don't add 'scm' elements if we have a git.remoteRepo definition,
+// but since we don't (with the removal of ghpages), add them in below.
pomExtra := <url>http://chisel.eecs.berkeley.edu/</url>
<licenses>
<license>
@@ -118,6 +115,10 @@ pomExtra := <url>http://chisel.eecs.berkeley.edu/</url>
<distribution>repo</distribution>
</license>
</licenses>
+ <scm>
+ <url>https://github.com/freechipsproject/firrtl.git</url>
+ <connection>scm:git:github.com/freechipsproject/firrtl.git</connection>
+ </scm>
<developers>
<developer>
<id>jackbackrack</id>