diff --git a/src/jekyll/plugins.html b/src/jekyll/plugins.html index de211d38f..b6a3e79a7 100644 --- a/src/jekyll/plugins.html +++ b/src/jekyll/plugins.html @@ -16,7 +16,7 @@ toplinks: - name: 'Web' id: 'web' content: | - * [xsbt-web-plugin](https://github.com/siasia/xsbt-web-plugin) + * [xsbt-web-plugin](https://github.com/JamesEarlDouglas/xsbt-web-plugin) * [xsbt-webstart](https://github.com/ritschwumm/xsbt-webstart) * [sbt-appengine](https://github.com/sbt/sbt-appengine) * [sbt-gwt-plugin](https://github.com/thunderklaus/sbt-gwt-plugin) diff --git a/src/sphinx/Community/Changes.rst b/src/sphinx/Community/Changes.rst index 16a08de69..63c4a312d 100644 --- a/src/sphinx/Community/Changes.rst +++ b/src/sphinx/Community/Changes.rst @@ -246,7 +246,7 @@ Some of the more visible changes: - More aggressive incremental recompilation for both Java and Scala sources - Merged plugins and processors into improved plugins system: :doc:`/Extending/Plugins` -- `Web application `_ and +- `Web application `_ and webstart support moved to plugins instead of core features - Fixed all of the issues in (Google Code) issue #44 - Managed dependencies automatically updated when configuration changes diff --git a/src/sphinx/Community/Community-Plugins.rst b/src/sphinx/Community/Community-Plugins.rst index 1c8bcd859..ed9ffee3c 100644 --- a/src/sphinx/Community/Community-Plugins.rst +++ b/src/sphinx/Community/Community-Plugins.rst @@ -68,7 +68,7 @@ Plugins for IDEs: Web Plugins ~~~~~~~~~~~ -- xsbt-web-plugin: https://github.com/siasia/xsbt-web-plugin +- xsbt-web-plugin: https://github.com/JamesEarlDouglas/xsbt-web-plugin - xsbt-webstart: https://github.com/ritschwumm/xsbt-webstart - sbt-appengine: https://github.com/sbt/sbt-appengine - sbt-gwt-plugin: https://github.com/thunderklaus/sbt-gwt-plugin diff --git a/src/sphinx/Extending/Plugins.rst b/src/sphinx/Extending/Plugins.rst index 993f9df3d..41b559690 100644 --- a/src/sphinx/Extending/Plugins.rst +++ b/src/sphinx/Extending/Plugins.rst @@ -170,7 +170,7 @@ Edit ``project/project/Build.scala`` object PluginDef extends Build { override lazy val projects = Seq(root) lazy val root = Project("plugins", file(".")) dependsOn( webPlugin ) - lazy val webPlugin = uri("git://github.com/siasia/xsbt-web-plugin") + lazy val webPlugin = uri("git://github.com/JamesEarlDouglas/xsbt-web-plugin") } If sbt is running, run ``reload``. @@ -186,7 +186,7 @@ it to the repository as a fragment: :: - lazy val webPlugin = uri("git://github.com/siasia/xsbt-web-plugin#0.9.7") + lazy val webPlugin = uri("git://github.com/JamesEarlDouglas/xsbt-web-plugin#0.9.7") 2) Use the library ~~~~~~~~~~~~~~~~~~ diff --git a/src/sphinx/Getting-Started/Using-Plugins.rst b/src/sphinx/Getting-Started/Using-Plugins.rst index d8116e099..14fd60e36 100644 --- a/src/sphinx/Getting-Started/Using-Plugins.rst +++ b/src/sphinx/Getting-Started/Using-Plugins.rst @@ -232,7 +232,7 @@ Some especially popular plugins are: - those for IDEs (to import an sbt project into your IDE) - those supporting web frameworks, such as - `xsbt-web-plugin `_. + `xsbt-web-plugin `_. :doc:`Check out the list`. diff --git a/src/sphinx/faq.rst b/src/sphinx/faq.rst index 07abb09c4..30babf118 100644 --- a/src/sphinx/faq.rst +++ b/src/sphinx/faq.rst @@ -137,7 +137,7 @@ What happened to the web development and Web Start support since 0.7? ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Web application support was split out into a plugin. See the -`xsbt-web-plugin `_ project. +`xsbt-web-plugin `_ project. For an early version of an xsbt Web Start plugin, visit the `xsbt-webstart `_ project.