Skip to content

Commit

Permalink
Dependecies update
Browse files Browse the repository at this point in the history
sbt         -> 0.13.5
sbt-site    -> 0.7.2
sbt-ghpages -> 0.5.2

.gitignore updated with IntelliJ idea files
  • Loading branch information
Kwestor committed Jun 20, 2014
1 parent 433873a commit b439a81
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 8 deletions.
9 changes: 8 additions & 1 deletion .gitignore
@@ -1,4 +1,11 @@
_build
target
.target
.DS_Store

# IntelliJ IDEA
/.idea

# sbt
/target
/project/target
/project/project
8 changes: 4 additions & 4 deletions README.rst
Expand Up @@ -12,17 +12,17 @@ To setup Sphinx locally, use ``easy_install``:
$ sudo easy_install "sphinx==1.1.3"
$ sudo easy_install pygments # required on some systems

To generate the files, use the ``make-site`` task in sbt:
To generate the files, use the ``makeSite`` task in sbt:

::

$ sbt make-site
$ sbt makeSite

To deploy the changes, use the ``ghpages-push-site`` task:
To deploy the changes, use the ``ghpagesPushSite`` task:

::

$ sbt make-site ghpages-push-site
$ sbt makeSite ghpagesPushSite

.. _reStructuredText: http://docutils.sourceforge.net/rst.html
.. _Sphinx: http://sphinx.pocoo.org/
Expand Down
2 changes: 2 additions & 0 deletions build.sbt
@@ -1,3 +1,5 @@
name := "scala-ide-docs"

site.settings

ghpages.settings
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
@@ -1 +1 @@
sbt.version=0.12.4
sbt.version=0.13.5
4 changes: 2 additions & 2 deletions project/plugins.sbt
Expand Up @@ -4,6 +4,6 @@ resolvers += "sonatype-releases" at "https://oss.sonatype.org/service/local/repo

resolvers += "jgit-repo" at "http://download.eclipse.org/jgit/maven"

addSbtPlugin("com.typesafe.sbt" % "sbt-site" % "0.6.0")
addSbtPlugin("com.typesafe.sbt" % "sbt-site" % "0.7.2")

addSbtPlugin("com.typesafe.sbt" % "sbt-ghpages" % "0.5.0")
addSbtPlugin("com.typesafe.sbt" % "sbt-ghpages" % "0.5.2")

0 comments on commit b439a81

Please sign in to comment.