diff --git a/README.md b/README.md index 6436858..6bef69a 100644 --- a/README.md +++ b/README.md @@ -59,10 +59,15 @@ Yes, you can now do some server side includes, using the synapticloop templar te To make it quicker and easier to get started with routemaster, we added in module functionality so that it can be easily extended. -### Step 1: +### Instructions: + +Download the `routemaster--server.jar` from the [github releases directory](https://github.com/synapticloop/routemaster/releases) *(which contains all of the dependencies that are required)*, download modules that you require and place them in the `modules` directory from where you launched the routemaster server. + +These will be automatically registered and ready to go. + +For an example module with everything you need to build and deploy, see [https://github.com/synapticloop/routemaster-module-example](https://github.com/synapticloop/routemaster-module-example). + -Download the `routemaster--server.jar` from the [https://github.com/synapticloop/routemaster/releases](github releases directory) -which contains all of the dependencies that are required @@ -235,9 +240,9 @@ repositories { dependencies { - runtime(group: 'synapticloop', name: 'routemaster', version: '2.0.0', ext: 'jar') + runtime(group: 'synapticloop', name: 'routemaster', version: '2.1.0', ext: 'jar') - compile(group: 'synapticloop', name: 'routemaster', version: '2.0.0', ext: 'jar') + compile(group: 'synapticloop', name: 'routemaster', version: '2.1.0', ext: 'jar') } @@ -249,9 +254,9 @@ or, more simply for versions of gradle greater than 2.1 dependencies { - runtime 'synapticloop:routemaster:2.0.0' + runtime 'synapticloop:routemaster:2.1.0' - compile 'synapticloop:routemaster:2.0.0' + compile 'synapticloop:routemaster:2.1.0' } @@ -265,7 +270,7 @@ dependencies { synapticloop routemaster - 2.0.0 + 2.1.0 jar diff --git a/build.gradle b/build.gradle index a3d0476..1b8810e 100644 --- a/build.gradle +++ b/build.gradle @@ -15,7 +15,7 @@ plugins { id "synapticloop.documentr" version "2.9.0" } -version = '2.0.0' +version = '2.1.0' group = 'synapticloop' archivesBaseName = 'routemaster' diff --git a/src/docs/readme.md b/src/docs/readme.md index 9494e9b..a424794 100644 --- a/src/docs/readme.md +++ b/src/docs/readme.md @@ -21,6 +21,10 @@ Download the `routemaster--server.jar` from the [github releases direc These will be automatically registered and ready to go. +For an example module with everything you need to build and deploy, see [https://github.com/synapticloop/routemaster-module-example](https://github.com/synapticloop/routemaster-module-example). + + + ## Options