diff options
| -rw-r--r-- | build.sbt | 11 | ||||
| -rw-r--r-- | project/plugins.sbt | 2 |
2 files changed, 6 insertions, 7 deletions
@@ -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> diff --git a/project/plugins.sbt b/project/plugins.sbt index 1a7cb8a6..6baf83c6 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -4,8 +4,6 @@ resolvers += Classpaths.sbtPluginReleases resolvers += "jgit-repo" at "http://download.eclipse.org/jgit/maven" -addSbtPlugin("com.typesafe.sbt" % "sbt-ghpages" % "0.6.2") - addSbtPlugin("com.typesafe.sbt" % "sbt-site" % "1.3.1") addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.7.0") |
