xsbt-web-plugin moved

This commit is contained in:
xuwei-k 2012-12-01 14:09:39 +09:00 committed by Mark Harrah
parent 2598a8f1a9
commit 4b17d12de0
6 changed files with 7 additions and 7 deletions

View File

@ -16,7 +16,7 @@ toplinks:
- name: 'Web' - name: 'Web'
id: 'web' id: 'web'
content: | 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) * [xsbt-webstart](https://github.com/ritschwumm/xsbt-webstart)
* [sbt-appengine](https://github.com/sbt/sbt-appengine) * [sbt-appengine](https://github.com/sbt/sbt-appengine)
* [sbt-gwt-plugin](https://github.com/thunderklaus/sbt-gwt-plugin) * [sbt-gwt-plugin](https://github.com/thunderklaus/sbt-gwt-plugin)

View File

@ -246,7 +246,7 @@ Some of the more visible changes:
- More aggressive incremental recompilation for both Java and Scala sources - More aggressive incremental recompilation for both Java and Scala sources
- Merged plugins and processors into improved plugins system: - Merged plugins and processors into improved plugins system:
:doc:`/Extending/Plugins` :doc:`/Extending/Plugins`
- `Web application <https://github.com/siasia/xsbt-web-plugin>`_ and - `Web application <https://github.com/JamesEarlDouglas/xsbt-web-plugin>`_ and
webstart support moved to plugins instead of core features webstart support moved to plugins instead of core features
- Fixed all of the issues in (Google Code) issue #44 - Fixed all of the issues in (Google Code) issue #44
- Managed dependencies automatically updated when configuration changes - Managed dependencies automatically updated when configuration changes

View File

@ -68,7 +68,7 @@ Plugins for IDEs:
Web Plugins 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 - xsbt-webstart: https://github.com/ritschwumm/xsbt-webstart
- sbt-appengine: https://github.com/sbt/sbt-appengine - sbt-appengine: https://github.com/sbt/sbt-appengine
- sbt-gwt-plugin: https://github.com/thunderklaus/sbt-gwt-plugin - sbt-gwt-plugin: https://github.com/thunderklaus/sbt-gwt-plugin

View File

@ -170,7 +170,7 @@ Edit ``project/project/Build.scala``
object PluginDef extends Build { object PluginDef extends Build {
override lazy val projects = Seq(root) override lazy val projects = Seq(root)
lazy val root = Project("plugins", file(".")) dependsOn( webPlugin ) 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``. 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 2) Use the library
~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~

View File

@ -232,7 +232,7 @@ Some especially popular plugins are:
- those for IDEs (to import an sbt project into your IDE) - those for IDEs (to import an sbt project into your IDE)
- those supporting web frameworks, such as - those supporting web frameworks, such as
`xsbt-web-plugin <https://github.com/siasia/xsbt-web-plugin>`_. `xsbt-web-plugin <https://github.com/JamesEarlDouglas/xsbt-web-plugin>`_.
:doc:`Check out the list</Community/Community-Plugins>`. :doc:`Check out the list</Community/Community-Plugins>`.

View File

@ -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 Web application support was split out into a plugin. See the
`xsbt-web-plugin <https://github.com/siasia/xsbt-web-plugin>`_ project. `xsbt-web-plugin <https://github.com/JamesEarlDouglas/xsbt-web-plugin>`_ project.
For an early version of an xsbt Web Start plugin, visit the For an early version of an xsbt Web Start plugin, visit the
`xsbt-webstart <https://github.com/ritschwumm/xsbt-webstart>`_ project. `xsbt-webstart <https://github.com/ritschwumm/xsbt-webstart>`_ project.