Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Sébastien FALQUIER committed Jul 15, 2021
1 parent 78f8afb commit d210cbd
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 1 deletion.
7 changes: 6 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -113,4 +113,9 @@ releaseProcess := Seq[ReleaseStep](
setNextVersion,
commitNextVersion,
pushChanges
)
)

// Documentation publication in Github pages : https://gisaia.github.io/ARLAS-proc/latest/api
enablePlugins(GhpagesPlugin)
enablePlugins(SiteScaladocPlugin)
git.remoteRepo := "git@github.com:gisaia/ARLAS-proc.git"
1 change: 1 addition & 0 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.14.9")
addSbtPlugin("com.github.gseitz" % "sbt-release" % "1.0.11")
addSbtPlugin("com.typesafe.sbt" % "sbt-ghpages" % "0.6.3")
21 changes: 21 additions & 0 deletions src/site/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Project Documentation</title>
<script language="JavaScript">
<!--
function doRedirect()
{
window.location.replace("latest/api");
}

doRedirect();
//-->
</script>
</head>
<body>
<a href="latest/api">Go to the project documentation
</a>
</body>
</html>

0 comments on commit d210cbd

Please sign in to comment.