Skip to content
This repository has been archived by the owner on Jan 7, 2021. It is now read-only.

Commit

Permalink
Updated doc for 6.0.0-M1
Browse files Browse the repository at this point in the history
  • Loading branch information
Sten Roger Sandvik committed Jul 10, 2015
1 parent 4e2d5d6 commit 5c31c13
Show file tree
Hide file tree
Showing 11 changed files with 20 additions and 20 deletions.
8 changes: 4 additions & 4 deletions doc/developer/modules/basics/code/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ buildscript {
}

dependencies {
classpath 'com.enonic.xp:gradle-plugin:6.0.0-SNAPSHOT'
classpath 'com.enonic.xp:gradle-plugin:6.0.0-M1'
}
}

Expand All @@ -27,7 +27,7 @@ repositories {
}

dependencies {
include 'com.enonic.xp:lib-portal:6.0.0-SNAPSHOT'
include 'com.enonic.xp:lib-i18n:6.0.0-SNAPSHOT'
include 'com.enonic.xp:lib-thymeleaf:6.0.0-SNAPSHOT'
include 'com.enonic.xp:lib-portal:6.0.0-M1'
include 'com.enonic.xp:lib-i18n:6.0.0-M1'
include 'com.enonic.xp:lib-thymeleaf:6.0.0-M1'
}
8 changes: 4 additions & 4 deletions doc/first-module/basics/code/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ buildscript {
}

dependencies {
classpath 'com.enonic.xp:gradle-plugin:6.0.0-SNAPSHOT'
classpath 'com.enonic.xp:gradle-plugin:6.0.0-M1'
}
}

Expand All @@ -27,7 +27,7 @@ repositories {
}

dependencies {
include 'com.enonic.xp:lib-portal:6.0.0-SNAPSHOT'
include 'com.enonic.xp:lib-i18n:6.0.0-SNAPSHOT'
include 'com.enonic.xp:lib-thymeleaf:6.0.0-SNAPSHOT'
include 'com.enonic.xp:lib-portal:6.0.0-M1'
include 'com.enonic.xp:lib-i18n:6.0.0-M1'
include 'com.enonic.xp:lib-thymeleaf:6.0.0-M1'
}
6 changes: 3 additions & 3 deletions doc/getting-started/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ the correct Enonic XP version and unzip it to a preferred directory.

Terminal users can do this::

$ curl -O http://repo.enonic.com/public/com/enonic/xp/distro/6.0.0-SNAPSHOT/distro-6.0.0-SNAPSHOT.zip
$ unzip distro-6.0.0-SNAPSHOT.zip
$ cd enonic-xp-6.0.0-SNAPSHOT
$ curl -O http://repo.enonic.com/public/com/enonic/xp/distro/6.0.0-M1/distro-6.0.0-M1.zip
$ unzip distro-6.0.0-M1.zip
$ cd enonic-xp-6.0.0-M1

The top level of the unzipped directory will be referred to as ``$XP_INSTALL``
from now on.
Expand Down
2 changes: 1 addition & 1 deletion doc/operations/docker.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ guide to set up everything you need.
After everything is installed, you can easily start up Enonic XP
on your container host like this::

docker run -d -p 8080:8080 --name xp-app enonic/xp-app:6.0.0-SNAPSHOT
docker run -d -p 8080:8080 --name xp-app enonic/xp-app:6.0.0-M1

This will download the Enonic XP image and start it up and map it to
port ``8080`` on your docker-host. To look at the log, use ``docker logs``
Expand Down
4 changes: 2 additions & 2 deletions doc/reference/javadoc.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ JavaDoc API
You can either download the JavaDoc `as a zip`_ or view it
`directly in your browser`_.

.. _as a zip: http://repo.enonic.com/public/com/enonic/xp/distro/6.0.0-SNAPSHOT/distro-6.0.0-SNAPSHOT-javadoc.zip
.. _directly in your browser: http://repo.enonic.com/public/com/enonic/xp/distro/6.0.0-SNAPSHOT/distro-6.0.0-SNAPSHOT-javadoc.zip!/index.html
.. _as a zip: http://repo.enonic.com/public/com/enonic/xp/distro/6.0.0-M1/distro-6.0.0-M1-javadoc.zip
.. _directly in your browser: http://repo.enonic.com/public/com/enonic/xp/distro/6.0.0-M1/distro-6.0.0-M1-javadoc.zip!/index.html
2 changes: 1 addition & 1 deletion doc/reference/libraries/content/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This library implements JavaScript bindings for standard content-related
functionality. Add the following into your ``build.gradle`` file in the
``dependencies`` section::

library 'com.enonic.xp:lib-content:6.0.0-SNAPSHOT'
library 'com.enonic.xp:lib-content:6.0.0-M1'

To use this library in your JavaScript files, you can require the library
like this::
Expand Down
2 changes: 1 addition & 1 deletion doc/reference/libraries/i18n/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ This library implements JavaScript bindings for standard i18n-related
functionality. Add the following into your ``build.gradle`` file in the
``dependencies`` section::

library 'com.enonic.xp:lib-i18n:6.0.0-SNAPSHOT'
library 'com.enonic.xp:lib-i18n:6.0.0-M1'

To use this library in your JavaScript files, you can require the library
like this::
Expand Down
2 changes: 1 addition & 1 deletion doc/reference/libraries/mustache/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ This library implements JavaScript bindings for Mustache template
processing. Add the following into your ``build.gradle`` file in the
``dependencies`` section::

library 'com.enonic.xp:lib-mustache:6.0.0-SNAPSHOT'
library 'com.enonic.xp:lib-mustache:6.0.0-M1'

To use this library in your JavaScript files, you can require the library
like this::
Expand Down
2 changes: 1 addition & 1 deletion doc/reference/libraries/portal/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This library implements JavaScript bindings for portal related functions
Add the following into your ``build.gradle`` file in the
``dependencies`` section::

library 'com.enonic.xp:lib-portal:6.0.0-SNAPSHOT'
library 'com.enonic.xp:lib-portal:6.0.0-M1'

To use this library in your JavaScript files, you can require the library
like this::
Expand Down
2 changes: 1 addition & 1 deletion doc/reference/libraries/thymeleaf/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ This library implements JavaScript bindings for Thymeleaf template
processing. Add the following into your ``build.gradle`` file in the
``dependencies`` section::

library 'com.enonic.xp:lib-thymeleaf:6.0.0-SNAPSHOT'
library 'com.enonic.xp:lib-thymeleaf:6.0.0-M1'

To use this library in your JavaScript files, you can require the library
like this::
Expand Down
2 changes: 1 addition & 1 deletion doc/reference/libraries/xslt/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ This library implements JavaScript bindings for XSLT template
processing. Add the following into your ``build.gradle`` file in the
``dependencies`` section::

library 'com.enonic.xp:lib-xslt:6.0.0-SNAPSHOT'
library 'com.enonic.xp:lib-xslt:6.0.0-M1'

To use this library in your JavaScript files, you can require the library
like this::
Expand Down

0 comments on commit 5c31c13

Please sign in to comment.