From 50f0a2b7df7010ee4945c78a83bc42731007df9e Mon Sep 17 00:00:00 2001 From: Edgar Espina Date: Sun, 22 Jul 2018 21:43:33 -0300 Subject: [PATCH 01/93] kotlin: exposed module fix #1219 --- doc/doc/exposed/exposed.md | 49 +++++ .../test/java/org/jooby/test/MockUnit.java | 4 + modules/jooby-exposed/pom.xml | 180 ++++++++++++++++++ .../main/java/org/jooby/exposed/Exposed.kt | 78 ++++++++ .../java/org/jooby/exposed/ExposedTest.kt | 78 ++++++++ modules/pom.xml | 1 + pom.xml | 7 + 7 files changed, 397 insertions(+) create mode 100644 doc/doc/exposed/exposed.md create mode 100644 modules/jooby-exposed/pom.xml create mode 100644 modules/jooby-exposed/src/main/java/org/jooby/exposed/Exposed.kt create mode 100644 modules/jooby-exposed/src/test/java/org/jooby/exposed/ExposedTest.kt diff --git a/doc/doc/exposed/exposed.md b/doc/doc/exposed/exposed.md new file mode 100644 index 0000000000..13f9bdc30d --- /dev/null +++ b/doc/doc/exposed/exposed.md @@ -0,0 +1,49 @@ +# exposed + + Exposed is a prototype for a lightweight SQL library written over JDBC driver for Kotlin language + +> NOTE: This module depends on [jdbc](https://github.com/jooby-project/jooby/tree/master/jooby-jdbc) module. + +## exports + +* Database object + +## usage + +```java +{ + use(Jdbc()) + use(Exposed()) + + get("/db") { + val db = require(Database::class) + transaction (db) { + // Work with db... + } + } + } +``` + +## multiple databases + +```java +{ + use(Jdbc("db1")) + + use(Jdbc("db2")) + + use(Exposed("db1")) + + use(Exposed("db2")) + + get("/db") { + val db1 = require("db1", Database::class) + // Work with db1... + + val db2 = require("db2", Database::class) + // Work with db2... + } +} +``` + +That's all! Happy coding!!! diff --git a/jooby/src/test/java/org/jooby/test/MockUnit.java b/jooby/src/test/java/org/jooby/test/MockUnit.java index 29e5935f60..573e0c5e1b 100644 --- a/jooby/src/test/java/org/jooby/test/MockUnit.java +++ b/jooby/src/test/java/org/jooby/test/MockUnit.java @@ -209,6 +209,10 @@ public MockUnit expect(final Block block) { return this; } + public MockUnit run(final Block block) throws Exception { + return run(new Block[] {block}); + } + public MockUnit run(final Block... blocks) throws Exception { for (Block block : this.blocks) { diff --git a/modules/jooby-exposed/pom.xml b/modules/jooby-exposed/pom.xml new file mode 100644 index 0000000000..c1a7d9e664 --- /dev/null +++ b/modules/jooby-exposed/pom.xml @@ -0,0 +1,180 @@ + + + + + org.jooby + modules + 1.5.1-SNAPSHOT + + + 4.0.0 + jooby-exposed + + + + + kotlin-maven-plugin + org.jetbrains.kotlin + ${kotlin.version} + + 1.8 + + -java-parameters + + + + + compile + compile + + compile + + + + test-compile + test-compile + + test-compile + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + + + default-compile + none + + + + default-testCompile + none + + + java-compile + compile + + compile + + + + java-test-compile + test-compile + + testCompile + + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + **/*Test.java + **/*Feature.java + **/Issue*.java + + + + + + + + + + org.jooby + jooby-jdbc + ${project.version} + + + + + org.jooby + jooby + ${project.version} + + + + + org.jetbrains.exposed + exposed + ${exposed.version} + + + + + org.jooby + jooby + ${project.version} + test + tests + + + + org.jooby + jooby-netty + ${project.version} + test + + + + junit + junit + test + + + + org.easymock + easymock + test + + + + org.powermock + powermock-api-easymock + test + + + + org.powermock + powermock-module-junit4 + test + + + + org.jacoco + org.jacoco.agent + runtime + test + + + org.jetbrains.kotlin + kotlin-stdlib-jdk8 + ${kotlin.version} + + + org.jetbrains.kotlin + kotlin-test + ${kotlin.version} + test + + + + + + exposed + exposed + https://dl.bintray.com/kotlin/exposed + + + + diff --git a/modules/jooby-exposed/src/main/java/org/jooby/exposed/Exposed.kt b/modules/jooby-exposed/src/main/java/org/jooby/exposed/Exposed.kt new file mode 100644 index 0000000000..813e90e12c --- /dev/null +++ b/modules/jooby-exposed/src/main/java/org/jooby/exposed/Exposed.kt @@ -0,0 +1,78 @@ +package org.jooby.exposed + +import com.google.inject.Binder +import com.google.inject.Key +import com.google.inject.name.Names +import com.typesafe.config.Config +import org.jetbrains.exposed.sql.Database +import org.jooby.Env +import org.jooby.Jooby +import java.util.NoSuchElementException +import javax.sql.DataSource + +/** + *

exposed

+ *

+ * Exposed is a prototype for a lightweight SQL + * library written over JDBC driver for Kotlin language + *

+ * + *

+ * This module depends on {@link org.jooby.jdbc.Jdbc} module, make sure you read the doc of the + * {@link org.jooby.jdbc.Jdbc} module. + *

+ * + *

exports

+ * + * + *

usage

+ *
{@code
+ * {
+ *   use(new Jdbc());
+ *
+ *   use(new Exposed());
+ *
+ *   get("/db") {
+ *     val db = require(Database::class)
+ *     transaction (db) {
+ *       // Work with db...
+ *     }
+ *   }
+ * }
+ * }
+ * + *

multiple databases

+ * + *
{@code
+ * {
+ *   use(new Jdbc("db1"));
+ *
+ *   use(new Jdbc("db2"));
+ *
+ *   use(new Exposed("db1"));
+ *
+ *   use(new Exposed("db2"));
+ *
+ *   get("/db") {
+ *     val db1 = require("db1", Database::class)
+ *     // Work with db1...
+ *
+ *     val db2 = require("db2", Database::class)
+ *     // Work with db2...
+ *   }
+ * }
+ * }
+ * + * @author edgar + */ +class Exposed(val name: String = "db") : Jooby.Module { + override fun configure(env: Env, conf: Config, binder: Binder) { + val dskey = Key.get(DataSource::class.java, Names.named(name)) + val ds = env.get(dskey) + .orElseThrow { NoSuchElementException("DataSource missing: $dskey") } + val db = Database.connect(ds) + env.serviceKey().generate(Database::class.java, name) { key -> binder.bind(key).toInstance(db) } + } +} diff --git a/modules/jooby-exposed/src/test/java/org/jooby/exposed/ExposedTest.kt b/modules/jooby-exposed/src/test/java/org/jooby/exposed/ExposedTest.kt new file mode 100644 index 0000000000..e4bd66a2e2 --- /dev/null +++ b/modules/jooby-exposed/src/test/java/org/jooby/exposed/ExposedTest.kt @@ -0,0 +1,78 @@ +package org.jooby.exposed + +import com.google.inject.Binder +import com.google.inject.Key +import com.google.inject.binder.LinkedBindingBuilder +import com.google.inject.name.Names +import com.typesafe.config.Config +import org.easymock.EasyMock +import org.jetbrains.exposed.sql.Database +import org.jooby.Env +import org.jooby.test.MockUnit +import org.junit.Test +import java.util.* +import java.util.function.Consumer +import javax.sql.DataSource + +class ExposedTest { + + @Test + fun defaults() { + val dbkey = Key.get(Database::class.java, Names.named("db")) + val blocks = arrayOf(MockUnit.Block { unit -> + Exposed().configure(unit.get(Env::class.java), unit.get(Config::class.java), unit.get(Binder::class.java)) + }, MockUnit.Block { unit -> + val binder = unit.captured(Consumer::class.java)[0] as Consumer> + binder.accept(dbkey) + }) + + MockUnit(Env::class.java, Binder::class.java, Config::class.java, DataSource::class.java) + .expect(dataSource("db")) + .expect(serviceKey("db")) + .expect(bind(dbkey)) + .run(*blocks) + } + + @Test(expected = NoSuchElementException::class) + fun noDataSource() { + val blocks = arrayOf(MockUnit.Block { unit -> + Exposed().configure(unit.get(Env::class.java), unit.get(Config::class.java), unit.get(Binder::class.java)) + }) + + MockUnit(Env::class.java, Binder::class.java, Config::class.java, DataSource::class.java) + .expect { unit -> + val env = unit.get(Env::class.java) + EasyMock.expect(env.get(Key.get(DataSource::class.java, Names.named("db")))).andReturn(Optional.empty()) + } + .run(*blocks) + } + + private fun bind(key: Key): MockUnit.Block { + return MockUnit.Block { unit -> + val lbb = unit.mock(LinkedBindingBuilder::class.java) as LinkedBindingBuilder + lbb.toInstance(EasyMock.isA(Database::class.java)) + + val binder = unit.get(Binder::class.java) + EasyMock.expect(binder.bind(key)).andReturn(lbb) + } + } + + private fun serviceKey(name: String): MockUnit.Block { + return MockUnit.Block { unit -> + val skey = unit.mock(Env.ServiceKey::class.java) + skey.generate(EasyMock.eq(Database::class.java), EasyMock.eq(name), unit.capture(Consumer::class.java) as Consumer>?); + + val env = unit.get(Env::class.java) + EasyMock.expect(env.serviceKey()).andReturn(skey) + } + } + + private fun dataSource(db: String?): MockUnit.Block { + return MockUnit.Block { unit -> + val ds = unit.get(DataSource::class.java) + val env = unit.get(Env::class.java) + val ods = if (db == null) Optional.empty() else Optional.of(ds) + EasyMock.expect(env.get(Key.get(DataSource::class.java, Names.named(db)))).andReturn(ods) + } + } +} diff --git a/modules/pom.xml b/modules/pom.xml index f33aed46cf..bc1ee892a9 100644 --- a/modules/pom.xml +++ b/modules/pom.xml @@ -13,6 +13,7 @@ pom + jooby-exposed jooby-apitool jooby-executor jooby-jackson diff --git a/pom.xml b/pom.xml index b553c219d3..dbd9d09e6e 100644 --- a/pom.xml +++ b/pom.xml @@ -83,6 +83,12 @@ ${jooby.version} + + org.jooby + jooby-exposed + ${jooby.version} + + org.jooby jooby-executor @@ -3224,6 +3230,7 @@ org.eclipse.jdt.apt.processorOptions/defaultOverwrite=true 2.0.9.Final 2.1 2.4.8 + 0.10.4 ** From 429b1b0752189f6713e76b4d4584e0b04591396c Mon Sep 17 00:00:00 2001 From: Felix Braun <18290345+f3l1xx@users.noreply.github.com> Date: Mon, 20 Aug 2018 15:20:13 +0200 Subject: [PATCH 02/93] added info about empty folder (#1228) If you execute archetype:generate in a non-empty folder, if may fail with this exception: [ERROR] Failed to execute goal org.apache.maven.plugins:maven-archetype-plugin:3.0.1:generate (default-cli) on project XYZ: org.apache.maven.archetype.exception.InvalidPackaging: Unable to add module to the current project as it is not of packaging type 'pom' --- doc/quickstart.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/quickstart.md b/doc/quickstart.md index 95708c36e8..eb6f3ca8db 100644 --- a/doc/quickstart.md +++ b/doc/quickstart.md @@ -17,7 +17,7 @@ requirements quickstart ===== -Just paste this into a terminal (make sure [Java 8](http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html) and [Maven 3.x](http://maven.apache.org/download.cgi) are installed): +Just paste this into a terminal (make sure you are in an empty folder, and [Java 8](http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html) and [Maven 3.x](http://maven.apache.org/download.cgi) are installed): ```bash mvn archetype:generate -B -DgroupId=com.mycompany -DartifactId=my-app -Dversion=1.0-SNAPSHOT -DarchetypeArtifactId=jooby-archetype -DarchetypeGroupId=org.jooby -DarchetypeVersion={{version}} From caa9ff546f549f840ec1d05ef9fe4cab0af06fa7 Mon Sep 17 00:00:00 2001 From: Edgar Espina Date: Fri, 24 Aug 2018 15:05:41 -0300 Subject: [PATCH 03/93] Missing micrometer registry classes fix #1225 --- .gitignore | 3 ++- doc/doc/micrometer/micrometer.md | 9 +++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index d6914784bb..fcb758a69d 100644 --- a/.gitignore +++ b/.gitignore @@ -24,4 +24,5 @@ jacoco.exec node dump TODO.md -.interp \ No newline at end of file +.interp +.factorypath \ No newline at end of file diff --git a/doc/doc/micrometer/micrometer.md b/doc/doc/micrometer/micrometer.md index ad334cd8d2..0add2c9b67 100644 --- a/doc/doc/micrometer/micrometer.md +++ b/doc/doc/micrometer/micrometer.md @@ -78,6 +78,15 @@ import org.jooby.micrometer.PrometheusHandler; } ``` +> NOTE: for each additional registry, you must add the corresponding `micrometer` depedency. For Prometheus: + +```xml + + io.micrometer + micrometer-registry-prometheus + +``` + ## timed annotation Jooby supports the ```io.micrometer.core.annotation.Timed``` annotation for MVC routes: From a1b280da6e08e14550cd2f3d8808b5e485b72a34 Mon Sep 17 00:00:00 2001 From: Edgar Espina Date: Fri, 24 Aug 2018 15:33:17 -0300 Subject: [PATCH 04/93] v1.5.1 --- README.md | 4 ++-- jooby/pom.xml | 2 +- modules/coverage-report/pom.xml | 2 +- modules/jooby-akka/README.md | 6 +++--- modules/jooby-akka/pom.xml | 2 +- modules/jooby-apitool/README.md | 8 ++++---- modules/jooby-apitool/pom.xml | 2 +- modules/jooby-archetype/pom.xml | 2 +- modules/jooby-assets-autoprefixer/README.md | 6 +++--- modules/jooby-assets-autoprefixer/pom.xml | 2 +- modules/jooby-assets-babel/README.md | 8 ++++---- modules/jooby-assets-babel/pom.xml | 2 +- modules/jooby-assets-clean-css/README.md | 6 +++--- modules/jooby-assets-clean-css/pom.xml | 2 +- modules/jooby-assets-closure-compiler/README.md | 6 +++--- modules/jooby-assets-closure-compiler/pom.xml | 2 +- modules/jooby-assets-csslint/README.md | 6 +++--- modules/jooby-assets-csslint/pom.xml | 2 +- modules/jooby-assets-j2v8/pom.xml | 2 +- modules/jooby-assets-jscs/README.md | 6 +++--- modules/jooby-assets-jscs/pom.xml | 2 +- modules/jooby-assets-jshint/README.md | 6 +++--- modules/jooby-assets-jshint/pom.xml | 2 +- modules/jooby-assets-less/README.md | 6 +++--- modules/jooby-assets-less/pom.xml | 2 +- modules/jooby-assets-less4j/README.md | 6 +++--- modules/jooby-assets-less4j/pom.xml | 2 +- modules/jooby-assets-ng-annotate/README.md | 6 +++--- modules/jooby-assets-ng-annotate/pom.xml | 2 +- modules/jooby-assets-nodejs/pom.xml | 2 +- modules/jooby-assets-requirejs/README.md | 6 +++--- modules/jooby-assets-requirejs/pom.xml | 2 +- modules/jooby-assets-rollup/README.md | 6 +++--- modules/jooby-assets-rollup/pom.xml | 2 +- modules/jooby-assets-sass/README.md | 6 +++--- modules/jooby-assets-sass/pom.xml | 2 +- modules/jooby-assets-svg-sprites/README.md | 6 +++--- modules/jooby-assets-svg-sprites/pom.xml | 2 +- modules/jooby-assets-svg-symbol/README.md | 6 +++--- modules/jooby-assets-svg-symbol/pom.xml | 2 +- modules/jooby-assets-uglify/README.md | 6 +++--- modules/jooby-assets-uglify/pom.xml | 2 +- modules/jooby-assets-yui-compressor/README.md | 6 +++--- modules/jooby-assets-yui-compressor/pom.xml | 2 +- modules/jooby-assets/README.md | 6 +++--- modules/jooby-assets/pom.xml | 2 +- modules/jooby-aws/README.md | 6 +++--- modules/jooby-aws/pom.xml | 2 +- modules/jooby-banner/README.md | 6 +++--- modules/jooby-banner/pom.xml | 2 +- modules/jooby-bom/pom.xml | 4 ++-- modules/jooby-caffeine/README.md | 6 +++--- modules/jooby-caffeine/pom.xml | 2 +- modules/jooby-camel/README.md | 6 +++--- modules/jooby-camel/pom.xml | 2 +- modules/jooby-cassandra/README.md | 8 ++++---- modules/jooby-cassandra/pom.xml | 2 +- modules/jooby-commons-email/README.md | 6 +++--- modules/jooby-commons-email/pom.xml | 2 +- modules/jooby-consul/README.md | 6 +++--- modules/jooby-consul/pom.xml | 2 +- modules/jooby-couchbase/README.md | 8 ++++---- modules/jooby-couchbase/pom.xml | 2 +- modules/jooby-crash/README.md | 6 +++--- modules/jooby-crash/pom.xml | 2 +- modules/jooby-csl/README.md | 6 +++--- modules/jooby-csl/pom.xml | 2 +- modules/jooby-dist/pom.xml | 2 +- modules/jooby-ebean/README.md | 6 +++--- modules/jooby-ebean/pom.xml | 2 +- modules/jooby-ehcache/README.md | 8 ++++---- modules/jooby-ehcache/pom.xml | 2 +- modules/jooby-elasticsearch/README.md | 6 +++--- modules/jooby-elasticsearch/pom.xml | 2 +- modules/jooby-eventbus/README.md | 6 +++--- modules/jooby-eventbus/pom.xml | 2 +- modules/jooby-executor/README.md | 6 +++--- modules/jooby-executor/pom.xml | 2 +- modules/jooby-filewatcher/README.md | 6 +++--- modules/jooby-filewatcher/pom.xml | 2 +- modules/jooby-flyway/README.md | 6 +++--- modules/jooby-flyway/pom.xml | 2 +- modules/jooby-frontend/README.md | 6 +++--- modules/jooby-frontend/pom.xml | 2 +- modules/jooby-ftl/README.md | 6 +++--- modules/jooby-ftl/pom.xml | 2 +- modules/jooby-gradle-plugin/README.md | 6 +++--- modules/jooby-gradle-plugin/pom.xml | 2 +- modules/jooby-gson/README.md | 6 +++--- modules/jooby-gson/pom.xml | 2 +- modules/jooby-guava-cache/README.md | 8 ++++---- modules/jooby-guava-cache/pom.xml | 2 +- modules/jooby-hazelcast/README.md | 8 ++++---- modules/jooby-hazelcast/pom.xml | 2 +- modules/jooby-hbm/README.md | 6 +++--- modules/jooby-hbm/pom.xml | 2 +- modules/jooby-hbs/README.md | 6 +++--- modules/jooby-hbs/pom.xml | 2 +- modules/jooby-hbv/README.md | 6 +++--- modules/jooby-hbv/pom.xml | 2 +- modules/jooby-jackson/README.md | 6 +++--- modules/jooby-jackson/pom.xml | 2 +- modules/jooby-jade/README.md | 6 +++--- modules/jooby-jade/pom.xml | 2 +- modules/jooby-jdbc/README.md | 6 +++--- modules/jooby-jdbc/pom.xml | 2 +- modules/jooby-jdbi/README.md | 6 +++--- modules/jooby-jdbi/pom.xml | 2 +- modules/jooby-jdbi3/README.md | 6 +++--- modules/jooby-jdbi3/pom.xml | 2 +- modules/jooby-jedis/README.md | 8 ++++---- modules/jooby-jedis/pom.xml | 2 +- modules/jooby-jetty/README.md | 6 +++--- modules/jooby-jetty/pom.xml | 2 +- modules/jooby-jongo/README.md | 6 +++--- modules/jooby-jongo/pom.xml | 2 +- modules/jooby-jooq/README.md | 6 +++--- modules/jooby-jooq/pom.xml | 2 +- modules/jooby-lang-kotlin/README.md | 6 +++--- modules/jooby-lang-kotlin/pom.xml | 2 +- modules/jooby-livereload/README.md | 6 +++--- modules/jooby-livereload/pom.xml | 2 +- modules/jooby-maven-plugin/README.md | 10 +++++----- modules/jooby-maven-plugin/pom.xml | 2 +- modules/jooby-metrics/README.md | 6 +++--- modules/jooby-metrics/pom.xml | 2 +- modules/jooby-micrometer/README.md | 15 ++++++++++++--- modules/jooby-micrometer/pom.xml | 2 +- modules/jooby-mongodb-rx/README.md | 6 +++--- modules/jooby-mongodb-rx/pom.xml | 2 +- modules/jooby-mongodb/README.md | 8 ++++---- modules/jooby-mongodb/pom.xml | 2 +- modules/jooby-morphia/README.md | 6 +++--- modules/jooby-morphia/pom.xml | 2 +- modules/jooby-neo4j/README.md | 8 ++++---- modules/jooby-neo4j/pom.xml | 2 +- modules/jooby-netty/README.md | 6 +++--- modules/jooby-netty/pom.xml | 2 +- modules/jooby-pac4j/README.md | 6 +++--- modules/jooby-pac4j/pom.xml | 2 +- modules/jooby-pac4j2/README.md | 6 +++--- modules/jooby-pac4j2/pom.xml | 2 +- modules/jooby-pebble/README.md | 6 +++--- modules/jooby-pebble/pom.xml | 2 +- modules/jooby-quartz/README.md | 6 +++--- modules/jooby-quartz/pom.xml | 2 +- modules/jooby-querydsl/README.md | 6 +++--- modules/jooby-querydsl/pom.xml | 2 +- modules/jooby-reactor/README.md | 6 +++--- modules/jooby-reactor/pom.xml | 2 +- modules/jooby-requery/README.md | 6 +++--- modules/jooby-requery/pom.xml | 2 +- modules/jooby-rocker/README.md | 6 +++--- modules/jooby-rocker/pom.xml | 2 +- modules/jooby-run/pom.xml | 2 +- modules/jooby-rxjava-jdbc/README.md | 6 +++--- modules/jooby-rxjava-jdbc/pom.xml | 2 +- modules/jooby-rxjava/README.md | 6 +++--- modules/jooby-rxjava/pom.xml | 2 +- modules/jooby-scanner/README.md | 6 +++--- modules/jooby-scanner/pom.xml | 2 +- modules/jooby-servlet/README.md | 4 ++-- modules/jooby-servlet/pom.xml | 2 +- modules/jooby-sitemap/README.md | 6 +++--- modules/jooby-sitemap/pom.xml | 2 +- modules/jooby-spymemcached/README.md | 8 ++++---- modules/jooby-spymemcached/pom.xml | 2 +- modules/jooby-thymeleaf/README.md | 6 +++--- modules/jooby-thymeleaf/pom.xml | 2 +- modules/jooby-unbescape/README.md | 6 +++--- modules/jooby-unbescape/pom.xml | 2 +- modules/jooby-undertow/README.md | 6 +++--- modules/jooby-undertow/pom.xml | 2 +- modules/jooby-whoops/README.md | 6 +++--- modules/jooby-whoops/pom.xml | 2 +- modules/pom.xml | 2 +- pom.xml | 2 +- 177 files changed, 366 insertions(+), 357 deletions(-) diff --git a/README.md b/README.md index 935899f837..bc0cc50564 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby.svg)](https://javadoc.io/doc/org.jooby/jooby/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby.svg)](https://javadoc.io/doc/org.jooby/jooby/1.5.1) [![Become a Patreon](https://img.shields.io/badge/patreon-donate-orange.svg)](https://patreon.com/edgarespina) [![Build Status](https://travis-ci.org/jooby-project/jooby.svg?branch=master)](https://travis-ci.org/jooby-project/jooby) [![coveralls.io](https://img.shields.io/coveralls/jooby-project/jooby.svg)](https://coveralls.io/r/jooby-project/jooby?branch=master) diff --git a/jooby/pom.xml b/jooby/pom.xml index 552a2d1d56..701c0cfea7 100644 --- a/jooby/pom.xml +++ b/jooby/pom.xml @@ -6,7 +6,7 @@ org.jooby jooby-project - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/coverage-report/pom.xml b/modules/coverage-report/pom.xml index f1bdfc512e..12ec69b89c 100644 --- a/modules/coverage-report/pom.xml +++ b/modules/coverage-report/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-akka/README.md b/modules/jooby-akka/README.md index 37c87939f5..c2354c38b4 100644 --- a/modules/jooby-akka/README.md +++ b/modules/jooby-akka/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-akka/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-akka) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-akka.svg)](https://javadoc.io/doc/org.jooby/jooby-akka/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-akka/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-akka/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-akka.svg)](https://javadoc.io/doc/org.jooby/jooby-akka/1.5.1) [![jooby-akka website](https://img.shields.io/badge/jooby-akka-brightgreen.svg)](http://jooby.org/doc/akka) # akka @@ -15,7 +15,7 @@ Small module to build concurrent & distributed applications via [Akka](http://ak org.jooby jooby-akka - 1.5.0 + 1.5.1 ``` diff --git a/modules/jooby-akka/pom.xml b/modules/jooby-akka/pom.xml index 87dac7660f..0b15601c5a 100644 --- a/modules/jooby-akka/pom.xml +++ b/modules/jooby-akka/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-apitool/README.md b/modules/jooby-apitool/README.md index 4e8fd6c06a..b6cfc9e265 100644 --- a/modules/jooby-apitool/README.md +++ b/modules/jooby-apitool/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-apitool/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-apitool) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-apitool.svg)](https://javadoc.io/doc/org.jooby/jooby-apitool/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-apitool/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-apitool/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-apitool.svg)](https://javadoc.io/doc/org.jooby/jooby-apitool/1.5.1) [![jooby-apitool website](https://img.shields.io/badge/jooby-apitool-brightgreen.svg)](http://jooby.org/doc/apitool) # API tool @@ -23,7 +23,7 @@ This module generates live documentation from your HTTP API (source code). org.jooby jooby-apitool - 1.5.0 + 1.5.1 ``` @@ -187,7 +187,7 @@ Go to ```build.gradle``` and add these lines: ```gradke buildscript { dependencies { - classpath group: 'org.jooby', name: 'jooby-gradle-plugin', version: '1.5.0' + classpath group: 'org.jooby', name: 'jooby-gradle-plugin', version: '1.5.1' } } apply plugin: 'jooby' diff --git a/modules/jooby-apitool/pom.xml b/modules/jooby-apitool/pom.xml index e2d6e35cb9..d10b77cbde 100644 --- a/modules/jooby-apitool/pom.xml +++ b/modules/jooby-apitool/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-archetype/pom.xml b/modules/jooby-archetype/pom.xml index 4fa804482e..60dd0e49a7 100644 --- a/modules/jooby-archetype/pom.xml +++ b/modules/jooby-archetype/pom.xml @@ -7,7 +7,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 jooby-archetype diff --git a/modules/jooby-assets-autoprefixer/README.md b/modules/jooby-assets-autoprefixer/README.md index e7f15dc18c..3b992c2a4b 100644 --- a/modules/jooby-assets-autoprefixer/README.md +++ b/modules/jooby-assets-autoprefixer/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-assets-autoprefixer/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-assets-autoprefixer) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-autoprefixer.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-autoprefixer/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-autoprefixer/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-autoprefixer/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-autoprefixer.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-autoprefixer/1.5.1) [![jooby-assets-autoprefixer website](https://img.shields.io/badge/jooby-assets-autoprefixer-brightgreen.svg)](http://jooby.org/doc/assets-autoprefixer) # auto-prefixer @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-auto-prefixer - 1.5.0 + 1.5.1 provided ``` diff --git a/modules/jooby-assets-autoprefixer/pom.xml b/modules/jooby-assets-autoprefixer/pom.xml index d79c8634a5..703a16e95c 100644 --- a/modules/jooby-assets-autoprefixer/pom.xml +++ b/modules/jooby-assets-autoprefixer/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-assets-babel/README.md b/modules/jooby-assets-babel/README.md index 1d27c858c4..7395cc34b1 100644 --- a/modules/jooby-assets-babel/README.md +++ b/modules/jooby-assets-babel/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-assets-babel/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-assets-babel) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-babel.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-babel/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-babel/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-babel/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-babel.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-babel/1.5.1) [![jooby-assets-babel website](https://img.shields.io/badge/jooby-assets-babel-brightgreen.svg)](http://jooby.org/doc/assets-babel) # babel @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-babel - 1.5.0 + 1.5.1 provided ``` @@ -38,7 +38,7 @@ assets { org.jooby jooby-assets-babel - 1.5.0 + 1.5.1 provided ``` diff --git a/modules/jooby-assets-babel/pom.xml b/modules/jooby-assets-babel/pom.xml index b3a865c469..5a937c3342 100644 --- a/modules/jooby-assets-babel/pom.xml +++ b/modules/jooby-assets-babel/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-assets-clean-css/README.md b/modules/jooby-assets-clean-css/README.md index 8cbeb64401..14c548d2e1 100644 --- a/modules/jooby-assets-clean-css/README.md +++ b/modules/jooby-assets-clean-css/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-assets-clean-css/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-assets-clean-css) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-clean-css.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-clean-css/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-clean-css/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-clean-css/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-clean-css.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-clean-css/1.5.1) [![jooby-assets-clean-css website](https://img.shields.io/badge/jooby-assets-clean-css-brightgreen.svg)](http://jooby.org/doc/assets-clean-css) # clean-css @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-clean-css - 1.5.0 + 1.5.1 provided ``` diff --git a/modules/jooby-assets-clean-css/pom.xml b/modules/jooby-assets-clean-css/pom.xml index 8c94aaa030..c575cd36a9 100644 --- a/modules/jooby-assets-clean-css/pom.xml +++ b/modules/jooby-assets-clean-css/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-assets-closure-compiler/README.md b/modules/jooby-assets-closure-compiler/README.md index 749e324b06..865f70a679 100644 --- a/modules/jooby-assets-closure-compiler/README.md +++ b/modules/jooby-assets-closure-compiler/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-assets-closure-compiler/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-assets-closure-compiler) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-closure-compiler.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-closure-compiler/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-closure-compiler/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-closure-compiler/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-closure-compiler.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-closure-compiler/1.5.1) [![jooby-assets-closure-compiler website](https://img.shields.io/badge/jooby-assets-closure-compiler-brightgreen.svg)](http://jooby.org/doc/assets-closure-compiler) # closure-compiler @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-closure-compiler - 1.5.0 + 1.5.1 provided ``` diff --git a/modules/jooby-assets-closure-compiler/pom.xml b/modules/jooby-assets-closure-compiler/pom.xml index 49ceb9a193..b933ce10ed 100644 --- a/modules/jooby-assets-closure-compiler/pom.xml +++ b/modules/jooby-assets-closure-compiler/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-assets-csslint/README.md b/modules/jooby-assets-csslint/README.md index 99d15299e7..b085a5cb4c 100644 --- a/modules/jooby-assets-csslint/README.md +++ b/modules/jooby-assets-csslint/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-assets-csslint/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-assets-csslint) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-csslint.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-csslint/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-csslint/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-csslint/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-csslint.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-csslint/1.5.1) [![jooby-assets-csslint website](https://img.shields.io/badge/jooby-assets-csslint-brightgreen.svg)](http://jooby.org/doc/assets-csslint) # csslint @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-csslint - 1.5.0 + 1.5.1 provided ``` diff --git a/modules/jooby-assets-csslint/pom.xml b/modules/jooby-assets-csslint/pom.xml index 4d8c6d4644..88e1f55062 100644 --- a/modules/jooby-assets-csslint/pom.xml +++ b/modules/jooby-assets-csslint/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-assets-j2v8/pom.xml b/modules/jooby-assets-j2v8/pom.xml index e07ac2505c..edddbcf504 100644 --- a/modules/jooby-assets-j2v8/pom.xml +++ b/modules/jooby-assets-j2v8/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-assets-jscs/README.md b/modules/jooby-assets-jscs/README.md index eb36431d87..9269d9b181 100644 --- a/modules/jooby-assets-jscs/README.md +++ b/modules/jooby-assets-jscs/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-assets-jscs/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-assets-jscs) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-jscs.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-jscs/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-jscs/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-jscs/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-jscs.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-jscs/1.5.1) [![jooby-assets-jscs website](https://img.shields.io/badge/jooby-assets-jscs-brightgreen.svg)](http://jooby.org/doc/assets-jscs) # jscs @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-jscs - 1.5.0 + 1.5.1 provided ``` diff --git a/modules/jooby-assets-jscs/pom.xml b/modules/jooby-assets-jscs/pom.xml index 73e2dd66c5..e968cb442c 100644 --- a/modules/jooby-assets-jscs/pom.xml +++ b/modules/jooby-assets-jscs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-assets-jshint/README.md b/modules/jooby-assets-jshint/README.md index 4031699da2..7a2350c97a 100644 --- a/modules/jooby-assets-jshint/README.md +++ b/modules/jooby-assets-jshint/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-assets-jshint/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-assets-jshint) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-jshint.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-jshint/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-jshint/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-jshint/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-jshint.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-jshint/1.5.1) [![jooby-assets-jshint website](https://img.shields.io/badge/jooby-assets-jshint-brightgreen.svg)](http://jooby.org/doc/assets-jshint) # jshint @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-jshint - 1.5.0 + 1.5.1 provided ``` diff --git a/modules/jooby-assets-jshint/pom.xml b/modules/jooby-assets-jshint/pom.xml index 66800079c4..0332c79e02 100644 --- a/modules/jooby-assets-jshint/pom.xml +++ b/modules/jooby-assets-jshint/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-assets-less/README.md b/modules/jooby-assets-less/README.md index d437ed3754..37fde634d7 100644 --- a/modules/jooby-assets-less/README.md +++ b/modules/jooby-assets-less/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-assets-less/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-assets-less) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-less.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-less/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-less/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-less/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-less.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-less/1.5.1) [![jooby-assets-less website](https://img.shields.io/badge/jooby-assets-less-brightgreen.svg)](http://jooby.org/doc/assets-less) # less @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-less - 1.5.0 + 1.5.1 provided ``` diff --git a/modules/jooby-assets-less/pom.xml b/modules/jooby-assets-less/pom.xml index 8ae78daeef..23ca56d954 100644 --- a/modules/jooby-assets-less/pom.xml +++ b/modules/jooby-assets-less/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-assets-less4j/README.md b/modules/jooby-assets-less4j/README.md index f710980658..c0716fae08 100644 --- a/modules/jooby-assets-less4j/README.md +++ b/modules/jooby-assets-less4j/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-assets-less4j/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-assets-less4j) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-less4j.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-less4j/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-less4j/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-less4j/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-less4j.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-less4j/1.5.1) [![jooby-assets-less4j website](https://img.shields.io/badge/jooby-assets-less4j-brightgreen.svg)](http://jooby.org/doc/assets-less4j) # less4j @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-less4j - 1.5.0 + 1.5.1 provided ``` diff --git a/modules/jooby-assets-less4j/pom.xml b/modules/jooby-assets-less4j/pom.xml index ad1c4b6dad..1f9915337d 100644 --- a/modules/jooby-assets-less4j/pom.xml +++ b/modules/jooby-assets-less4j/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-assets-ng-annotate/README.md b/modules/jooby-assets-ng-annotate/README.md index d445bf92e7..0020d1523e 100644 --- a/modules/jooby-assets-ng-annotate/README.md +++ b/modules/jooby-assets-ng-annotate/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-assets-ng-annotate/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-assets-ng-annotate) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-ng-annotate.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-ng-annotate/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-ng-annotate/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-ng-annotate/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-ng-annotate.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-ng-annotate/1.5.1) [![jooby-assets-ng-annotate website](https://img.shields.io/badge/jooby-assets-ng-annotate-brightgreen.svg)](http://jooby.org/doc/assets-ng-annotate) # ng-annotate @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-ng-annotate - 1.5.0 + 1.5.1 provided ``` diff --git a/modules/jooby-assets-ng-annotate/pom.xml b/modules/jooby-assets-ng-annotate/pom.xml index f7d3991f3f..ebebbbe735 100644 --- a/modules/jooby-assets-ng-annotate/pom.xml +++ b/modules/jooby-assets-ng-annotate/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-assets-nodejs/pom.xml b/modules/jooby-assets-nodejs/pom.xml index efd0d65913..8c3e98731f 100644 --- a/modules/jooby-assets-nodejs/pom.xml +++ b/modules/jooby-assets-nodejs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-assets-requirejs/README.md b/modules/jooby-assets-requirejs/README.md index d404b4491b..3f4c804d53 100644 --- a/modules/jooby-assets-requirejs/README.md +++ b/modules/jooby-assets-requirejs/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-assets-requirejs/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-assets-requirejs) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-requirejs.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-requirejs/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-requirejs/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-requirejs/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-requirejs.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-requirejs/1.5.1) [![jooby-assets-requirejs website](https://img.shields.io/badge/jooby-assets-requirejs-brightgreen.svg)](http://jooby.org/doc/assets-requirejs) # rjs @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-requirejs - 1.5.0 + 1.5.1 provided ``` diff --git a/modules/jooby-assets-requirejs/pom.xml b/modules/jooby-assets-requirejs/pom.xml index a03f19abc4..b8cbed5fda 100644 --- a/modules/jooby-assets-requirejs/pom.xml +++ b/modules/jooby-assets-requirejs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-assets-rollup/README.md b/modules/jooby-assets-rollup/README.md index ce29e76d24..64dc87d1af 100644 --- a/modules/jooby-assets-rollup/README.md +++ b/modules/jooby-assets-rollup/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-assets-rollup/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-assets-rollup) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-rollup.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-rollup/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-rollup/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-rollup/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-rollup.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-rollup/1.5.1) [![jooby-assets-rollup website](https://img.shields.io/badge/jooby-assets-rollup-brightgreen.svg)](http://jooby.org/doc/assets-rollup) # rollup.js @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-rollup.js - 1.5.0 + 1.5.1 provided ``` diff --git a/modules/jooby-assets-rollup/pom.xml b/modules/jooby-assets-rollup/pom.xml index 23311979eb..aad4e5eca2 100644 --- a/modules/jooby-assets-rollup/pom.xml +++ b/modules/jooby-assets-rollup/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-assets-sass/README.md b/modules/jooby-assets-sass/README.md index 8478250cb8..ff0009a648 100644 --- a/modules/jooby-assets-sass/README.md +++ b/modules/jooby-assets-sass/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-assets-sass/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-assets-sass) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-sass.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-sass/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-sass/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-sass/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-sass.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-sass/1.5.1) [![jooby-assets-sass website](https://img.shields.io/badge/jooby-assets-sass-brightgreen.svg)](http://jooby.org/doc/assets-sass) # sass @@ -13,7 +13,7 @@ org.jooby jooby-assets-sass - 1.5.0 + 1.5.1 provided ``` diff --git a/modules/jooby-assets-sass/pom.xml b/modules/jooby-assets-sass/pom.xml index 8d75e73e5c..45198e21bf 100644 --- a/modules/jooby-assets-sass/pom.xml +++ b/modules/jooby-assets-sass/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-assets-svg-sprites/README.md b/modules/jooby-assets-svg-sprites/README.md index b70ffa082d..ad34a4839f 100644 --- a/modules/jooby-assets-svg-sprites/README.md +++ b/modules/jooby-assets-svg-sprites/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-assets-svg-sprites/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-assets-svg-sprites) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-svg-sprites.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-svg-sprites/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-svg-sprites/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-svg-sprites/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-svg-sprites.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-svg-sprites/1.5.1) [![jooby-assets-svg-sprites website](https://img.shields.io/badge/jooby-assets-svg-sprites-brightgreen.svg)](http://jooby.org/doc/assets-svg-sprites) # svg-sprites @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-svg-sprites - 1.5.0 + 1.5.1 provided ``` diff --git a/modules/jooby-assets-svg-sprites/pom.xml b/modules/jooby-assets-svg-sprites/pom.xml index a703117158..081ae8db50 100644 --- a/modules/jooby-assets-svg-sprites/pom.xml +++ b/modules/jooby-assets-svg-sprites/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-assets-svg-symbol/README.md b/modules/jooby-assets-svg-symbol/README.md index 2a2a33c7ac..5368a43b1f 100644 --- a/modules/jooby-assets-svg-symbol/README.md +++ b/modules/jooby-assets-svg-symbol/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-assets-svg-symbol/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-assets-svg-symbol) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-svg-symbol.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-svg-symbol/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-svg-symbol/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-svg-symbol/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-svg-symbol.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-svg-symbol/1.5.1) [![jooby-assets-svg-symbol website](https://img.shields.io/badge/jooby-assets-svg-symbol-brightgreen.svg)](http://jooby.org/doc/assets-svg-symbol) # svg-symbol @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-svg-symbol - 1.5.0 + 1.5.1 provided ``` diff --git a/modules/jooby-assets-svg-symbol/pom.xml b/modules/jooby-assets-svg-symbol/pom.xml index bff94b4b57..b7f0bbfa1a 100644 --- a/modules/jooby-assets-svg-symbol/pom.xml +++ b/modules/jooby-assets-svg-symbol/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-assets-uglify/README.md b/modules/jooby-assets-uglify/README.md index ba90ce093d..d556cdf7a7 100644 --- a/modules/jooby-assets-uglify/README.md +++ b/modules/jooby-assets-uglify/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-assets-uglify/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-assets-uglify) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-uglify.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-uglify/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-uglify/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-uglify/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-uglify.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-uglify/1.5.1) [![jooby-assets-uglify website](https://img.shields.io/badge/jooby-assets-uglify-brightgreen.svg)](http://jooby.org/doc/assets-uglify) # uglify @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-uglify - 1.5.0 + 1.5.1 provided ``` diff --git a/modules/jooby-assets-uglify/pom.xml b/modules/jooby-assets-uglify/pom.xml index 33941f9d91..f45b07b0d8 100644 --- a/modules/jooby-assets-uglify/pom.xml +++ b/modules/jooby-assets-uglify/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-assets-yui-compressor/README.md b/modules/jooby-assets-yui-compressor/README.md index f8fbaa13d0..c0417c35bf 100644 --- a/modules/jooby-assets-yui-compressor/README.md +++ b/modules/jooby-assets-yui-compressor/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-assets-yui-compressor/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-assets-yui-compressor) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-yui-compressor.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-yui-compressor/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-yui-compressor/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-yui-compressor/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-yui-compressor.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-yui-compressor/1.5.1) [![jooby-assets-yui-compressor website](https://img.shields.io/badge/jooby-assets-yui-compressor-brightgreen.svg)](http://jooby.org/doc/assets-yui-compressor) # yui-css @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-yui-compressor - 1.5.0 + 1.5.1 provided ``` diff --git a/modules/jooby-assets-yui-compressor/pom.xml b/modules/jooby-assets-yui-compressor/pom.xml index 4b6eb787ee..d4652a3f87 100644 --- a/modules/jooby-assets-yui-compressor/pom.xml +++ b/modules/jooby-assets-yui-compressor/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-assets/README.md b/modules/jooby-assets/README.md index 5f8476971d..0a91e890eb 100644 --- a/modules/jooby-assets/README.md +++ b/modules/jooby-assets/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-assets/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-assets) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets.svg)](https://javadoc.io/doc/org.jooby/jooby-assets/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets.svg)](https://javadoc.io/doc/org.jooby/jooby-assets/1.5.1) [![jooby-assets website](https://img.shields.io/badge/jooby-assets-brightgreen.svg)](http://jooby.org/doc/assets) # assets @@ -13,7 +13,7 @@ A variety of processors are available: ([jshint](https://github.com/jooby-projec org.jooby jooby-assets - 1.5.0 + 1.5.1 ``` diff --git a/modules/jooby-assets/pom.xml b/modules/jooby-assets/pom.xml index b11822538c..086e2f1f0a 100644 --- a/modules/jooby-assets/pom.xml +++ b/modules/jooby-assets/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-aws/README.md b/modules/jooby-aws/README.md index bf703d8654..53ee0c1f05 100644 --- a/modules/jooby-aws/README.md +++ b/modules/jooby-aws/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-aws/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-aws) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-aws.svg)](https://javadoc.io/doc/org.jooby/jooby-aws/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-aws/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-aws/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-aws.svg)](https://javadoc.io/doc/org.jooby/jooby-aws/1.5.1) [![jooby-aws website](https://img.shields.io/badge/jooby-aws-brightgreen.svg)](http://jooby.org/doc/aws) # aws @@ -15,7 +15,7 @@ Small utility module that exports ```AmazonWebServiceClient``` services. org.jooby jooby-aws - 1.5.0 + 1.5.1 ``` diff --git a/modules/jooby-aws/pom.xml b/modules/jooby-aws/pom.xml index efd02bacb8..fe1baec4cd 100644 --- a/modules/jooby-aws/pom.xml +++ b/modules/jooby-aws/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-banner/README.md b/modules/jooby-banner/README.md index 1efd4dc7d3..a6cf7b1553 100644 --- a/modules/jooby-banner/README.md +++ b/modules/jooby-banner/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-banner/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-banner) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-banner.svg)](https://javadoc.io/doc/org.jooby/jooby-banner/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-banner/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-banner/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-banner.svg)](https://javadoc.io/doc/org.jooby/jooby-banner/1.5.1) [![jooby-banner website](https://img.shields.io/badge/jooby-banner-brightgreen.svg)](http://jooby.org/doc/banner) # banner @@ -11,7 +11,7 @@ Prints out an ASCII art banner on startup using org.jooby jooby-caffeine - 1.5.0 + 1.5.1 ``` diff --git a/modules/jooby-caffeine/pom.xml b/modules/jooby-caffeine/pom.xml index f601fe1543..5202ced02e 100644 --- a/modules/jooby-caffeine/pom.xml +++ b/modules/jooby-caffeine/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-camel/README.md b/modules/jooby-camel/README.md index 255e3048f2..1c86963aef 100644 --- a/modules/jooby-camel/README.md +++ b/modules/jooby-camel/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-camel/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-camel) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-camel.svg)](https://javadoc.io/doc/org.jooby/jooby-camel/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-camel/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-camel/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-camel.svg)](https://javadoc.io/doc/org.jooby/jooby-camel/1.5.1) [![jooby-camel website](https://img.shields.io/badge/jooby-camel-brightgreen.svg)](http://jooby.org/doc/camel) # camel @@ -26,7 +26,7 @@ depend on [camel-guice](http://camel.apache.org/guice.html), but it provides sim org.jooby jooby-camel - 1.5.0 + 1.5.1 ``` diff --git a/modules/jooby-camel/pom.xml b/modules/jooby-camel/pom.xml index daef257c00..afdc2dcc23 100644 --- a/modules/jooby-camel/pom.xml +++ b/modules/jooby-camel/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-cassandra/README.md b/modules/jooby-cassandra/README.md index a6ef4bd2dc..673d1510a5 100644 --- a/modules/jooby-cassandra/README.md +++ b/modules/jooby-cassandra/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-cassandra/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-cassandra) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-cassandra.svg)](https://javadoc.io/doc/org.jooby/jooby-cassandra/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-cassandra/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-cassandra/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-cassandra.svg)](https://javadoc.io/doc/org.jooby/jooby-cassandra/1.5.1) [![jooby-cassandra website](https://img.shields.io/badge/jooby-cassandra-brightgreen.svg)](http://jooby.org/doc/cassandra) # cassandra @@ -13,7 +13,7 @@ This module offers cassandra database org.jooby jooby-cassandra - 1.5.0 + 1.5.1 ``` @@ -211,7 +211,7 @@ A [Session.Store](/apidocs/org/jooby/cassandra/CassandraSessionStore.html) power org.jooby jooby-cassandra - 1.5.0 + 1.5.1 ``` diff --git a/modules/jooby-cassandra/pom.xml b/modules/jooby-cassandra/pom.xml index e060e7d0c5..8745408690 100644 --- a/modules/jooby-cassandra/pom.xml +++ b/modules/jooby-cassandra/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-commons-email/README.md b/modules/jooby-commons-email/README.md index 1056790be9..ba3cd20036 100644 --- a/modules/jooby-commons-email/README.md +++ b/modules/jooby-commons-email/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-commons-email/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-commons-email) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-commons-email.svg)](https://javadoc.io/doc/org.jooby/jooby-commons-email/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-commons-email/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-commons-email/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-commons-email.svg)](https://javadoc.io/doc/org.jooby/jooby-commons-email/1.5.1) [![jooby-commons-email website](https://img.shields.io/badge/jooby-commons-email-brightgreen.svg)](http://jooby.org/doc/commons-email) # commons-email @@ -19,7 +19,7 @@ Small but helpful module that provides access to ```Email``` instances. org.jooby jooby-commons-email - 1.5.0 + 1.5.1 ``` diff --git a/modules/jooby-commons-email/pom.xml b/modules/jooby-commons-email/pom.xml index f8cf9268b7..4411876f16 100644 --- a/modules/jooby-commons-email/pom.xml +++ b/modules/jooby-commons-email/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-consul/README.md b/modules/jooby-consul/README.md index 4b082ce356..cd34afbd76 100644 --- a/modules/jooby-consul/README.md +++ b/modules/jooby-consul/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-consul/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-consul) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-consul.svg)](https://javadoc.io/doc/org.jooby/jooby-consul/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-consul/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-consul/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-consul.svg)](https://javadoc.io/doc/org.jooby/jooby-consul/1.5.1) [![jooby-consul website](https://img.shields.io/badge/jooby-consul-brightgreen.svg)](http://jooby.org/doc/consul) # consul @@ -15,7 +15,7 @@ Also register the application as a service and setup a health check. org.jooby jooby-consul - 1.5.0 + 1.5.1 ``` diff --git a/modules/jooby-consul/pom.xml b/modules/jooby-consul/pom.xml index 218056b3ae..65dbc41536 100644 --- a/modules/jooby-consul/pom.xml +++ b/modules/jooby-consul/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-couchbase/README.md b/modules/jooby-couchbase/README.md index 5a01e1eafe..5d72a84e1d 100644 --- a/modules/jooby-couchbase/README.md +++ b/modules/jooby-couchbase/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-couchbase/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-couchbase) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-couchbase.svg)](https://javadoc.io/doc/org.jooby/jooby-couchbase/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-couchbase/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-couchbase/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-couchbase.svg)](https://javadoc.io/doc/org.jooby/jooby-couchbase/1.5.1) [![jooby-couchbase website](https://img.shields.io/badge/jooby-couchbase-brightgreen.svg)](http://jooby.org/doc/couchbase) # couchbase @@ -13,7 +13,7 @@ This module provides couchbase access via org.jooby jooby-couchbase - 1.5.0 + 1.5.1 ``` @@ -307,7 +307,7 @@ A [Session.Store](/apidocs/org/jooby/couchbase/CouchbaseSessionStore) powered by org.jooby jooby-couchbase - 1.5.0 + 1.5.1 ``` diff --git a/modules/jooby-couchbase/pom.xml b/modules/jooby-couchbase/pom.xml index 5234639a2f..6cc4f85543 100644 --- a/modules/jooby-couchbase/pom.xml +++ b/modules/jooby-couchbase/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-crash/README.md b/modules/jooby-crash/README.md index b05214043a..d514ddbc5f 100644 --- a/modules/jooby-crash/README.md +++ b/modules/jooby-crash/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-crash/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-crash) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-crash.svg)](https://javadoc.io/doc/org.jooby/jooby-crash/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-crash/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-crash/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-crash.svg)](https://javadoc.io/doc/org.jooby/jooby-crash/1.5.1) [![jooby-crash website](https://img.shields.io/badge/jooby-crash-brightgreen.svg)](http://jooby.org/doc/crash) # crash @@ -11,7 +11,7 @@ org.jooby jooby-crash - 1.5.0 + 1.5.1 ``` diff --git a/modules/jooby-crash/pom.xml b/modules/jooby-crash/pom.xml index 125bcb1890..436a470f8d 100644 --- a/modules/jooby-crash/pom.xml +++ b/modules/jooby-crash/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-csl/README.md b/modules/jooby-csl/README.md index 0cd4858c73..7dd5b0957d 100644 --- a/modules/jooby-csl/README.md +++ b/modules/jooby-csl/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-csl/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-csl) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-csl.svg)](https://javadoc.io/doc/org.jooby/jooby-csl/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-csl/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-csl/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-csl.svg)](https://javadoc.io/doc/org.jooby/jooby-csl/1.5.1) [![jooby-csl website](https://img.shields.io/badge/jooby-csl-brightgreen.svg)](http://jooby.org/doc/csl) # csl @@ -11,7 +11,7 @@ org.jooby jooby-csl - 1.5.0 + 1.5.1 ``` diff --git a/modules/jooby-csl/pom.xml b/modules/jooby-csl/pom.xml index 2102ecc639..835e512c1f 100644 --- a/modules/jooby-csl/pom.xml +++ b/modules/jooby-csl/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-dist/pom.xml b/modules/jooby-dist/pom.xml index 9ddc320876..6dd0f96b31 100644 --- a/modules/jooby-dist/pom.xml +++ b/modules/jooby-dist/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-ebean/README.md b/modules/jooby-ebean/README.md index 01a11f702b..1a9fab79e7 100644 --- a/modules/jooby-ebean/README.md +++ b/modules/jooby-ebean/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-ebean/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-ebean) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-ebean.svg)](https://javadoc.io/doc/org.jooby/jooby-ebean/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-ebean/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-ebean/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-ebean.svg)](https://javadoc.io/doc/org.jooby/jooby-ebean/1.5.1) [![jooby-ebean website](https://img.shields.io/badge/jooby-ebean-brightgreen.svg)](http://jooby.org/doc/ebean) # ebean @@ -17,7 +17,7 @@ Object-Relational-Mapping via [Ebean ORM](http://ebean-orm.github.io). It config org.jooby jooby-ebean - 1.5.0 + 1.5.1 ``` diff --git a/modules/jooby-ebean/pom.xml b/modules/jooby-ebean/pom.xml index f5a0d3ef5d..a8967953d2 100644 --- a/modules/jooby-ebean/pom.xml +++ b/modules/jooby-ebean/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-ehcache/README.md b/modules/jooby-ehcache/README.md index 706e0a3ce4..064d9aa50e 100644 --- a/modules/jooby-ehcache/README.md +++ b/modules/jooby-ehcache/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-ehcache/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-ehcache) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-ehcache.svg)](https://javadoc.io/doc/org.jooby/jooby-ehcache/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-ehcache/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-ehcache/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-ehcache.svg)](https://javadoc.io/doc/org.jooby/jooby-ehcache/1.5.1) [![jooby-ehcache website](https://img.shields.io/badge/jooby-ehcache-brightgreen.svg)](http://jooby.org/doc/ehcache) # ehcache @@ -16,7 +16,7 @@ Provides advanced cache features via [Ehcache](http://ehcache.org) org.jooby jooby-ehcache - 1.5.0 + 1.5.1 ``` @@ -120,7 +120,7 @@ Please note the ```default``` cache works as a template and isn't a real/usable org.jooby jooby-ehcache - 1.5.0 + 1.5.1 ``` diff --git a/modules/jooby-ehcache/pom.xml b/modules/jooby-ehcache/pom.xml index 64549299e9..f2e7fe5a5f 100644 --- a/modules/jooby-ehcache/pom.xml +++ b/modules/jooby-ehcache/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-elasticsearch/README.md b/modules/jooby-elasticsearch/README.md index 356facdefb..804dfd4aab 100644 --- a/modules/jooby-elasticsearch/README.md +++ b/modules/jooby-elasticsearch/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-elasticsearch/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-elasticsearch) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-elasticsearch.svg)](https://javadoc.io/doc/org.jooby/jooby-elasticsearch/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-elasticsearch/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-elasticsearch/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-elasticsearch.svg)](https://javadoc.io/doc/org.jooby/jooby-elasticsearch/1.5.1) [![jooby-elasticsearch website](https://img.shields.io/badge/jooby-elasticsearch-brightgreen.svg)](http://jooby.org/doc/elasticsearch) # elasticsearch @@ -15,7 +15,7 @@ Open Source, Distributed, RESTful Search Engine via [Elastic Search](https://git org.jooby jooby-elasticsearch - 1.5.0 + 1.5.1 ``` diff --git a/modules/jooby-elasticsearch/pom.xml b/modules/jooby-elasticsearch/pom.xml index 8d9a676906..350e25f43b 100644 --- a/modules/jooby-elasticsearch/pom.xml +++ b/modules/jooby-elasticsearch/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-eventbus/README.md b/modules/jooby-eventbus/README.md index 7e74f18a4b..95016c0d6e 100644 --- a/modules/jooby-eventbus/README.md +++ b/modules/jooby-eventbus/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-eventbus/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-eventbus) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-eventbus.svg)](https://javadoc.io/doc/org.jooby/jooby-eventbus/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-eventbus/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-eventbus/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-eventbus.svg)](https://javadoc.io/doc/org.jooby/jooby-eventbus/1.5.1) [![jooby-eventbus website](https://img.shields.io/badge/jooby-eventbus-brightgreen.svg)](http://jooby.org/doc/eventbus) # EventBus @@ -15,7 +15,7 @@ org.jooby jooby-eventbus - 1.5.0 + 1.5.1 ``` diff --git a/modules/jooby-eventbus/pom.xml b/modules/jooby-eventbus/pom.xml index e07ab5d33f..b39e2e7fb1 100644 --- a/modules/jooby-eventbus/pom.xml +++ b/modules/jooby-eventbus/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-executor/README.md b/modules/jooby-executor/README.md index a4fff6ece3..cda5f367af 100644 --- a/modules/jooby-executor/README.md +++ b/modules/jooby-executor/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-executor/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-executor) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-executor.svg)](https://javadoc.io/doc/org.jooby/jooby-executor/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-executor/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-executor/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-executor.svg)](https://javadoc.io/doc/org.jooby/jooby-executor/1.5.1) [![jooby-executor website](https://img.shields.io/badge/jooby-executor-brightgreen.svg)](http://jooby.org/doc/executor) # executor @@ -15,7 +15,7 @@ Manage the life cycle of {@link ExecutorService} and build async apps, schedule org.jooby jooby-executor - 1.5.0 + 1.5.1 ``` diff --git a/modules/jooby-executor/pom.xml b/modules/jooby-executor/pom.xml index cadd9dc9b0..de0fc57b64 100644 --- a/modules/jooby-executor/pom.xml +++ b/modules/jooby-executor/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-filewatcher/README.md b/modules/jooby-filewatcher/README.md index 4681c2291b..d7eac1254a 100644 --- a/modules/jooby-filewatcher/README.md +++ b/modules/jooby-filewatcher/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-filewatcher/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-filewatcher) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-filewatcher.svg)](https://javadoc.io/doc/org.jooby/jooby-filewatcher/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-filewatcher/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-filewatcher/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-filewatcher.svg)](https://javadoc.io/doc/org.jooby/jooby-filewatcher/1.5.1) [![jooby-filewatcher website](https://img.shields.io/badge/jooby-filewatcher-brightgreen.svg)](http://jooby.org/doc/filewatcher) # file watcher @@ -11,7 +11,7 @@ Watches for file system changes or event. It uses a watch service to monitor a d org.jooby jooby-file watcher - 1.5.0 + 1.5.1 ``` diff --git a/modules/jooby-filewatcher/pom.xml b/modules/jooby-filewatcher/pom.xml index 23731d1324..d39dfb9123 100644 --- a/modules/jooby-filewatcher/pom.xml +++ b/modules/jooby-filewatcher/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-flyway/README.md b/modules/jooby-flyway/README.md index 95af4ed405..48eaeb417a 100644 --- a/modules/jooby-flyway/README.md +++ b/modules/jooby-flyway/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-flyway/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-flyway) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-flyway.svg)](https://javadoc.io/doc/org.jooby/jooby-flyway/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-flyway/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-flyway/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-flyway.svg)](https://javadoc.io/doc/org.jooby/jooby-flyway/1.5.1) [![jooby-flyway website](https://img.shields.io/badge/jooby-flyway-brightgreen.svg)](http://jooby.org/doc/flyway) # flyway @@ -15,7 +15,7 @@ This module run [Flyway](http://flywaydb.org) on startup and apply database migr org.jooby jooby-flyway - 1.5.0 + 1.5.1 ``` diff --git a/modules/jooby-flyway/pom.xml b/modules/jooby-flyway/pom.xml index 4395f82f3c..f3988d5c56 100644 --- a/modules/jooby-flyway/pom.xml +++ b/modules/jooby-flyway/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-frontend/README.md b/modules/jooby-frontend/README.md index 36421d7822..71d3e1c4ee 100644 --- a/modules/jooby-frontend/README.md +++ b/modules/jooby-frontend/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-frontend/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-frontend) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-frontend.svg)](https://javadoc.io/doc/org.jooby/jooby-frontend/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-frontend/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-frontend/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-frontend.svg)](https://javadoc.io/doc/org.jooby/jooby-frontend/1.5.1) [![jooby-frontend website](https://img.shields.io/badge/jooby-frontend-brightgreen.svg)](http://jooby.org/doc/frontend) # frontend @@ -12,7 +12,7 @@ runs npm, w org.jooby jooby-frontend - 1.5.0 + 1.5.1 ``` diff --git a/modules/jooby-frontend/pom.xml b/modules/jooby-frontend/pom.xml index ca6270c4a8..4420460480 100644 --- a/modules/jooby-frontend/pom.xml +++ b/modules/jooby-frontend/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-ftl/README.md b/modules/jooby-ftl/README.md index 4e0cbc0ac4..0efa34a4fb 100644 --- a/modules/jooby-ftl/README.md +++ b/modules/jooby-ftl/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-ftl/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-ftl) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-ftl.svg)](https://javadoc.io/doc/org.jooby/jooby-ftl/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-ftl/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-ftl/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-ftl.svg)](https://javadoc.io/doc/org.jooby/jooby-ftl/1.5.1) [![jooby-ftl website](https://img.shields.io/badge/jooby-ftl-brightgreen.svg)](http://jooby.org/doc/ftl) # freemarker @@ -16,7 +16,7 @@ org.jooby jooby-ftl - 1.5.0 + 1.5.1 ``` diff --git a/modules/jooby-ftl/pom.xml b/modules/jooby-ftl/pom.xml index 3dfc4b4bb5..33d6739104 100644 --- a/modules/jooby-ftl/pom.xml +++ b/modules/jooby-ftl/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-gradle-plugin/README.md b/modules/jooby-gradle-plugin/README.md index e142a32336..bec5f71980 100644 --- a/modules/jooby-gradle-plugin/README.md +++ b/modules/jooby-gradle-plugin/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-gradle-plugin/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-gradle-plugin) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-gradle-plugin.svg)](https://javadoc.io/doc/org.jooby/jooby-gradle-plugin/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-gradle-plugin/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-gradle-plugin/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-gradle-plugin.svg)](https://javadoc.io/doc/org.jooby/jooby-gradle-plugin/1.5.1) [![jooby-gradle-plugin website](https://img.shields.io/badge/jooby-gradle-plugin-brightgreen.svg)](http://jooby.org/doc/gradle-plugin) # gradle plugin @@ -21,7 +21,7 @@ buildscript { dependencies { /** joobyRun */ - classpath group: 'org.jooby', name: 'jooby-gradle-plugin', version: '1.5.0' + classpath group: 'org.jooby', name: 'jooby-gradle-plugin', version: '1.5.1' } } diff --git a/modules/jooby-gradle-plugin/pom.xml b/modules/jooby-gradle-plugin/pom.xml index 7e9b9f040f..e4dde23192 100644 --- a/modules/jooby-gradle-plugin/pom.xml +++ b/modules/jooby-gradle-plugin/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-gson/README.md b/modules/jooby-gson/README.md index 3ee5202a6f..5fa460b263 100644 --- a/modules/jooby-gson/README.md +++ b/modules/jooby-gson/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-gson/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-gson) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-gson.svg)](https://javadoc.io/doc/org.jooby/jooby-gson/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-gson/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-gson/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-gson.svg)](https://javadoc.io/doc/org.jooby/jooby-gson/1.5.1) [![jooby-gson website](https://img.shields.io/badge/jooby-gson-brightgreen.svg)](http://jooby.org/doc/gson) # gson @@ -17,7 +17,7 @@ JSON support via [Gson](https://github.com/google/gson) library. org.jooby jooby-gson - 1.5.0 + 1.5.1 ``` diff --git a/modules/jooby-gson/pom.xml b/modules/jooby-gson/pom.xml index fc7c5798d1..1a12fbfa36 100644 --- a/modules/jooby-gson/pom.xml +++ b/modules/jooby-gson/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-guava-cache/README.md b/modules/jooby-guava-cache/README.md index c289126e79..68a84fd05a 100644 --- a/modules/jooby-guava-cache/README.md +++ b/modules/jooby-guava-cache/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-guava-cache/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-guava-cache) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-guava-cache.svg)](https://javadoc.io/doc/org.jooby/jooby-guava-cache/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-guava-cache/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-guava-cache/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-guava-cache.svg)](https://javadoc.io/doc/org.jooby/jooby-guava-cache/1.5.1) [![jooby-guava-cache website](https://img.shields.io/badge/jooby-guava-cache-brightgreen.svg)](http://jooby.org/doc/guava-cache) # guava-cache @@ -15,7 +15,7 @@ Provides cache solution and session storage via: Hibernate ORM org.jooby jooby-hbm - 1.5.0 + 1.5.1 ``` diff --git a/modules/jooby-hbm/pom.xml b/modules/jooby-hbm/pom.xml index 525924ec26..2fe344040b 100644 --- a/modules/jooby-hbm/pom.xml +++ b/modules/jooby-hbm/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-hbs/README.md b/modules/jooby-hbs/README.md index d7b4b19059..0fae09a14f 100644 --- a/modules/jooby-hbs/README.md +++ b/modules/jooby-hbs/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-hbs/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-hbs) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-hbs.svg)](https://javadoc.io/doc/org.jooby/jooby-hbs/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-hbs/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-hbs/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-hbs.svg)](https://javadoc.io/doc/org.jooby/jooby-hbs/1.5.1) [![jooby-hbs website](https://img.shields.io/badge/jooby-hbs-brightgreen.svg)](http://jooby.org/doc/hbs) # handlebars @@ -16,7 +16,7 @@ Logic-less and semantic templates via [Handlebars.java](https://github.com/jknac org.jooby jooby-hbs - 1.5.0 + 1.5.1 ``` diff --git a/modules/jooby-hbs/pom.xml b/modules/jooby-hbs/pom.xml index 354950404f..0f5830e547 100644 --- a/modules/jooby-hbs/pom.xml +++ b/modules/jooby-hbs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-hbv/README.md b/modules/jooby-hbv/README.md index e079bb1d89..cb077db971 100644 --- a/modules/jooby-hbv/README.md +++ b/modules/jooby-hbv/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-hbv/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-hbv) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-hbv.svg)](https://javadoc.io/doc/org.jooby/jooby-hbv/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-hbv/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-hbv/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-hbv.svg)](https://javadoc.io/doc/org.jooby/jooby-hbv/1.5.1) [![jooby-hbv website](https://img.shields.io/badge/jooby-hbv-brightgreen.svg)](http://jooby.org/doc/hbv) # hibernate validator @@ -17,7 +17,7 @@ Bean validation via [Hibernate Validator](hibernate.org/validator). org.jooby jooby-hbv - 1.5.0 + 1.5.1 ``` diff --git a/modules/jooby-hbv/pom.xml b/modules/jooby-hbv/pom.xml index 768c940598..6b7ed3fc7f 100644 --- a/modules/jooby-hbv/pom.xml +++ b/modules/jooby-hbv/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-jackson/README.md b/modules/jooby-jackson/README.md index d47f09a66a..1182650c32 100644 --- a/modules/jooby-jackson/README.md +++ b/modules/jooby-jackson/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-jackson/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-jackson) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jackson.svg)](https://javadoc.io/doc/org.jooby/jooby-jackson/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jackson/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jackson/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jackson.svg)](https://javadoc.io/doc/org.jooby/jooby-jackson/1.5.1) [![jooby-jackson website](https://img.shields.io/badge/jooby-jackson-brightgreen.svg)](http://jooby.org/doc/jackson) # jackson @@ -17,7 +17,7 @@ JSON support from the excellent [Jackson](https://github.com/FasterXML/jackson) org.jooby jooby-jackson - 1.5.0 + 1.5.1 ``` diff --git a/modules/jooby-jackson/pom.xml b/modules/jooby-jackson/pom.xml index 1b92f51530..4b8d64a5d8 100644 --- a/modules/jooby-jackson/pom.xml +++ b/modules/jooby-jackson/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-jade/README.md b/modules/jooby-jade/README.md index 13a85d89a2..6247c81c63 100644 --- a/modules/jooby-jade/README.md +++ b/modules/jooby-jade/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-jade/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-jade) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jade.svg)](https://javadoc.io/doc/org.jooby/jooby-jade/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jade/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jade/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jade.svg)](https://javadoc.io/doc/org.jooby/jooby-jade/1.5.1) [![jooby-jade website](https://img.shields.io/badge/jooby-jade-brightgreen.svg)](http://jooby.org/doc/jade) # jade @@ -16,7 +16,7 @@ org.jooby jooby-jade - 1.5.0 + 1.5.1 ``` diff --git a/modules/jooby-jade/pom.xml b/modules/jooby-jade/pom.xml index 65760cec89..ed4fa3d2c9 100644 --- a/modules/jooby-jade/pom.xml +++ b/modules/jooby-jade/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-jdbc/README.md b/modules/jooby-jdbc/README.md index 9c918215e3..5cb0c579f0 100644 --- a/modules/jooby-jdbc/README.md +++ b/modules/jooby-jdbc/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-jdbc/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-jdbc) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jdbc.svg)](https://javadoc.io/doc/org.jooby/jooby-jdbc/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jdbc/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jdbc/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jdbc.svg)](https://javadoc.io/doc/org.jooby/jooby-jdbc/1.5.1) [![jooby-jdbc website](https://img.shields.io/badge/jooby-jdbc-brightgreen.svg)](http://jooby.org/doc/jdbc) # jdbc @@ -15,7 +15,7 @@ Production-ready jdbc data source, powered by the [HikariCP](https://github.com/ org.jooby jooby-jdbc - 1.5.0 + 1.5.1 ``` diff --git a/modules/jooby-jdbc/pom.xml b/modules/jooby-jdbc/pom.xml index 8251bbded0..0b59606c57 100644 --- a/modules/jooby-jdbc/pom.xml +++ b/modules/jooby-jdbc/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-jdbi/README.md b/modules/jooby-jdbi/README.md index bc30ca5eec..0033746c6d 100644 --- a/modules/jooby-jdbi/README.md +++ b/modules/jooby-jdbi/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-jdbi/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-jdbi) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jdbi.svg)](https://javadoc.io/doc/org.jooby/jooby-jdbi/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jdbi/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jdbi/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jdbi.svg)](https://javadoc.io/doc/org.jooby/jooby-jdbi/1.5.1) [![jooby-jdbi website](https://img.shields.io/badge/jooby-jdbi-brightgreen.svg)](http://jooby.org/doc/jdbi) # jdbi @@ -21,7 +21,7 @@ org.jooby jooby-jdbi - 1.5.0 + 1.5.1 ``` diff --git a/modules/jooby-jdbi/pom.xml b/modules/jooby-jdbi/pom.xml index 0dda5dffc8..31eaaef20f 100644 --- a/modules/jooby-jdbi/pom.xml +++ b/modules/jooby-jdbi/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-jdbi3/README.md b/modules/jooby-jdbi3/README.md index c92dfb0803..78c91ec975 100644 --- a/modules/jooby-jdbi3/README.md +++ b/modules/jooby-jdbi3/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-jdbi3/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-jdbi3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jdbi3.svg)](https://javadoc.io/doc/org.jooby/jooby-jdbi3/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jdbi3/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jdbi3/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jdbi3.svg)](https://javadoc.io/doc/org.jooby/jooby-jdbi3/1.5.1) [![jooby-jdbi3 website](https://img.shields.io/badge/jooby-jdbi3-brightgreen.svg)](http://jooby.org/doc/jdbi3) # jdbi @@ -17,7 +17,7 @@ org.jooby jooby-jdbi3 - 1.5.0 + 1.5.1 ``` diff --git a/modules/jooby-jdbi3/pom.xml b/modules/jooby-jdbi3/pom.xml index 7b0aadc82d..8ef584e4f2 100644 --- a/modules/jooby-jdbi3/pom.xml +++ b/modules/jooby-jdbi3/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-jedis/README.md b/modules/jooby-jedis/README.md index c635f99ac7..3def1d7434 100644 --- a/modules/jooby-jedis/README.md +++ b/modules/jooby-jedis/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-jedis/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-jedis) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jedis.svg)](https://javadoc.io/doc/org.jooby/jooby-jedis/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jedis/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jedis/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jedis.svg)](https://javadoc.io/doc/org.jooby/jooby-jedis/1.5.1) [![jooby-jedis website](https://img.shields.io/badge/jooby-jedis-brightgreen.svg)](http://jooby.org/doc/jedis) # jedis @@ -11,7 +11,7 @@ org.jooby jooby-jedis - 1.5.0 + 1.5.1 ``` @@ -99,7 +99,7 @@ For more information about [Jedis](https://github.com/xetorthio/jedis) checkout org.jooby jooby-jedis - 1.5.0 + 1.5.1 ``` diff --git a/modules/jooby-jedis/pom.xml b/modules/jooby-jedis/pom.xml index 49d9fbf7a2..812b89a6fb 100644 --- a/modules/jooby-jedis/pom.xml +++ b/modules/jooby-jedis/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-jetty/README.md b/modules/jooby-jetty/README.md index 6bb722e559..7040b7620e 100644 --- a/modules/jooby-jetty/README.md +++ b/modules/jooby-jetty/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-jetty/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-jetty) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jetty.svg)](https://javadoc.io/doc/org.jooby/jooby-jetty/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jetty/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jetty/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jetty.svg)](https://javadoc.io/doc/org.jooby/jooby-jetty/1.5.1) [![jooby-jetty website](https://img.shields.io/badge/jooby-jetty-brightgreen.svg)](http://jooby.org/doc/jetty) # jetty @@ -15,7 +15,7 @@ org.jooby jooby-jetty - 1.5.0 + 1.5.1 ``` diff --git a/modules/jooby-jetty/pom.xml b/modules/jooby-jetty/pom.xml index 6291413a77..642fef9c63 100644 --- a/modules/jooby-jetty/pom.xml +++ b/modules/jooby-jetty/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-jongo/README.md b/modules/jooby-jongo/README.md index 8ff992f93e..57fd02ce58 100644 --- a/modules/jooby-jongo/README.md +++ b/modules/jooby-jongo/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-jongo/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-jongo) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jongo.svg)](https://javadoc.io/doc/org.jooby/jooby-jongo/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jongo/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jongo/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jongo.svg)](https://javadoc.io/doc/org.jooby/jooby-jongo/1.5.1) [![jooby-jongo website](https://img.shields.io/badge/jooby-jongo-brightgreen.svg)](http://jooby.org/doc/jongo) # jongo @@ -17,7 +17,7 @@ org.jooby jooby-jongo - 1.5.0 + 1.5.1 ``` diff --git a/modules/jooby-jongo/pom.xml b/modules/jooby-jongo/pom.xml index 2ae0ebbf25..eef89293b3 100644 --- a/modules/jooby-jongo/pom.xml +++ b/modules/jooby-jongo/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-jooq/README.md b/modules/jooby-jooq/README.md index 362cb01670..3157edda2e 100644 --- a/modules/jooby-jooq/README.md +++ b/modules/jooby-jooq/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-jooq/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-jooq) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jooq.svg)](https://javadoc.io/doc/org.jooby/jooby-jooq/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jooq/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jooq/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jooq.svg)](https://javadoc.io/doc/org.jooby/jooby-jooq/1.5.1) [![jooby-jooq website](https://img.shields.io/badge/jooby-jooq-brightgreen.svg)](http://jooby.org/doc/jooq) # jOOQ @@ -17,7 +17,7 @@ org.jooby jooby-jooq - 1.5.0 + 1.5.1 ``` diff --git a/modules/jooby-jooq/pom.xml b/modules/jooby-jooq/pom.xml index f61045f3f5..007f241174 100644 --- a/modules/jooby-jooq/pom.xml +++ b/modules/jooby-jooq/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-lang-kotlin/README.md b/modules/jooby-lang-kotlin/README.md index 12062f18fc..44fb367635 100644 --- a/modules/jooby-lang-kotlin/README.md +++ b/modules/jooby-lang-kotlin/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-lang-kotlin/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-lang-kotlin) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-lang-kotlin.svg)](https://javadoc.io/doc/org.jooby/jooby-lang-kotlin/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-lang-kotlin/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-lang-kotlin/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-lang-kotlin.svg)](https://javadoc.io/doc/org.jooby/jooby-lang-kotlin/1.5.1) [![jooby-lang-kotlin website](https://img.shields.io/badge/jooby-lang-kotlin-brightgreen.svg)](http://jooby.org/doc/lang-kotlin) # kotlin @@ -11,7 +11,7 @@ A tiny module that makes a Jooby application more Kotlin idiomatic. org.jooby jooby-lang-kotlin - 1.5.0 + 1.5.1 ``` diff --git a/modules/jooby-lang-kotlin/pom.xml b/modules/jooby-lang-kotlin/pom.xml index 79960f54f2..141475ca49 100644 --- a/modules/jooby-lang-kotlin/pom.xml +++ b/modules/jooby-lang-kotlin/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-livereload/README.md b/modules/jooby-livereload/README.md index 4827ab6688..5fbd5918e6 100644 --- a/modules/jooby-livereload/README.md +++ b/modules/jooby-livereload/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-livereload/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-livereload) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-livereload.svg)](https://javadoc.io/doc/org.jooby/jooby-livereload/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-livereload/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-livereload/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-livereload.svg)](https://javadoc.io/doc/org.jooby/jooby-livereload/1.5.1) [![jooby-livereload website](https://img.shields.io/badge/jooby-livereload-brightgreen.svg)](http://jooby.org/doc/livereload) # liveReload @@ -18,7 +18,7 @@ Even cooler, when you change a CSS file or an image, the browser is updated inst org.jooby jooby-livereload - 1.5.0 + 1.5.1 ``` diff --git a/modules/jooby-livereload/pom.xml b/modules/jooby-livereload/pom.xml index 3b9019aa54..c3d7177711 100644 --- a/modules/jooby-livereload/pom.xml +++ b/modules/jooby-livereload/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 jooby-livereload jooby-livereload diff --git a/modules/jooby-maven-plugin/README.md b/modules/jooby-maven-plugin/README.md index 29eca49944..3e12146f74 100644 --- a/modules/jooby-maven-plugin/README.md +++ b/modules/jooby-maven-plugin/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-maven-plugin/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-maven-plugin) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-maven-plugin.svg)](https://javadoc.io/doc/org.jooby/jooby-maven-plugin/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-maven-plugin/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-maven-plugin/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-maven-plugin.svg)](https://javadoc.io/doc/org.jooby/jooby-maven-plugin/1.5.1) [![jooby-maven-plugin website](https://img.shields.io/badge/jooby-maven-plugin-brightgreen.svg)](http://jooby.org/doc/maven-plugin) # maven @@ -43,7 +43,7 @@ It's worth to mention that dynamic reload of classes is done via [JBoss Modules] org.jooby jooby-maven-plugin - 1.5.0 + 1.5.1 ${application.class} @@ -117,7 +117,7 @@ List of commands to execute before starting the ```application```. Useful for [n org.jooby jooby-maven-plugin - 1.5.0 + 1.5.1 ${application.class} @@ -138,7 +138,7 @@ Set one or more ```JVM args```: org.jooby jooby-maven-plugin - 1.5.0 + 1.5.1 ${application.class} true diff --git a/modules/jooby-maven-plugin/pom.xml b/modules/jooby-maven-plugin/pom.xml index 7e4dcf8336..3a0e2f20b2 100644 --- a/modules/jooby-maven-plugin/pom.xml +++ b/modules/jooby-maven-plugin/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-metrics/README.md b/modules/jooby-metrics/README.md index c9aede6d79..72ce2cc0e2 100644 --- a/modules/jooby-metrics/README.md +++ b/modules/jooby-metrics/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-metrics/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-metrics) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-metrics.svg)](https://javadoc.io/doc/org.jooby/jooby-metrics/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-metrics/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-metrics/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-metrics.svg)](https://javadoc.io/doc/org.jooby/jooby-metrics/1.5.1) [![jooby-metrics website](https://img.shields.io/badge/jooby-metrics-brightgreen.svg)](http://jooby.org/doc/metrics) # metrics @@ -11,7 +11,7 @@ org.jooby jooby-metrics - 1.5.0 + 1.5.1 ``` diff --git a/modules/jooby-metrics/pom.xml b/modules/jooby-metrics/pom.xml index 7c7dc0e712..35c574dd28 100644 --- a/modules/jooby-metrics/pom.xml +++ b/modules/jooby-metrics/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-micrometer/README.md b/modules/jooby-micrometer/README.md index a397804867..558284adbd 100644 --- a/modules/jooby-micrometer/README.md +++ b/modules/jooby-micrometer/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-micrometer/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-micrometer) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-micrometer.svg)](https://javadoc.io/doc/org.jooby/jooby-micrometer/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-micrometer/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-micrometer/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-micrometer.svg)](https://javadoc.io/doc/org.jooby/jooby-micrometer/1.5.1) [![jooby-micrometer website](https://img.shields.io/badge/jooby-micrometer-brightgreen.svg)](http://jooby.org/doc/micrometer) # micrometer @@ -11,7 +11,7 @@ org.jooby jooby-micrometer - 1.5.0 + 1.5.1 ``` @@ -81,6 +81,15 @@ import org.jooby.micrometer.PrometheusHandler; } ``` +> NOTE: for each additional registry, you must add the corresponding `micrometer` depedency. For Prometheus: + +```xml + + io.micrometer + micrometer-registry-prometheus + +``` + ## timed annotation Jooby supports the ```io.micrometer.core.annotation.Timed``` annotation for MVC routes: diff --git a/modules/jooby-micrometer/pom.xml b/modules/jooby-micrometer/pom.xml index 240aa47590..6501374c93 100644 --- a/modules/jooby-micrometer/pom.xml +++ b/modules/jooby-micrometer/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-mongodb-rx/README.md b/modules/jooby-mongodb-rx/README.md index 47aa948b45..573351b6ee 100644 --- a/modules/jooby-mongodb-rx/README.md +++ b/modules/jooby-mongodb-rx/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-mongodb-rx/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-mongodb-rx) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-mongodb-rx.svg)](https://javadoc.io/doc/org.jooby/jooby-mongodb-rx/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-mongodb-rx/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-mongodb-rx/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-mongodb-rx.svg)](https://javadoc.io/doc/org.jooby/jooby-mongodb-rx/1.5.1) [![jooby-mongodb-rx website](https://img.shields.io/badge/jooby-mongodb-rx-brightgreen.svg)](http://jooby.org/doc/mongodb-rx) # mongodb-rx @@ -16,7 +16,7 @@ A MongoDB based driver providing support for React org.jooby jooby-mongodb-rx - 1.5.0 + 1.5.1 ``` diff --git a/modules/jooby-mongodb-rx/pom.xml b/modules/jooby-mongodb-rx/pom.xml index 0e0096b4cb..6b17b158d5 100644 --- a/modules/jooby-mongodb-rx/pom.xml +++ b/modules/jooby-mongodb-rx/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-mongodb/README.md b/modules/jooby-mongodb/README.md index 6da253ef4f..39fb0f42de 100644 --- a/modules/jooby-mongodb/README.md +++ b/modules/jooby-mongodb/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-mongodb/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-mongodb) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-mongodb.svg)](https://javadoc.io/doc/org.jooby/jooby-mongodb/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-mongodb/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-mongodb/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-mongodb.svg)](https://javadoc.io/doc/org.jooby/jooby-mongodb/1.5.1) [![jooby-mongodb website](https://img.shields.io/badge/jooby-mongodb-brightgreen.svg)](http://jooby.org/doc/mongodb) # mongodb driver @@ -17,7 +17,7 @@ org.jooby jooby-mongodb - 1.5.0 + 1.5.1 ``` @@ -117,7 +117,7 @@ Use [named](/apidocs/org/jooby/mongodb/Mongodb.html#-named) when you need two or org.jooby jooby-mongodb - 1.5.0 + 1.5.1 ``` diff --git a/modules/jooby-mongodb/pom.xml b/modules/jooby-mongodb/pom.xml index 94a9b50e6a..ec77345193 100644 --- a/modules/jooby-mongodb/pom.xml +++ b/modules/jooby-mongodb/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-morphia/README.md b/modules/jooby-morphia/README.md index 08854e6180..4805dd53c4 100644 --- a/modules/jooby-morphia/README.md +++ b/modules/jooby-morphia/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-morphia/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-morphia) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-morphia.svg)](https://javadoc.io/doc/org.jooby/jooby-morphia/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-morphia/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-morphia/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-morphia.svg)](https://javadoc.io/doc/org.jooby/jooby-morphia/1.5.1) [![jooby-morphia website](https://img.shields.io/badge/jooby-morphia-brightgreen.svg)](http://jooby.org/doc/morphia) # morphia @@ -16,7 +16,7 @@ Extends the [mongodb](https://github.com/jooby-project/jooby/tree/master/jooby-m org.jooby jooby-morphia - 1.5.0 + 1.5.1 ``` diff --git a/modules/jooby-morphia/pom.xml b/modules/jooby-morphia/pom.xml index 1e0a1543ae..33d7d5f2da 100644 --- a/modules/jooby-morphia/pom.xml +++ b/modules/jooby-morphia/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-neo4j/README.md b/modules/jooby-neo4j/README.md index 6886784ae5..3b6038afd0 100644 --- a/modules/jooby-neo4j/README.md +++ b/modules/jooby-neo4j/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-neo4j/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-neo4j) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-neo4j.svg)](https://javadoc.io/doc/org.jooby/jooby-neo4j/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-neo4j/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-neo4j/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-neo4j.svg)](https://javadoc.io/doc/org.jooby/jooby-neo4j/1.5.1) [![jooby-neo4j website](https://img.shields.io/badge/jooby-neo4j-brightgreen.svg)](http://jooby.org/doc/neo4j) # neo4j @@ -13,7 +13,7 @@ This module give you access to neo4j and org.jooby jooby-neo4j - 1.5.0 + 1.5.1 ``` @@ -176,7 +176,7 @@ A [Session.Store](/apidocs/org/jooby/neo4j/Neo4jSessionStore) powered by org.jooby jooby-neo4j - 1.5.0 + 1.5.1 ``` diff --git a/modules/jooby-neo4j/pom.xml b/modules/jooby-neo4j/pom.xml index 0fabdd2046..07ecdb8e62 100644 --- a/modules/jooby-neo4j/pom.xml +++ b/modules/jooby-neo4j/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-netty/README.md b/modules/jooby-netty/README.md index 780c999fbe..5a1c070bd6 100644 --- a/modules/jooby-netty/README.md +++ b/modules/jooby-netty/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-netty/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-netty) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-netty.svg)](https://javadoc.io/doc/org.jooby/jooby-netty/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-netty/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-netty/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-netty.svg)](https://javadoc.io/doc/org.jooby/jooby-netty/1.5.1) [![jooby-netty website](https://img.shields.io/badge/jooby-netty-brightgreen.svg)](http://jooby.org/doc/netty) # netty @@ -15,7 +15,7 @@ org.jooby jooby-netty - 1.5.0 + 1.5.1 ``` diff --git a/modules/jooby-netty/pom.xml b/modules/jooby-netty/pom.xml index 49e7596814..3d3e1fdecd 100644 --- a/modules/jooby-netty/pom.xml +++ b/modules/jooby-netty/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-pac4j/README.md b/modules/jooby-pac4j/README.md index fceae14ea1..650a870e70 100644 --- a/modules/jooby-pac4j/README.md +++ b/modules/jooby-pac4j/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-pac4j/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-pac4j) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-pac4j.svg)](https://javadoc.io/doc/org.jooby/jooby-pac4j/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-pac4j/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-pac4j/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-pac4j.svg)](https://javadoc.io/doc/org.jooby/jooby-pac4j/1.5.1) [![jooby-pac4j website](https://img.shields.io/badge/jooby-pac4j-brightgreen.svg)](http://jooby.org/doc/pac4j) # pac4j @@ -22,7 +22,7 @@ Authentication module via: [Pac4j 1.x](https://github.com/pac4j/pac4j). org.jooby jooby-pac4j - 1.5.0 + 1.5.1 ``` diff --git a/modules/jooby-pac4j/pom.xml b/modules/jooby-pac4j/pom.xml index bc428a279c..671ef4e408 100644 --- a/modules/jooby-pac4j/pom.xml +++ b/modules/jooby-pac4j/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-pac4j2/README.md b/modules/jooby-pac4j2/README.md index a3b1dc9b0a..809b6c9204 100644 --- a/modules/jooby-pac4j2/README.md +++ b/modules/jooby-pac4j2/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-pac4j2/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-pac4j2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-pac4j2.svg)](https://javadoc.io/doc/org.jooby/jooby-pac4j2/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-pac4j2/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-pac4j2/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-pac4j2.svg)](https://javadoc.io/doc/org.jooby/jooby-pac4j2/1.5.1) [![jooby-pac4j2 website](https://img.shields.io/badge/jooby-pac4j2-brightgreen.svg)](http://jooby.org/doc/pac4j2) # pac4j module @@ -19,7 +19,7 @@ Authentication module via: Pac4j 2.x org.jooby jooby-pac4j2 - 1.5.0 + 1.5.1 ``` diff --git a/modules/jooby-pac4j2/pom.xml b/modules/jooby-pac4j2/pom.xml index 91dee44552..2d8105042f 100644 --- a/modules/jooby-pac4j2/pom.xml +++ b/modules/jooby-pac4j2/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-pebble/README.md b/modules/jooby-pebble/README.md index c9ef8d5c33..403037414d 100644 --- a/modules/jooby-pebble/README.md +++ b/modules/jooby-pebble/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-pebble/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-pebble) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-pebble.svg)](https://javadoc.io/doc/org.jooby/jooby-pebble/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-pebble/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-pebble/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-pebble.svg)](https://javadoc.io/doc/org.jooby/jooby-pebble/1.5.1) [![jooby-pebble website](https://img.shields.io/badge/jooby-pebble-brightgreen.svg)](http://jooby.org/doc/pebble) # pebble @@ -16,7 +16,7 @@ org.jooby jooby-pebble - 1.5.0 + 1.5.1 ``` diff --git a/modules/jooby-pebble/pom.xml b/modules/jooby-pebble/pom.xml index ec8aa84aaf..d0b358b410 100644 --- a/modules/jooby-pebble/pom.xml +++ b/modules/jooby-pebble/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-quartz/README.md b/modules/jooby-quartz/README.md index d431ccbec1..d7c4cbc8f4 100644 --- a/modules/jooby-quartz/README.md +++ b/modules/jooby-quartz/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-quartz/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-quartz) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-quartz.svg)](https://javadoc.io/doc/org.jooby/jooby-quartz/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-quartz/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-quartz/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-quartz.svg)](https://javadoc.io/doc/org.jooby/jooby-quartz/1.5.1) [![jooby-quartz website](https://img.shields.io/badge/jooby-quartz-brightgreen.svg)](http://jooby.org/doc/quartz) # quartz @@ -11,7 +11,7 @@ Cron triggers, job scheduling and async processing via [Quartz](http://quartz-sc org.jooby jooby-quartz - 1.5.0 + 1.5.1 ``` diff --git a/modules/jooby-quartz/pom.xml b/modules/jooby-quartz/pom.xml index 27da25eff2..42109f721e 100644 --- a/modules/jooby-quartz/pom.xml +++ b/modules/jooby-quartz/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-querydsl/README.md b/modules/jooby-querydsl/README.md index c4394c7fc4..445523414c 100644 --- a/modules/jooby-querydsl/README.md +++ b/modules/jooby-querydsl/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-querydsl/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-querydsl) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-querydsl.svg)](https://javadoc.io/doc/org.jooby/jooby-querydsl/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-querydsl/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-querydsl/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-querydsl.svg)](https://javadoc.io/doc/org.jooby/jooby-querydsl/1.5.1) [![jooby-querydsl website](https://img.shields.io/badge/jooby-querydsl-brightgreen.svg)](http://jooby.org/doc/querydsl) # queryDSL @@ -17,7 +17,7 @@ SQL abstraction provided by QueryDSL using org.jooby jooby-querydsl - 1.5.0 + 1.5.1 ``` diff --git a/modules/jooby-querydsl/pom.xml b/modules/jooby-querydsl/pom.xml index 1f6f5a26e3..02f4d8dae7 100644 --- a/modules/jooby-querydsl/pom.xml +++ b/modules/jooby-querydsl/pom.xml @@ -4,7 +4,7 @@ modules org.jooby - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-reactor/README.md b/modules/jooby-reactor/README.md index 70991445d5..ca724934b0 100644 --- a/modules/jooby-reactor/README.md +++ b/modules/jooby-reactor/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-reactor/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-reactor) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-reactor.svg)](https://javadoc.io/doc/org.jooby/jooby-reactor/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-reactor/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-reactor/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-reactor.svg)](https://javadoc.io/doc/org.jooby/jooby-reactor/1.5.1) [![jooby-reactor website](https://img.shields.io/badge/jooby-reactor-brightgreen.svg)](http://jooby.org/doc/reactor) # reactor @@ -11,7 +11,7 @@ org.jooby jooby-reactor - 1.5.0 + 1.5.1 ``` diff --git a/modules/jooby-reactor/pom.xml b/modules/jooby-reactor/pom.xml index 8733c1d138..2692cd84b9 100644 --- a/modules/jooby-reactor/pom.xml +++ b/modules/jooby-reactor/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-requery/README.md b/modules/jooby-requery/README.md index f814f2cd37..8e81e6b4b5 100644 --- a/modules/jooby-requery/README.md +++ b/modules/jooby-requery/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-requery/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-requery) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-requery.svg)](https://javadoc.io/doc/org.jooby/jooby-requery/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-requery/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-requery/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-requery.svg)](https://javadoc.io/doc/org.jooby/jooby-requery/1.5.1) [![jooby-requery website](https://img.shields.io/badge/jooby-requery-brightgreen.svg)](http://jooby.org/doc/requery) # requery @@ -15,7 +15,7 @@ Safe, clean and efficient database access via Reactive Ext org.jooby jooby-rxjava - 1.5.0 + 1.5.1 ``` diff --git a/modules/jooby-rxjava/pom.xml b/modules/jooby-rxjava/pom.xml index 7f58f614c1..cafa905ed2 100644 --- a/modules/jooby-rxjava/pom.xml +++ b/modules/jooby-rxjava/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-scanner/README.md b/modules/jooby-scanner/README.md index 9d792bd354..ab5545b8fc 100644 --- a/modules/jooby-scanner/README.md +++ b/modules/jooby-scanner/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-scanner/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-scanner) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-scanner.svg)](https://javadoc.io/doc/org.jooby/jooby-scanner/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-scanner/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-scanner/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-scanner.svg)](https://javadoc.io/doc/org.jooby/jooby-scanner/1.5.1) [![jooby-scanner website](https://img.shields.io/badge/jooby-scanner-brightgreen.svg)](http://jooby.org/doc/scanner) # scanner @@ -13,7 +13,7 @@ This module provides `class-path` scanning services for `MVC routes`, `services` org.jooby jooby-scanner - 1.5.0 + 1.5.1 ``` diff --git a/modules/jooby-scanner/pom.xml b/modules/jooby-scanner/pom.xml index 2e959756d4..871d268cd5 100644 --- a/modules/jooby-scanner/pom.xml +++ b/modules/jooby-scanner/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-servlet/README.md b/modules/jooby-servlet/README.md index 66fd90591d..4a5f0f8668 100644 --- a/modules/jooby-servlet/README.md +++ b/modules/jooby-servlet/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-servlet/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-servlet) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-servlet.svg)](https://javadoc.io/doc/org.jooby/jooby-servlet/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-servlet/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-servlet/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-servlet.svg)](https://javadoc.io/doc/org.jooby/jooby-servlet/1.5.1) [![jooby-servlet website](https://img.shields.io/badge/jooby-servlet-brightgreen.svg)](http://jooby.org/doc/servlet) # servlets diff --git a/modules/jooby-servlet/pom.xml b/modules/jooby-servlet/pom.xml index 682419dbae..831448dd01 100644 --- a/modules/jooby-servlet/pom.xml +++ b/modules/jooby-servlet/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-sitemap/README.md b/modules/jooby-sitemap/README.md index 99f1b45d58..1feebf4c3a 100644 --- a/modules/jooby-sitemap/README.md +++ b/modules/jooby-sitemap/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-sitemap/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-sitemap) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-sitemap.svg)](https://javadoc.io/doc/org.jooby/jooby-sitemap/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-sitemap/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-sitemap/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-sitemap.svg)](https://javadoc.io/doc/org.jooby/jooby-sitemap/1.5.1) [![jooby-sitemap website](https://img.shields.io/badge/jooby-sitemap-brightgreen.svg)](http://jooby.org/doc/sitemap) # sitemap @@ -15,7 +15,7 @@ Generate sitemap.xml files org.jooby jooby-sitemap - 1.5.0 + 1.5.1 ``` diff --git a/modules/jooby-sitemap/pom.xml b/modules/jooby-sitemap/pom.xml index ceb17a761b..c538d5fd2e 100644 --- a/modules/jooby-sitemap/pom.xml +++ b/modules/jooby-sitemap/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-spymemcached/README.md b/modules/jooby-spymemcached/README.md index 0be71fb679..448d84bb65 100644 --- a/modules/jooby-spymemcached/README.md +++ b/modules/jooby-spymemcached/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-spymemcached/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-spymemcached) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-spymemcached.svg)](https://javadoc.io/doc/org.jooby/jooby-spymemcached/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-spymemcached/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-spymemcached/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-spymemcached.svg)](https://javadoc.io/doc/org.jooby/jooby-spymemcached/1.5.1) [![jooby-spymemcached website](https://img.shields.io/badge/jooby-spymemcached-brightgreen.svg)](http://jooby.org/doc/spymemcached) # spymemcached @@ -15,7 +15,7 @@ Provides memcached access via [SpyMemcached](https://github.com/dustin/java-memc org.jooby jooby-spymemcached - 1.5.0 + 1.5.1 ``` @@ -65,7 +65,7 @@ or programmatically: org.jooby jooby-spymemcached - 1.5.0 + 1.5.1 ``` diff --git a/modules/jooby-spymemcached/pom.xml b/modules/jooby-spymemcached/pom.xml index f9db27dac2..18a84590a4 100644 --- a/modules/jooby-spymemcached/pom.xml +++ b/modules/jooby-spymemcached/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-thymeleaf/README.md b/modules/jooby-thymeleaf/README.md index a6ccc5c9ce..c6ba09c120 100644 --- a/modules/jooby-thymeleaf/README.md +++ b/modules/jooby-thymeleaf/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-thymeleaf/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-thymeleaf) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-thymeleaf.svg)](https://javadoc.io/doc/org.jooby/jooby-thymeleaf/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-thymeleaf/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-thymeleaf/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-thymeleaf.svg)](https://javadoc.io/doc/org.jooby/jooby-thymeleaf/1.5.1) [![jooby-thymeleaf website](https://img.shields.io/badge/jooby-thymeleaf-brightgreen.svg)](http://jooby.org/doc/thymeleaf) # thymeleaf @@ -11,7 +11,7 @@ org.jooby jooby-thymeleaf - 1.5.0 + 1.5.1 ``` diff --git a/modules/jooby-thymeleaf/pom.xml b/modules/jooby-thymeleaf/pom.xml index 5e409effe5..287e751eee 100644 --- a/modules/jooby-thymeleaf/pom.xml +++ b/modules/jooby-thymeleaf/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-unbescape/README.md b/modules/jooby-unbescape/README.md index 373ab90695..84d059c9cc 100644 --- a/modules/jooby-unbescape/README.md +++ b/modules/jooby-unbescape/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-unbescape/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-unbescape) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-unbescape.svg)](https://javadoc.io/doc/org.jooby/jooby-unbescape/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-unbescape/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-unbescape/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-unbescape.svg)](https://javadoc.io/doc/org.jooby/jooby-unbescape/1.5.1) [![jooby-unbescape website](https://img.shields.io/badge/jooby-unbescape-brightgreen.svg)](http://jooby.org/doc/unbescape) # unbescape @@ -11,7 +11,7 @@ org.jooby jooby-unbescape - 1.5.0 + 1.5.1 ``` diff --git a/modules/jooby-unbescape/pom.xml b/modules/jooby-unbescape/pom.xml index 0f41cda346..3e112c10ab 100644 --- a/modules/jooby-unbescape/pom.xml +++ b/modules/jooby-unbescape/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-undertow/README.md b/modules/jooby-undertow/README.md index ec3795a17b..b93f82c9cf 100644 --- a/modules/jooby-undertow/README.md +++ b/modules/jooby-undertow/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-undertow/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-undertow) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-undertow.svg)](https://javadoc.io/doc/org.jooby/jooby-undertow/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-undertow/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-undertow/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-undertow.svg)](https://javadoc.io/doc/org.jooby/jooby-undertow/1.5.1) [![jooby-undertow website](https://img.shields.io/badge/jooby-undertow-brightgreen.svg)](http://jooby.org/doc/undertow) # undertow @@ -15,7 +15,7 @@ org.jooby jooby-undertow - 1.5.0 + 1.5.1 ``` diff --git a/modules/jooby-undertow/pom.xml b/modules/jooby-undertow/pom.xml index a421d91e80..d1cb691e42 100644 --- a/modules/jooby-undertow/pom.xml +++ b/modules/jooby-undertow/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/jooby-whoops/README.md b/modules/jooby-whoops/README.md index 9f05af05ca..3cfc8a8643 100644 --- a/modules/jooby-whoops/README.md +++ b/modules/jooby-whoops/README.md @@ -1,5 +1,5 @@ -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-whoops/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby-whoops) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-whoops.svg)](https://javadoc.io/doc/org.jooby/jooby-whoops/1.5.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-whoops/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-whoops/1.5.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-whoops.svg)](https://javadoc.io/doc/org.jooby/jooby-whoops/1.5.1) [![jooby-whoops website](https://img.shields.io/badge/jooby-whoops-brightgreen.svg)](http://jooby.org/doc/whoops) # whoops @@ -15,7 +15,7 @@ Pretty error page that helps you debug your web application. org.jooby jooby-whoops - 1.5.0 + 1.5.1 ``` diff --git a/modules/jooby-whoops/pom.xml b/modules/jooby-whoops/pom.xml index ee659ecb8b..5adbe4c09d 100644 --- a/modules/jooby-whoops/pom.xml +++ b/modules/jooby-whoops/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.5.1 4.0.0 diff --git a/modules/pom.xml b/modules/pom.xml index f33aed46cf..bf22e57336 100644 --- a/modules/pom.xml +++ b/modules/pom.xml @@ -6,7 +6,7 @@ org.jooby jooby-project - 1.5.1-SNAPSHOT + 1.5.1 modules diff --git a/pom.xml b/pom.xml index b553c219d3..099ee78536 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ 4.0.0 org.jooby jooby-project - 1.5.1-SNAPSHOT + 1.5.1 pom jooby-project From 3de060556ba30a356e07bbbcdac9dd48005f36af Mon Sep 17 00:00:00 2001 From: Edgar Espina Date: Fri, 24 Aug 2018 16:41:53 -0300 Subject: [PATCH 05/93] prepare for next development cycle --- jooby/pom.xml | 2 +- modules/coverage-report/pom.xml | 2 +- modules/jooby-akka/pom.xml | 2 +- modules/jooby-apitool/pom.xml | 2 +- modules/jooby-archetype/pom.xml | 2 +- modules/jooby-assets-autoprefixer/pom.xml | 2 +- modules/jooby-assets-babel/pom.xml | 2 +- modules/jooby-assets-clean-css/pom.xml | 2 +- modules/jooby-assets-closure-compiler/pom.xml | 2 +- modules/jooby-assets-csslint/pom.xml | 2 +- modules/jooby-assets-j2v8/pom.xml | 2 +- modules/jooby-assets-jscs/pom.xml | 2 +- modules/jooby-assets-jshint/pom.xml | 2 +- modules/jooby-assets-less/pom.xml | 2 +- modules/jooby-assets-less4j/pom.xml | 2 +- modules/jooby-assets-ng-annotate/pom.xml | 2 +- modules/jooby-assets-nodejs/pom.xml | 2 +- modules/jooby-assets-requirejs/pom.xml | 2 +- modules/jooby-assets-rollup/pom.xml | 2 +- modules/jooby-assets-sass/pom.xml | 2 +- modules/jooby-assets-svg-sprites/pom.xml | 2 +- modules/jooby-assets-svg-symbol/pom.xml | 2 +- modules/jooby-assets-uglify/pom.xml | 2 +- modules/jooby-assets-yui-compressor/pom.xml | 2 +- modules/jooby-assets/pom.xml | 2 +- modules/jooby-aws/pom.xml | 2 +- modules/jooby-banner/pom.xml | 2 +- modules/jooby-caffeine/pom.xml | 2 +- modules/jooby-camel/pom.xml | 2 +- modules/jooby-cassandra/pom.xml | 2 +- modules/jooby-commons-email/pom.xml | 2 +- modules/jooby-consul/pom.xml | 2 +- modules/jooby-couchbase/pom.xml | 2 +- modules/jooby-crash/pom.xml | 2 +- modules/jooby-csl/pom.xml | 2 +- modules/jooby-dist/pom.xml | 2 +- modules/jooby-ebean/pom.xml | 2 +- modules/jooby-ehcache/pom.xml | 2 +- modules/jooby-elasticsearch/pom.xml | 2 +- modules/jooby-eventbus/pom.xml | 2 +- modules/jooby-executor/pom.xml | 2 +- modules/jooby-filewatcher/pom.xml | 2 +- modules/jooby-flyway/pom.xml | 2 +- modules/jooby-frontend/pom.xml | 2 +- modules/jooby-ftl/pom.xml | 2 +- modules/jooby-gradle-plugin/pom.xml | 2 +- modules/jooby-gson/pom.xml | 2 +- modules/jooby-guava-cache/pom.xml | 2 +- modules/jooby-hazelcast/pom.xml | 2 +- modules/jooby-hbm/pom.xml | 2 +- modules/jooby-hbs/pom.xml | 2 +- modules/jooby-hbv/pom.xml | 2 +- modules/jooby-jackson/pom.xml | 2 +- modules/jooby-jade/pom.xml | 2 +- modules/jooby-jdbc/pom.xml | 2 +- modules/jooby-jdbi/pom.xml | 2 +- modules/jooby-jdbi3/pom.xml | 2 +- modules/jooby-jedis/pom.xml | 2 +- modules/jooby-jetty/pom.xml | 2 +- modules/jooby-jongo/pom.xml | 2 +- modules/jooby-jooq/pom.xml | 2 +- modules/jooby-lang-kotlin/pom.xml | 2 +- modules/jooby-livereload/pom.xml | 2 +- modules/jooby-maven-plugin/pom.xml | 2 +- modules/jooby-metrics/pom.xml | 2 +- modules/jooby-micrometer/pom.xml | 2 +- modules/jooby-mongodb-rx/pom.xml | 2 +- modules/jooby-mongodb/pom.xml | 2 +- modules/jooby-morphia/pom.xml | 2 +- modules/jooby-neo4j/pom.xml | 2 +- modules/jooby-netty/pom.xml | 2 +- modules/jooby-pac4j/pom.xml | 2 +- modules/jooby-pac4j2/pom.xml | 2 +- modules/jooby-pebble/pom.xml | 2 +- modules/jooby-quartz/pom.xml | 2 +- modules/jooby-querydsl/pom.xml | 2 +- modules/jooby-reactor/pom.xml | 2 +- modules/jooby-requery/pom.xml | 2 +- modules/jooby-rocker/pom.xml | 2 +- modules/jooby-run/pom.xml | 2 +- modules/jooby-rxjava-jdbc/pom.xml | 2 +- modules/jooby-rxjava/pom.xml | 2 +- modules/jooby-scanner/pom.xml | 2 +- modules/jooby-servlet/pom.xml | 2 +- modules/jooby-sitemap/pom.xml | 2 +- modules/jooby-spymemcached/pom.xml | 2 +- modules/jooby-thymeleaf/pom.xml | 2 +- modules/jooby-unbescape/pom.xml | 2 +- modules/jooby-undertow/pom.xml | 2 +- modules/jooby-whoops/pom.xml | 2 +- modules/pom.xml | 2 +- pom.xml | 2 +- 92 files changed, 92 insertions(+), 92 deletions(-) diff --git a/jooby/pom.xml b/jooby/pom.xml index 701c0cfea7..514498522c 100644 --- a/jooby/pom.xml +++ b/jooby/pom.xml @@ -6,7 +6,7 @@ org.jooby jooby-project - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/coverage-report/pom.xml b/modules/coverage-report/pom.xml index 12ec69b89c..4ef74b0aef 100644 --- a/modules/coverage-report/pom.xml +++ b/modules/coverage-report/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-akka/pom.xml b/modules/jooby-akka/pom.xml index 0b15601c5a..fd55c9a721 100644 --- a/modules/jooby-akka/pom.xml +++ b/modules/jooby-akka/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-apitool/pom.xml b/modules/jooby-apitool/pom.xml index d10b77cbde..b36967b7e3 100644 --- a/modules/jooby-apitool/pom.xml +++ b/modules/jooby-apitool/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-archetype/pom.xml b/modules/jooby-archetype/pom.xml index 60dd0e49a7..70134052a9 100644 --- a/modules/jooby-archetype/pom.xml +++ b/modules/jooby-archetype/pom.xml @@ -7,7 +7,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT jooby-archetype diff --git a/modules/jooby-assets-autoprefixer/pom.xml b/modules/jooby-assets-autoprefixer/pom.xml index 703a16e95c..d78fde9572 100644 --- a/modules/jooby-assets-autoprefixer/pom.xml +++ b/modules/jooby-assets-autoprefixer/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-babel/pom.xml b/modules/jooby-assets-babel/pom.xml index 5a937c3342..25ee480c74 100644 --- a/modules/jooby-assets-babel/pom.xml +++ b/modules/jooby-assets-babel/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-clean-css/pom.xml b/modules/jooby-assets-clean-css/pom.xml index c575cd36a9..a071ce5182 100644 --- a/modules/jooby-assets-clean-css/pom.xml +++ b/modules/jooby-assets-clean-css/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-closure-compiler/pom.xml b/modules/jooby-assets-closure-compiler/pom.xml index b933ce10ed..91e791da99 100644 --- a/modules/jooby-assets-closure-compiler/pom.xml +++ b/modules/jooby-assets-closure-compiler/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-csslint/pom.xml b/modules/jooby-assets-csslint/pom.xml index 88e1f55062..c458f2cf66 100644 --- a/modules/jooby-assets-csslint/pom.xml +++ b/modules/jooby-assets-csslint/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-j2v8/pom.xml b/modules/jooby-assets-j2v8/pom.xml index edddbcf504..e982cb1966 100644 --- a/modules/jooby-assets-j2v8/pom.xml +++ b/modules/jooby-assets-j2v8/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-jscs/pom.xml b/modules/jooby-assets-jscs/pom.xml index e968cb442c..f28b303380 100644 --- a/modules/jooby-assets-jscs/pom.xml +++ b/modules/jooby-assets-jscs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-jshint/pom.xml b/modules/jooby-assets-jshint/pom.xml index 0332c79e02..d0f6567f0e 100644 --- a/modules/jooby-assets-jshint/pom.xml +++ b/modules/jooby-assets-jshint/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-less/pom.xml b/modules/jooby-assets-less/pom.xml index 23ca56d954..1919981bde 100644 --- a/modules/jooby-assets-less/pom.xml +++ b/modules/jooby-assets-less/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-less4j/pom.xml b/modules/jooby-assets-less4j/pom.xml index 1f9915337d..9b9d1e40e6 100644 --- a/modules/jooby-assets-less4j/pom.xml +++ b/modules/jooby-assets-less4j/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-ng-annotate/pom.xml b/modules/jooby-assets-ng-annotate/pom.xml index ebebbbe735..7e0392b0f5 100644 --- a/modules/jooby-assets-ng-annotate/pom.xml +++ b/modules/jooby-assets-ng-annotate/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-nodejs/pom.xml b/modules/jooby-assets-nodejs/pom.xml index 8c3e98731f..38ab017cdc 100644 --- a/modules/jooby-assets-nodejs/pom.xml +++ b/modules/jooby-assets-nodejs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-requirejs/pom.xml b/modules/jooby-assets-requirejs/pom.xml index b8cbed5fda..9c8ba3a55d 100644 --- a/modules/jooby-assets-requirejs/pom.xml +++ b/modules/jooby-assets-requirejs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-rollup/pom.xml b/modules/jooby-assets-rollup/pom.xml index aad4e5eca2..82e991f99a 100644 --- a/modules/jooby-assets-rollup/pom.xml +++ b/modules/jooby-assets-rollup/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-sass/pom.xml b/modules/jooby-assets-sass/pom.xml index 45198e21bf..5a37fad11f 100644 --- a/modules/jooby-assets-sass/pom.xml +++ b/modules/jooby-assets-sass/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-svg-sprites/pom.xml b/modules/jooby-assets-svg-sprites/pom.xml index 081ae8db50..f9bf663057 100644 --- a/modules/jooby-assets-svg-sprites/pom.xml +++ b/modules/jooby-assets-svg-sprites/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-svg-symbol/pom.xml b/modules/jooby-assets-svg-symbol/pom.xml index b7f0bbfa1a..6cec40bc1d 100644 --- a/modules/jooby-assets-svg-symbol/pom.xml +++ b/modules/jooby-assets-svg-symbol/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-uglify/pom.xml b/modules/jooby-assets-uglify/pom.xml index f45b07b0d8..96234e93fd 100644 --- a/modules/jooby-assets-uglify/pom.xml +++ b/modules/jooby-assets-uglify/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-yui-compressor/pom.xml b/modules/jooby-assets-yui-compressor/pom.xml index d4652a3f87..e3ccabd5e4 100644 --- a/modules/jooby-assets-yui-compressor/pom.xml +++ b/modules/jooby-assets-yui-compressor/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets/pom.xml b/modules/jooby-assets/pom.xml index 086e2f1f0a..069b0b7c08 100644 --- a/modules/jooby-assets/pom.xml +++ b/modules/jooby-assets/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-aws/pom.xml b/modules/jooby-aws/pom.xml index fe1baec4cd..d1d79b8344 100644 --- a/modules/jooby-aws/pom.xml +++ b/modules/jooby-aws/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-banner/pom.xml b/modules/jooby-banner/pom.xml index 0a56df12c5..d7e6e48fbc 100644 --- a/modules/jooby-banner/pom.xml +++ b/modules/jooby-banner/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-caffeine/pom.xml b/modules/jooby-caffeine/pom.xml index 5202ced02e..bd55ba5913 100644 --- a/modules/jooby-caffeine/pom.xml +++ b/modules/jooby-caffeine/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-camel/pom.xml b/modules/jooby-camel/pom.xml index afdc2dcc23..cda8b6f586 100644 --- a/modules/jooby-camel/pom.xml +++ b/modules/jooby-camel/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-cassandra/pom.xml b/modules/jooby-cassandra/pom.xml index 8745408690..9135f97007 100644 --- a/modules/jooby-cassandra/pom.xml +++ b/modules/jooby-cassandra/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-commons-email/pom.xml b/modules/jooby-commons-email/pom.xml index 4411876f16..0202d2ed53 100644 --- a/modules/jooby-commons-email/pom.xml +++ b/modules/jooby-commons-email/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-consul/pom.xml b/modules/jooby-consul/pom.xml index 65dbc41536..188f322e67 100644 --- a/modules/jooby-consul/pom.xml +++ b/modules/jooby-consul/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-couchbase/pom.xml b/modules/jooby-couchbase/pom.xml index 6cc4f85543..7118b2ee58 100644 --- a/modules/jooby-couchbase/pom.xml +++ b/modules/jooby-couchbase/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-crash/pom.xml b/modules/jooby-crash/pom.xml index 436a470f8d..b1025ea5d5 100644 --- a/modules/jooby-crash/pom.xml +++ b/modules/jooby-crash/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-csl/pom.xml b/modules/jooby-csl/pom.xml index 835e512c1f..f15dc0a97b 100644 --- a/modules/jooby-csl/pom.xml +++ b/modules/jooby-csl/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-dist/pom.xml b/modules/jooby-dist/pom.xml index 6dd0f96b31..19c4ea71da 100644 --- a/modules/jooby-dist/pom.xml +++ b/modules/jooby-dist/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-ebean/pom.xml b/modules/jooby-ebean/pom.xml index a8967953d2..8d9ff4f9af 100644 --- a/modules/jooby-ebean/pom.xml +++ b/modules/jooby-ebean/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-ehcache/pom.xml b/modules/jooby-ehcache/pom.xml index f2e7fe5a5f..ca552bad5b 100644 --- a/modules/jooby-ehcache/pom.xml +++ b/modules/jooby-ehcache/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-elasticsearch/pom.xml b/modules/jooby-elasticsearch/pom.xml index 350e25f43b..65207af385 100644 --- a/modules/jooby-elasticsearch/pom.xml +++ b/modules/jooby-elasticsearch/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-eventbus/pom.xml b/modules/jooby-eventbus/pom.xml index b39e2e7fb1..c8eddb55d3 100644 --- a/modules/jooby-eventbus/pom.xml +++ b/modules/jooby-eventbus/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-executor/pom.xml b/modules/jooby-executor/pom.xml index de0fc57b64..07ae9411c8 100644 --- a/modules/jooby-executor/pom.xml +++ b/modules/jooby-executor/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-filewatcher/pom.xml b/modules/jooby-filewatcher/pom.xml index d39dfb9123..55ebe24df0 100644 --- a/modules/jooby-filewatcher/pom.xml +++ b/modules/jooby-filewatcher/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-flyway/pom.xml b/modules/jooby-flyway/pom.xml index f3988d5c56..e0d84053d4 100644 --- a/modules/jooby-flyway/pom.xml +++ b/modules/jooby-flyway/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-frontend/pom.xml b/modules/jooby-frontend/pom.xml index 4420460480..f762f61358 100644 --- a/modules/jooby-frontend/pom.xml +++ b/modules/jooby-frontend/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-ftl/pom.xml b/modules/jooby-ftl/pom.xml index 33d6739104..2e0e2d7ad9 100644 --- a/modules/jooby-ftl/pom.xml +++ b/modules/jooby-ftl/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-gradle-plugin/pom.xml b/modules/jooby-gradle-plugin/pom.xml index e4dde23192..9cc6d8b4fd 100644 --- a/modules/jooby-gradle-plugin/pom.xml +++ b/modules/jooby-gradle-plugin/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-gson/pom.xml b/modules/jooby-gson/pom.xml index 1a12fbfa36..37fedf1e92 100644 --- a/modules/jooby-gson/pom.xml +++ b/modules/jooby-gson/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-guava-cache/pom.xml b/modules/jooby-guava-cache/pom.xml index 1a26770f60..4bd23449da 100644 --- a/modules/jooby-guava-cache/pom.xml +++ b/modules/jooby-guava-cache/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-hazelcast/pom.xml b/modules/jooby-hazelcast/pom.xml index c37fa732a3..3c8f81fbf9 100644 --- a/modules/jooby-hazelcast/pom.xml +++ b/modules/jooby-hazelcast/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-hbm/pom.xml b/modules/jooby-hbm/pom.xml index 2fe344040b..bfebd1e929 100644 --- a/modules/jooby-hbm/pom.xml +++ b/modules/jooby-hbm/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-hbs/pom.xml b/modules/jooby-hbs/pom.xml index 0f5830e547..797557bfd9 100644 --- a/modules/jooby-hbs/pom.xml +++ b/modules/jooby-hbs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-hbv/pom.xml b/modules/jooby-hbv/pom.xml index 6b7ed3fc7f..ffc103977e 100644 --- a/modules/jooby-hbv/pom.xml +++ b/modules/jooby-hbv/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-jackson/pom.xml b/modules/jooby-jackson/pom.xml index 4b8d64a5d8..c91d74e259 100644 --- a/modules/jooby-jackson/pom.xml +++ b/modules/jooby-jackson/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-jade/pom.xml b/modules/jooby-jade/pom.xml index ed4fa3d2c9..ab75340b27 100644 --- a/modules/jooby-jade/pom.xml +++ b/modules/jooby-jade/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-jdbc/pom.xml b/modules/jooby-jdbc/pom.xml index 0b59606c57..b012af0f25 100644 --- a/modules/jooby-jdbc/pom.xml +++ b/modules/jooby-jdbc/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-jdbi/pom.xml b/modules/jooby-jdbi/pom.xml index 31eaaef20f..def22bcc91 100644 --- a/modules/jooby-jdbi/pom.xml +++ b/modules/jooby-jdbi/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-jdbi3/pom.xml b/modules/jooby-jdbi3/pom.xml index 8ef584e4f2..e2f3389e2d 100644 --- a/modules/jooby-jdbi3/pom.xml +++ b/modules/jooby-jdbi3/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-jedis/pom.xml b/modules/jooby-jedis/pom.xml index 812b89a6fb..69965a2c08 100644 --- a/modules/jooby-jedis/pom.xml +++ b/modules/jooby-jedis/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-jetty/pom.xml b/modules/jooby-jetty/pom.xml index 642fef9c63..d09f3601d7 100644 --- a/modules/jooby-jetty/pom.xml +++ b/modules/jooby-jetty/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-jongo/pom.xml b/modules/jooby-jongo/pom.xml index eef89293b3..db5f3af72e 100644 --- a/modules/jooby-jongo/pom.xml +++ b/modules/jooby-jongo/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-jooq/pom.xml b/modules/jooby-jooq/pom.xml index 007f241174..bfeb4f9083 100644 --- a/modules/jooby-jooq/pom.xml +++ b/modules/jooby-jooq/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-lang-kotlin/pom.xml b/modules/jooby-lang-kotlin/pom.xml index 141475ca49..9f6b31d389 100644 --- a/modules/jooby-lang-kotlin/pom.xml +++ b/modules/jooby-lang-kotlin/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-livereload/pom.xml b/modules/jooby-livereload/pom.xml index c3d7177711..3db0ee85bc 100644 --- a/modules/jooby-livereload/pom.xml +++ b/modules/jooby-livereload/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT jooby-livereload jooby-livereload diff --git a/modules/jooby-maven-plugin/pom.xml b/modules/jooby-maven-plugin/pom.xml index 3a0e2f20b2..9088b0d422 100644 --- a/modules/jooby-maven-plugin/pom.xml +++ b/modules/jooby-maven-plugin/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-metrics/pom.xml b/modules/jooby-metrics/pom.xml index 35c574dd28..57303f029d 100644 --- a/modules/jooby-metrics/pom.xml +++ b/modules/jooby-metrics/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-micrometer/pom.xml b/modules/jooby-micrometer/pom.xml index 6501374c93..da4ca47e82 100644 --- a/modules/jooby-micrometer/pom.xml +++ b/modules/jooby-micrometer/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-mongodb-rx/pom.xml b/modules/jooby-mongodb-rx/pom.xml index 6b17b158d5..3944e618be 100644 --- a/modules/jooby-mongodb-rx/pom.xml +++ b/modules/jooby-mongodb-rx/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-mongodb/pom.xml b/modules/jooby-mongodb/pom.xml index ec77345193..2090fc18e6 100644 --- a/modules/jooby-mongodb/pom.xml +++ b/modules/jooby-mongodb/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-morphia/pom.xml b/modules/jooby-morphia/pom.xml index 33d7d5f2da..39ee5665b6 100644 --- a/modules/jooby-morphia/pom.xml +++ b/modules/jooby-morphia/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-neo4j/pom.xml b/modules/jooby-neo4j/pom.xml index 07ecdb8e62..aa5862afe8 100644 --- a/modules/jooby-neo4j/pom.xml +++ b/modules/jooby-neo4j/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-netty/pom.xml b/modules/jooby-netty/pom.xml index 3d3e1fdecd..3801968171 100644 --- a/modules/jooby-netty/pom.xml +++ b/modules/jooby-netty/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-pac4j/pom.xml b/modules/jooby-pac4j/pom.xml index 671ef4e408..da28f7a3d3 100644 --- a/modules/jooby-pac4j/pom.xml +++ b/modules/jooby-pac4j/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-pac4j2/pom.xml b/modules/jooby-pac4j2/pom.xml index 2d8105042f..b867ada9fd 100644 --- a/modules/jooby-pac4j2/pom.xml +++ b/modules/jooby-pac4j2/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-pebble/pom.xml b/modules/jooby-pebble/pom.xml index d0b358b410..1b257fc7d2 100644 --- a/modules/jooby-pebble/pom.xml +++ b/modules/jooby-pebble/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-quartz/pom.xml b/modules/jooby-quartz/pom.xml index 42109f721e..025b054f38 100644 --- a/modules/jooby-quartz/pom.xml +++ b/modules/jooby-quartz/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-querydsl/pom.xml b/modules/jooby-querydsl/pom.xml index 02f4d8dae7..b10cd403aa 100644 --- a/modules/jooby-querydsl/pom.xml +++ b/modules/jooby-querydsl/pom.xml @@ -4,7 +4,7 @@ modules org.jooby - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-reactor/pom.xml b/modules/jooby-reactor/pom.xml index 2692cd84b9..23c0807702 100644 --- a/modules/jooby-reactor/pom.xml +++ b/modules/jooby-reactor/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-requery/pom.xml b/modules/jooby-requery/pom.xml index 2d4ed75122..a4e73b5401 100644 --- a/modules/jooby-requery/pom.xml +++ b/modules/jooby-requery/pom.xml @@ -4,7 +4,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT jooby-requery requery module diff --git a/modules/jooby-rocker/pom.xml b/modules/jooby-rocker/pom.xml index aeb100db3e..25f9bdc3ed 100644 --- a/modules/jooby-rocker/pom.xml +++ b/modules/jooby-rocker/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT jooby-rocker jooby-rocker diff --git a/modules/jooby-run/pom.xml b/modules/jooby-run/pom.xml index 8f6a67b734..b4a922df2d 100644 --- a/modules/jooby-run/pom.xml +++ b/modules/jooby-run/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-rxjava-jdbc/pom.xml b/modules/jooby-rxjava-jdbc/pom.xml index 65dd30c2c2..17f441d475 100644 --- a/modules/jooby-rxjava-jdbc/pom.xml +++ b/modules/jooby-rxjava-jdbc/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-rxjava/pom.xml b/modules/jooby-rxjava/pom.xml index cafa905ed2..1863719fc3 100644 --- a/modules/jooby-rxjava/pom.xml +++ b/modules/jooby-rxjava/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-scanner/pom.xml b/modules/jooby-scanner/pom.xml index 871d268cd5..79a7c785c4 100644 --- a/modules/jooby-scanner/pom.xml +++ b/modules/jooby-scanner/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-servlet/pom.xml b/modules/jooby-servlet/pom.xml index 831448dd01..7ea7273cba 100644 --- a/modules/jooby-servlet/pom.xml +++ b/modules/jooby-servlet/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-sitemap/pom.xml b/modules/jooby-sitemap/pom.xml index c538d5fd2e..cec4cd5b4a 100644 --- a/modules/jooby-sitemap/pom.xml +++ b/modules/jooby-sitemap/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-spymemcached/pom.xml b/modules/jooby-spymemcached/pom.xml index 18a84590a4..cbd9be19cb 100644 --- a/modules/jooby-spymemcached/pom.xml +++ b/modules/jooby-spymemcached/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-thymeleaf/pom.xml b/modules/jooby-thymeleaf/pom.xml index 287e751eee..e942a4f101 100644 --- a/modules/jooby-thymeleaf/pom.xml +++ b/modules/jooby-thymeleaf/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-unbescape/pom.xml b/modules/jooby-unbescape/pom.xml index 3e112c10ab..1a17c43d92 100644 --- a/modules/jooby-unbescape/pom.xml +++ b/modules/jooby-unbescape/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-undertow/pom.xml b/modules/jooby-undertow/pom.xml index d1cb691e42..5978b82b62 100644 --- a/modules/jooby-undertow/pom.xml +++ b/modules/jooby-undertow/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/jooby-whoops/pom.xml b/modules/jooby-whoops/pom.xml index 5adbe4c09d..9eed521021 100644 --- a/modules/jooby-whoops/pom.xml +++ b/modules/jooby-whoops/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.5.1 + 1.6.0-SNAPSHOT 4.0.0 diff --git a/modules/pom.xml b/modules/pom.xml index bf22e57336..d309e9ac14 100644 --- a/modules/pom.xml +++ b/modules/pom.xml @@ -6,7 +6,7 @@ org.jooby jooby-project - 1.5.1 + 1.6.0-SNAPSHOT modules diff --git a/pom.xml b/pom.xml index 099ee78536..521383e8e9 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ 4.0.0 org.jooby jooby-project - 1.5.1 + 1.6.0-SNAPSHOT pom jooby-project From 03330afe0c6801211473e6a413bd49912b0ffdf6 Mon Sep 17 00:00:00 2001 From: Guillaume Cusnieux Date: Tue, 16 Oct 2018 17:27:47 +0200 Subject: [PATCH 06/93] Fix documentation of dependency (#1251) --- doc/doc/assets-autoprefixer/autoprefixer.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/doc/assets-autoprefixer/autoprefixer.md b/doc/doc/assets-autoprefixer/autoprefixer.md index 7cf4e35890..3cafcb8d35 100644 --- a/doc/doc/assets-autoprefixer/autoprefixer.md +++ b/doc/doc/assets-autoprefixer/autoprefixer.md @@ -9,7 +9,7 @@ ```xml org.jooby - jooby-assets-auto-prefixer + jooby-assets-autoprefixer {{version}} provided From 7c19ab15ebbf4ef11641433a8a504605a15200ed Mon Sep 17 00:00:00 2001 From: Luka Lodrant Date: Thu, 18 Oct 2018 19:14:00 +0200 Subject: [PATCH 07/93] Prevented filtering of stork executables (#1242) --- .../main/resources/assemblies/jooby.stork.xml | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/modules/jooby-dist/src/main/resources/assemblies/jooby.stork.xml b/modules/jooby-dist/src/main/resources/assemblies/jooby.stork.xml index 7d27cc74a7..d9a2275280 100644 --- a/modules/jooby-dist/src/main/resources/assemblies/jooby.stork.xml +++ b/modules/jooby-dist/src/main/resources/assemblies/jooby.stork.xml @@ -18,6 +18,18 @@ 544 **/* + + + **/*.exe + + + + ${project.basedir}${file.separator}src${file.separator}etc${file.separator}bin + true + bin + 544 + + **/*.exe @@ -47,6 +59,16 @@ true **/* + + + **/*.exe + + + + ${project.build.directory}${file.separator}stork${file.separator}bin + bin + + **/*.exe From 55f8ea375ecb4279ae5c9947d89ce892c68d18ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Camilo?= Date: Thu, 18 Oct 2018 18:14:53 +0100 Subject: [PATCH 08/93] update README.md of jooby-commons-email (#1233) --- modules/jooby-commons-email/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/jooby-commons-email/README.md b/modules/jooby-commons-email/README.md index ba3cd20036..1574fe52e2 100644 --- a/modules/jooby-commons-email/README.md +++ b/modules/jooby-commons-email/README.md @@ -12,6 +12,7 @@ Small but helpful module that provides access to ```Email``` instances. * ```SimpleEmail``` * ```MultiPartEmail``` * ```HtmlEmail``` +* ```ImageHtmlEmail``` ## dependency From b1da51d7d9fd51bc799e92d5f431a5574790f868 Mon Sep 17 00:00:00 2001 From: Daniel Dias Date: Mon, 22 Oct 2018 09:18:51 -0300 Subject: [PATCH 09/93] update gradle-shadow-plugin (#1252) --- doc/fatjar.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/fatjar.md b/doc/fatjar.md index ec239933cc..6d80423ac7 100644 --- a/doc/fatjar.md +++ b/doc/fatjar.md @@ -39,7 +39,7 @@ buildscript { } } dependencies { - classpath "com.github.jengelman.gradle.plugins:shadow:1.2.4" + classpath "com.github.jengelman.gradle.plugins:shadow:4.0.1" } } From 5f42779e73e3a9607cc1d17ccf80830b1fd44e83 Mon Sep 17 00:00:00 2001 From: Daniel Dias Date: Mon, 22 Oct 2018 10:44:42 -0300 Subject: [PATCH 10/93] add support the Json-b - JSR -367 (#1248) * add support the Json-b - JSR -367 * update doc for yasson. * fix readme --- .../parser-and-renderer.md | 4 + doc/doc/yasson/README.md | 57 ++++ modules/jooby-yasson/pom.xml | 94 +++++ .../src/main/java/org/jooby/json/Yasson.java | 322 ++++++++++++++++++ .../java/org/jooby/json/YassonParser.java | 246 +++++++++++++ .../java/org/jooby/json/YassonRenderer.java | 242 +++++++++++++ .../java/org/jooby/json/YassonParserTest.java | 124 +++++++ .../org/jooby/json/YassonRendererTest.java | 64 ++++ modules/pom.xml | 1 + pom.xml | 21 ++ 10 files changed, 1175 insertions(+) create mode 100644 doc/doc/yasson/README.md create mode 100644 modules/jooby-yasson/pom.xml create mode 100644 modules/jooby-yasson/src/main/java/org/jooby/json/Yasson.java create mode 100644 modules/jooby-yasson/src/main/java/org/jooby/json/YassonParser.java create mode 100644 modules/jooby-yasson/src/main/java/org/jooby/json/YassonRenderer.java create mode 100644 modules/jooby-yasson/src/test/java/org/jooby/json/YassonParserTest.java create mode 100644 modules/jooby-yasson/src/test/java/org/jooby/json/YassonRendererTest.java diff --git a/doc/doc/parser-and-renderer/parser-and-renderer.md b/doc/doc/parser-and-renderer/parser-and-renderer.md index d36723d567..011c6593d7 100644 --- a/doc/doc/parser-and-renderer/parser-and-renderer.md +++ b/doc/doc/parser-and-renderer/parser-and-renderer.md @@ -37,3 +37,7 @@ JSON support via [jackson](/doc/jackson). ## gson JSON support via [gson](/doc/gson). + +## yassom + +JSON support via [yasson](/doc/yasson). diff --git a/doc/doc/yasson/README.md b/doc/doc/yasson/README.md new file mode 100644 index 0000000000..abc9305c7e --- /dev/null +++ b/doc/doc/yasson/README.md @@ -0,0 +1,57 @@ +# yasson + +JSON support via [yasson](https://github.com/eclipse-ee4j/yasson) library. + +## exports + +* [json-b](http://json-b.net/users-guide.html) +* [Parser](/apidocs/org/jooby/Parser.html) +* [Renderer](/apidocs/org/jooby/Renderer.html) + +## dependency + +```xml + + org.jooby + jooby-yasson + {{version}} + +``` + +## usage + +```java +import org.jooby.json.Yasson; + +{ + use(new Yasson()); + + // sending + get("/my-api", req -> new MyObject()); + + // receiving a json body + post("/my-api", req -> { + MyObject obj = req.body(MyObject.class); + return obj; + }); + + // direct access to Jsonb + get("/access", req -> { + Jsonb jsonb = require(Jsonb.class); + // ... + }); +} +``` + +### configuration + +If you need a special setting or configuration for your [json-b](http://json-b.net/users-guide.html): + +```java +{ + use(new Yasson().doWith(builder -> { + builder.withFormatting(true); + // ... + }); +} +``` diff --git a/modules/jooby-yasson/pom.xml b/modules/jooby-yasson/pom.xml new file mode 100644 index 0000000000..ec530d6721 --- /dev/null +++ b/modules/jooby-yasson/pom.xml @@ -0,0 +1,94 @@ + + + + + org.jooby + modules + 1.6.0-SNAPSHOT + + + 4.0.0 + jooby-yasson + + yasson module + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + **/*Test.java + **/*Feature.java + **/Issue*.java + + + + + + + + + + + org.jooby + jooby + ${project.version} + + + + + org.eclipse + yasson + + + + org.glassfish + javax.json + + + + + org.jooby + jooby + ${project.version} + test + tests + + + + junit + junit + test + + + + org.easymock + easymock + test + + + + org.powermock + powermock-api-easymock + test + + + + org.powermock + powermock-module-junit4 + test + + + + org.jacoco + org.jacoco.agent + runtime + test + + + + \ No newline at end of file diff --git a/modules/jooby-yasson/src/main/java/org/jooby/json/Yasson.java b/modules/jooby-yasson/src/main/java/org/jooby/json/Yasson.java new file mode 100644 index 0000000000..2cb56c5404 --- /dev/null +++ b/modules/jooby-yasson/src/main/java/org/jooby/json/Yasson.java @@ -0,0 +1,322 @@ +/** + * Apache License + * Version 2.0, January 2004 + * http://www.apache.org/licenses/ + * + * TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + * + * 1. Definitions. + * + * "License" shall mean the terms and conditions for use, reproduction, + * and distribution as defined by Sections 1 through 9 of this document. + * + * "Licensor" shall mean the copyright owner or entity authorized by + * the copyright owner that is granting the License. + * + * "Legal Entity" shall mean the union of the acting entity and all + * other entities that control, are controlled by, or are under common + * control with that entity. For the purposes of this definition, + * "control" means (i) the power, direct or indirect, to cause the + * direction or management of such entity, whether by contract or + * otherwise, or (ii) ownership of fifty percent (50%) or more of the + * outstanding shares, or (iii) beneficial ownership of such entity. + * + * "You" (or "Your") shall mean an individual or Legal Entity + * exercising permissions granted by this License. + * + * "Source" form shall mean the preferred form for making modifications, + * including but not limited to software source code, documentation + * source, and configuration files. + * + * "Object" form shall mean any form resulting from mechanical + * transformation or translation of a Source form, including but + * not limited to compiled object code, generated documentation, + * and conversions to other media types. + * + * "Work" shall mean the work of authorship, whether in Source or + * Object form, made available under the License, as indicated by a + * copyright notice that is included in or attached to the work + * (an example is provided in the Appendix below). + * + * "Derivative Works" shall mean any work, whether in Source or Object + * form, that is based on (or derived from) the Work and for which the + * editorial revisions, annotations, elaborations, or other modifications + * represent, as a whole, an original work of authorship. For the purposes + * of this License, Derivative Works shall not include works that remain + * separable from, or merely link (or bind by name) to the interfaces of, + * the Work and Derivative Works thereof. + * + * "Contribution" shall mean any work of authorship, including + * the original version of the Work and any modifications or additions + * to that Work or Derivative Works thereof, that is intentionally + * submitted to Licensor for inclusion in the Work by the copyright owner + * or by an individual or Legal Entity authorized to submit on behalf of + * the copyright owner. For the purposes of this definition, "submitted" + * means any form of electronic, verbal, or written communication sent + * to the Licensor or its representatives, including but not limited to + * communication on electronic mailing lists, source code control systems, + * and issue tracking systems that are managed by, or on behalf of, the + * Licensor for the purpose of discussing and improving the Work, but + * excluding communication that is conspicuously marked or otherwise + * designated in writing by the copyright owner as "Not a Contribution." + * + * "Contributor" shall mean Licensor and any individual or Legal Entity + * on behalf of whom a Contribution has been received by Licensor and + * subsequently incorporated within the Work. + * + * 2. Grant of Copyright License. Subject to the terms and conditions of + * this License, each Contributor hereby grants to You a perpetual, + * worldwide, non-exclusive, no-charge, royalty-free, irrevocable + * copyright license to reproduce, prepare Derivative Works of, + * publicly display, publicly perform, sublicense, and distribute the + * Work and such Derivative Works in Source or Object form. + * + * 3. Grant of Patent License. Subject to the terms and conditions of + * this License, each Contributor hereby grants to You a perpetual, + * worldwide, non-exclusive, no-charge, royalty-free, irrevocable + * (except as stated in this section) patent license to make, have made, + * use, offer to sell, sell, import, and otherwise transfer the Work, + * where such license applies only to those patent claims licensable + * by such Contributor that are necessarily infringed by their + * Contribution(s) alone or by combination of their Contribution(s) + * with the Work to which such Contribution(s) was submitted. If You + * institute patent litigation against any entity (including a + * cross-claim or counterclaim in a lawsuit) alleging that the Work + * or a Contribution incorporated within the Work constitutes direct + * or contributory patent infringement, then any patent licenses + * granted to You under this License for that Work shall terminate + * as of the date such litigation is filed. + * + * 4. Redistribution. You may reproduce and distribute copies of the + * Work or Derivative Works thereof in any medium, with or without + * modifications, and in Source or Object form, provided that You + * meet the following conditions: + * + * (a) You must give any other recipients of the Work or + * Derivative Works a copy of this License; and + * + * (b) You must cause any modified files to carry prominent notices + * stating that You changed the files; and + * + * (c) You must retain, in the Source form of any Derivative Works + * that You distribute, all copyright, patent, trademark, and + * attribution notices from the Source form of the Work, + * excluding those notices that do not pertain to any part of + * the Derivative Works; and + * + * (d) If the Work includes a "NOTICE" text file as part of its + * distribution, then any Derivative Works that You distribute must + * include a readable copy of the attribution notices contained + * within such NOTICE file, excluding those notices that do not + * pertain to any part of the Derivative Works, in at least one + * of the following places: within a NOTICE text file distributed + * as part of the Derivative Works; within the Source form or + * documentation, if provided along with the Derivative Works; or, + * within a display generated by the Derivative Works, if and + * wherever such third-party notices normally appear. The contents + * of the NOTICE file are for informational purposes only and + * do not modify the License. You may add Your own attribution + * notices within Derivative Works that You distribute, alongside + * or as an addendum to the NOTICE text from the Work, provided + * that such additional attribution notices cannot be construed + * as modifying the License. + * + * You may add Your own copyright statement to Your modifications and + * may provide additional or different license terms and conditions + * for use, reproduction, or distribution of Your modifications, or + * for any such Derivative Works as a whole, provided Your use, + * reproduction, and distribution of the Work otherwise complies with + * the conditions stated in this License. + * + * 5. Submission of Contributions. Unless You explicitly state otherwise, + * any Contribution intentionally submitted for inclusion in the Work + * by You to the Licensor shall be under the terms and conditions of + * this License, without any additional terms or conditions. + * Notwithstanding the above, nothing herein shall supersede or modify + * the terms of any separate license agreement you may have executed + * with Licensor regarding such Contributions. + * + * 6. Trademarks. This License does not grant permission to use the trade + * names, trademarks, service marks, or product names of the Licensor, + * except as required for reasonable and customary use in describing the + * origin of the Work and reproducing the content of the NOTICE file. + * + * 7. Disclaimer of Warranty. Unless required by applicable law or + * agreed to in writing, Licensor provides the Work (and each + * Contributor provides its Contributions) on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + * implied, including, without limitation, any warranties or conditions + * of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + * PARTICULAR PURPOSE. You are solely responsible for determining the + * appropriateness of using or redistributing the Work and assume any + * risks associated with Your exercise of permissions under this License. + * + * 8. Limitation of Liability. In no event and under no legal theory, + * whether in tort (including negligence), contract, or otherwise, + * unless required by applicable law (such as deliberate and grossly + * negligent acts) or agreed to in writing, shall any Contributor be + * liable to You for damages, including any direct, indirect, special, + * incidental, or consequential damages of any character arising as a + * result of this License or out of the use or inability to use the + * Work (including but not limited to damages for loss of goodwill, + * work stoppage, computer failure or malfunction, or any and all + * other commercial damages or losses), even if such Contributor + * has been advised of the possibility of such damages. + * + * 9. Accepting Warranty or Additional Liability. While redistributing + * the Work or Derivative Works thereof, You may choose to offer, + * and charge a fee for, acceptance of support, warranty, indemnity, + * or other liability obligations and/or rights consistent with this + * License. However, in accepting such obligations, You may act only + * on Your own behalf and on Your sole responsibility, not on behalf + * of any other Contributor, and only if You agree to indemnify, + * defend, and hold each Contributor harmless for any liability + * incurred by, or claims asserted against, such Contributor by reason + * of your accepting any such warranty or additional liability. + * + * END OF TERMS AND CONDITIONS + * + * APPENDIX: How to apply the Apache License to your work. + * + * To apply the Apache License to your work, attach the following + * boilerplate notice, with the fields enclosed by brackets "{}" + * replaced with your own identifying information. (Don't include + * the brackets!) The text should be enclosed in the appropriate + * comment syntax for the file format. We also recommend that a + * file or class name and description of purpose be included on the + * same "printed page" as the copyright notice for easier + * identification within third-party archives. + * + * Copyright 2014 Edgar Espina + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.jooby.json; + +import static java.util.Objects.requireNonNull; + +import java.util.function.BiConsumer; +import java.util.function.Consumer; + +import javax.json.Json; +import javax.json.bind.Jsonb; +import javax.json.bind.JsonbBuilder; +import javax.json.bind.JsonbConfig; + +import org.jooby.Env; +import org.jooby.Jooby; +import org.jooby.MediaType; +import org.jooby.Parser; +import org.jooby.Renderer; + +import com.google.inject.Binder; +import com.google.inject.multibindings.Multibinder; +import com.typesafe.config.Config; + +/** + * JSON support via Yasson library. + * + *

exposes

+ * + *
    + *
  • A {@link Jsonb}
  • + *
  • A {@link Parser}
  • + *
  • A {@link Renderer}
  • + *
+ * + *

usage

+ * + *
+ * {
+ *   use(new Yasson());
+ *
+ *   // sending
+ *   get("/my-api", req {@literal ->} new MyObject());
+ *
+ *   // receiving a json body
+ *   post("/my-api", req {@literal ->} {
+ *     MyObject obj = req.body(MyObject.class);
+ *     return obj;
+ *   });
+ *
+ *   // direct access to Gson
+ *   get("/access", req {@literal ->} {
+ *     Jsonb jsonb = req.require(Jsonb.class);
+ *     // ...
+ *   });
+ * }
+ * 
+ * + *

configuration

+ * + *

+ * If you need a special setting or configuration for your {@link Jsonb}: + *

+ * + *
+ * {
+ *   use(new Yasson().doWith(builder {@literal ->} {
+ *     builder.withFormatting(true);
+ *     // ...
+ *   });
+ * }
+ * 
+ * + * @author Daniel Dias + * @since 1.6.0 + */ +public class Yasson implements Jooby.Module { + + private final MediaType type; + + private BiConsumer configurer; + + public Yasson(final MediaType type) { + this.type = requireNonNull(type, "Media type is required."); + } + + public Yasson() { + this(MediaType.json); + } + + public Yasson doWith(final BiConsumer configurer) { + this.configurer = requireNonNull(configurer, "Configurer callback is required."); + return this; + } + + public Yasson doWith(final Consumer configurer) { + requireNonNull(configurer, "Configurer callback is required."); + this.configurer = (jsonConfig, conf) -> configurer.accept(jsonConfig); + return this; + } + + @Override + public void configure(final Env env, final Config config, final Binder binder) { + JsonbConfig jsonbConfig = new JsonbConfig(); + + if (configurer != null) { + configurer.accept(jsonbConfig, config); + } + + Jsonb jsonb = JsonbBuilder.create(jsonbConfig); + + binder.bind(Jsonb.class).toInstance(jsonb); + + Multibinder.newSetBinder(binder, Parser.class).addBinding() + .toInstance(new YassonParser(type, jsonb)); + + Multibinder.newSetBinder(binder, Renderer.class).addBinding() + .toInstance(new YassonRenderer(type, jsonb)); + } + +} diff --git a/modules/jooby-yasson/src/main/java/org/jooby/json/YassonParser.java b/modules/jooby-yasson/src/main/java/org/jooby/json/YassonParser.java new file mode 100644 index 0000000000..52df516999 --- /dev/null +++ b/modules/jooby-yasson/src/main/java/org/jooby/json/YassonParser.java @@ -0,0 +1,246 @@ +/** + * Apache License + * Version 2.0, January 2004 + * http://www.apache.org/licenses/ + * + * TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + * + * 1. Definitions. + * + * "License" shall mean the terms and conditions for use, reproduction, + * and distribution as defined by Sections 1 through 9 of this document. + * + * "Licensor" shall mean the copyright owner or entity authorized by + * the copyright owner that is granting the License. + * + * "Legal Entity" shall mean the union of the acting entity and all + * other entities that control, are controlled by, or are under common + * control with that entity. For the purposes of this definition, + * "control" means (i) the power, direct or indirect, to cause the + * direction or management of such entity, whether by contract or + * otherwise, or (ii) ownership of fifty percent (50%) or more of the + * outstanding shares, or (iii) beneficial ownership of such entity. + * + * "You" (or "Your") shall mean an individual or Legal Entity + * exercising permissions granted by this License. + * + * "Source" form shall mean the preferred form for making modifications, + * including but not limited to software source code, documentation + * source, and configuration files. + * + * "Object" form shall mean any form resulting from mechanical + * transformation or translation of a Source form, including but + * not limited to compiled object code, generated documentation, + * and conversions to other media types. + * + * "Work" shall mean the work of authorship, whether in Source or + * Object form, made available under the License, as indicated by a + * copyright notice that is included in or attached to the work + * (an example is provided in the Appendix below). + * + * "Derivative Works" shall mean any work, whether in Source or Object + * form, that is based on (or derived from) the Work and for which the + * editorial revisions, annotations, elaborations, or other modifications + * represent, as a whole, an original work of authorship. For the purposes + * of this License, Derivative Works shall not include works that remain + * separable from, or merely link (or bind by name) to the interfaces of, + * the Work and Derivative Works thereof. + * + * "Contribution" shall mean any work of authorship, including + * the original version of the Work and any modifications or additions + * to that Work or Derivative Works thereof, that is intentionally + * submitted to Licensor for inclusion in the Work by the copyright owner + * or by an individual or Legal Entity authorized to submit on behalf of + * the copyright owner. For the purposes of this definition, "submitted" + * means any form of electronic, verbal, or written communication sent + * to the Licensor or its representatives, including but not limited to + * communication on electronic mailing lists, source code control systems, + * and issue tracking systems that are managed by, or on behalf of, the + * Licensor for the purpose of discussing and improving the Work, but + * excluding communication that is conspicuously marked or otherwise + * designated in writing by the copyright owner as "Not a Contribution." + * + * "Contributor" shall mean Licensor and any individual or Legal Entity + * on behalf of whom a Contribution has been received by Licensor and + * subsequently incorporated within the Work. + * + * 2. Grant of Copyright License. Subject to the terms and conditions of + * this License, each Contributor hereby grants to You a perpetual, + * worldwide, non-exclusive, no-charge, royalty-free, irrevocable + * copyright license to reproduce, prepare Derivative Works of, + * publicly display, publicly perform, sublicense, and distribute the + * Work and such Derivative Works in Source or Object form. + * + * 3. Grant of Patent License. Subject to the terms and conditions of + * this License, each Contributor hereby grants to You a perpetual, + * worldwide, non-exclusive, no-charge, royalty-free, irrevocable + * (except as stated in this section) patent license to make, have made, + * use, offer to sell, sell, import, and otherwise transfer the Work, + * where such license applies only to those patent claims licensable + * by such Contributor that are necessarily infringed by their + * Contribution(s) alone or by combination of their Contribution(s) + * with the Work to which such Contribution(s) was submitted. If You + * institute patent litigation against any entity (including a + * cross-claim or counterclaim in a lawsuit) alleging that the Work + * or a Contribution incorporated within the Work constitutes direct + * or contributory patent infringement, then any patent licenses + * granted to You under this License for that Work shall terminate + * as of the date such litigation is filed. + * + * 4. Redistribution. You may reproduce and distribute copies of the + * Work or Derivative Works thereof in any medium, with or without + * modifications, and in Source or Object form, provided that You + * meet the following conditions: + * + * (a) You must give any other recipients of the Work or + * Derivative Works a copy of this License; and + * + * (b) You must cause any modified files to carry prominent notices + * stating that You changed the files; and + * + * (c) You must retain, in the Source form of any Derivative Works + * that You distribute, all copyright, patent, trademark, and + * attribution notices from the Source form of the Work, + * excluding those notices that do not pertain to any part of + * the Derivative Works; and + * + * (d) If the Work includes a "NOTICE" text file as part of its + * distribution, then any Derivative Works that You distribute must + * include a readable copy of the attribution notices contained + * within such NOTICE file, excluding those notices that do not + * pertain to any part of the Derivative Works, in at least one + * of the following places: within a NOTICE text file distributed + * as part of the Derivative Works; within the Source form or + * documentation, if provided along with the Derivative Works; or, + * within a display generated by the Derivative Works, if and + * wherever such third-party notices normally appear. The contents + * of the NOTICE file are for informational purposes only and + * do not modify the License. You may add Your own attribution + * notices within Derivative Works that You distribute, alongside + * or as an addendum to the NOTICE text from the Work, provided + * that such additional attribution notices cannot be construed + * as modifying the License. + * + * You may add Your own copyright statement to Your modifications and + * may provide additional or different license terms and conditions + * for use, reproduction, or distribution of Your modifications, or + * for any such Derivative Works as a whole, provided Your use, + * reproduction, and distribution of the Work otherwise complies with + * the conditions stated in this License. + * + * 5. Submission of Contributions. Unless You explicitly state otherwise, + * any Contribution intentionally submitted for inclusion in the Work + * by You to the Licensor shall be under the terms and conditions of + * this License, without any additional terms or conditions. + * Notwithstanding the above, nothing herein shall supersede or modify + * the terms of any separate license agreement you may have executed + * with Licensor regarding such Contributions. + * + * 6. Trademarks. This License does not grant permission to use the trade + * names, trademarks, service marks, or product names of the Licensor, + * except as required for reasonable and customary use in describing the + * origin of the Work and reproducing the content of the NOTICE file. + * + * 7. Disclaimer of Warranty. Unless required by applicable law or + * agreed to in writing, Licensor provides the Work (and each + * Contributor provides its Contributions) on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + * implied, including, without limitation, any warranties or conditions + * of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + * PARTICULAR PURPOSE. You are solely responsible for determining the + * appropriateness of using or redistributing the Work and assume any + * risks associated with Your exercise of permissions under this License. + * + * 8. Limitation of Liability. In no event and under no legal theory, + * whether in tort (including negligence), contract, or otherwise, + * unless required by applicable law (such as deliberate and grossly + * negligent acts) or agreed to in writing, shall any Contributor be + * liable to You for damages, including any direct, indirect, special, + * incidental, or consequential damages of any character arising as a + * result of this License or out of the use or inability to use the + * Work (including but not limited to damages for loss of goodwill, + * work stoppage, computer failure or malfunction, or any and all + * other commercial damages or losses), even if such Contributor + * has been advised of the possibility of such damages. + * + * 9. Accepting Warranty or Additional Liability. While redistributing + * the Work or Derivative Works thereof, You may choose to offer, + * and charge a fee for, acceptance of support, warranty, indemnity, + * or other liability obligations and/or rights consistent with this + * License. However, in accepting such obligations, You may act only + * on Your own behalf and on Your sole responsibility, not on behalf + * of any other Contributor, and only if You agree to indemnify, + * defend, and hold each Contributor harmless for any liability + * incurred by, or claims asserted against, such Contributor by reason + * of your accepting any such warranty or additional liability. + * + * END OF TERMS AND CONDITIONS + * + * APPENDIX: How to apply the Apache License to your work. + * + * To apply the Apache License to your work, attach the following + * boilerplate notice, with the fields enclosed by brackets "{}" + * replaced with your own identifying information. (Don't include + * the brackets!) The text should be enclosed in the appropriate + * comment syntax for the file format. We also recommend that a + * file or class name and description of purpose be included on the + * same "printed page" as the copyright notice for easier + * identification within third-party archives. + * + * Copyright 2014 Edgar Espina + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.jooby.json; + +import static java.util.Objects.requireNonNull; +import javax.json.bind.Jsonb; + +import org.jooby.MediaType; +import org.jooby.Parser; +import org.jooby.Parser.Context; + +import com.google.inject.TypeLiteral; + +class YassonParser implements Parser { + + private final MediaType type; + + private final Jsonb jsonb; + + public YassonParser(final MediaType type, final Jsonb jsonb) { + this.type = requireNonNull(type, "Media type is required."); + this.jsonb = requireNonNull(jsonb, "Jsonb is required."); + } + + @Override + public Object parse(final TypeLiteral type, final Context ctx) throws Throwable { + MediaType ctype = ctx.type(); + if (ctype.isAny()) { + // */* + return ctx.next(); + } + + if (ctype.matches(this.type)) { + return ctx + .ifbody(body -> jsonb.fromJson(body.text(), type.getType())) + .ifparam(values -> jsonb.fromJson(values.first(), type.getType())); + } + return ctx.next(); + } + + @Override + public String toString() { + return "yasson"; + } +} diff --git a/modules/jooby-yasson/src/main/java/org/jooby/json/YassonRenderer.java b/modules/jooby-yasson/src/main/java/org/jooby/json/YassonRenderer.java new file mode 100644 index 0000000000..029525f7cf --- /dev/null +++ b/modules/jooby-yasson/src/main/java/org/jooby/json/YassonRenderer.java @@ -0,0 +1,242 @@ +/** + * Apache License + * Version 2.0, January 2004 + * http://www.apache.org/licenses/ + * + * TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + * + * 1. Definitions. + * + * "License" shall mean the terms and conditions for use, reproduction, + * and distribution as defined by Sections 1 through 9 of this document. + * + * "Licensor" shall mean the copyright owner or entity authorized by + * the copyright owner that is granting the License. + * + * "Legal Entity" shall mean the union of the acting entity and all + * other entities that control, are controlled by, or are under common + * control with that entity. For the purposes of this definition, + * "control" means (i) the power, direct or indirect, to cause the + * direction or management of such entity, whether by contract or + * otherwise, or (ii) ownership of fifty percent (50%) or more of the + * outstanding shares, or (iii) beneficial ownership of such entity. + * + * "You" (or "Your") shall mean an individual or Legal Entity + * exercising permissions granted by this License. + * + * "Source" form shall mean the preferred form for making modifications, + * including but not limited to software source code, documentation + * source, and configuration files. + * + * "Object" form shall mean any form resulting from mechanical + * transformation or translation of a Source form, including but + * not limited to compiled object code, generated documentation, + * and conversions to other media types. + * + * "Work" shall mean the work of authorship, whether in Source or + * Object form, made available under the License, as indicated by a + * copyright notice that is included in or attached to the work + * (an example is provided in the Appendix below). + * + * "Derivative Works" shall mean any work, whether in Source or Object + * form, that is based on (or derived from) the Work and for which the + * editorial revisions, annotations, elaborations, or other modifications + * represent, as a whole, an original work of authorship. For the purposes + * of this License, Derivative Works shall not include works that remain + * separable from, or merely link (or bind by name) to the interfaces of, + * the Work and Derivative Works thereof. + * + * "Contribution" shall mean any work of authorship, including + * the original version of the Work and any modifications or additions + * to that Work or Derivative Works thereof, that is intentionally + * submitted to Licensor for inclusion in the Work by the copyright owner + * or by an individual or Legal Entity authorized to submit on behalf of + * the copyright owner. For the purposes of this definition, "submitted" + * means any form of electronic, verbal, or written communication sent + * to the Licensor or its representatives, including but not limited to + * communication on electronic mailing lists, source code control systems, + * and issue tracking systems that are managed by, or on behalf of, the + * Licensor for the purpose of discussing and improving the Work, but + * excluding communication that is conspicuously marked or otherwise + * designated in writing by the copyright owner as "Not a Contribution." + * + * "Contributor" shall mean Licensor and any individual or Legal Entity + * on behalf of whom a Contribution has been received by Licensor and + * subsequently incorporated within the Work. + * + * 2. Grant of Copyright License. Subject to the terms and conditions of + * this License, each Contributor hereby grants to You a perpetual, + * worldwide, non-exclusive, no-charge, royalty-free, irrevocable + * copyright license to reproduce, prepare Derivative Works of, + * publicly display, publicly perform, sublicense, and distribute the + * Work and such Derivative Works in Source or Object form. + * + * 3. Grant of Patent License. Subject to the terms and conditions of + * this License, each Contributor hereby grants to You a perpetual, + * worldwide, non-exclusive, no-charge, royalty-free, irrevocable + * (except as stated in this section) patent license to make, have made, + * use, offer to sell, sell, import, and otherwise transfer the Work, + * where such license applies only to those patent claims licensable + * by such Contributor that are necessarily infringed by their + * Contribution(s) alone or by combination of their Contribution(s) + * with the Work to which such Contribution(s) was submitted. If You + * institute patent litigation against any entity (including a + * cross-claim or counterclaim in a lawsuit) alleging that the Work + * or a Contribution incorporated within the Work constitutes direct + * or contributory patent infringement, then any patent licenses + * granted to You under this License for that Work shall terminate + * as of the date such litigation is filed. + * + * 4. Redistribution. You may reproduce and distribute copies of the + * Work or Derivative Works thereof in any medium, with or without + * modifications, and in Source or Object form, provided that You + * meet the following conditions: + * + * (a) You must give any other recipients of the Work or + * Derivative Works a copy of this License; and + * + * (b) You must cause any modified files to carry prominent notices + * stating that You changed the files; and + * + * (c) You must retain, in the Source form of any Derivative Works + * that You distribute, all copyright, patent, trademark, and + * attribution notices from the Source form of the Work, + * excluding those notices that do not pertain to any part of + * the Derivative Works; and + * + * (d) If the Work includes a "NOTICE" text file as part of its + * distribution, then any Derivative Works that You distribute must + * include a readable copy of the attribution notices contained + * within such NOTICE file, excluding those notices that do not + * pertain to any part of the Derivative Works, in at least one + * of the following places: within a NOTICE text file distributed + * as part of the Derivative Works; within the Source form or + * documentation, if provided along with the Derivative Works; or, + * within a display generated by the Derivative Works, if and + * wherever such third-party notices normally appear. The contents + * of the NOTICE file are for informational purposes only and + * do not modify the License. You may add Your own attribution + * notices within Derivative Works that You distribute, alongside + * or as an addendum to the NOTICE text from the Work, provided + * that such additional attribution notices cannot be construed + * as modifying the License. + * + * You may add Your own copyright statement to Your modifications and + * may provide additional or different license terms and conditions + * for use, reproduction, or distribution of Your modifications, or + * for any such Derivative Works as a whole, provided Your use, + * reproduction, and distribution of the Work otherwise complies with + * the conditions stated in this License. + * + * 5. Submission of Contributions. Unless You explicitly state otherwise, + * any Contribution intentionally submitted for inclusion in the Work + * by You to the Licensor shall be under the terms and conditions of + * this License, without any additional terms or conditions. + * Notwithstanding the above, nothing herein shall supersede or modify + * the terms of any separate license agreement you may have executed + * with Licensor regarding such Contributions. + * + * 6. Trademarks. This License does not grant permission to use the trade + * names, trademarks, service marks, or product names of the Licensor, + * except as required for reasonable and customary use in describing the + * origin of the Work and reproducing the content of the NOTICE file. + * + * 7. Disclaimer of Warranty. Unless required by applicable law or + * agreed to in writing, Licensor provides the Work (and each + * Contributor provides its Contributions) on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + * implied, including, without limitation, any warranties or conditions + * of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + * PARTICULAR PURPOSE. You are solely responsible for determining the + * appropriateness of using or redistributing the Work and assume any + * risks associated with Your exercise of permissions under this License. + * + * 8. Limitation of Liability. In no event and under no legal theory, + * whether in tort (including negligence), contract, or otherwise, + * unless required by applicable law (such as deliberate and grossly + * negligent acts) or agreed to in writing, shall any Contributor be + * liable to You for damages, including any direct, indirect, special, + * incidental, or consequential damages of any character arising as a + * result of this License or out of the use or inability to use the + * Work (including but not limited to damages for loss of goodwill, + * work stoppage, computer failure or malfunction, or any and all + * other commercial damages or losses), even if such Contributor + * has been advised of the possibility of such damages. + * + * 9. Accepting Warranty or Additional Liability. While redistributing + * the Work or Derivative Works thereof, You may choose to offer, + * and charge a fee for, acceptance of support, warranty, indemnity, + * or other liability obligations and/or rights consistent with this + * License. However, in accepting such obligations, You may act only + * on Your own behalf and on Your sole responsibility, not on behalf + * of any other Contributor, and only if You agree to indemnify, + * defend, and hold each Contributor harmless for any liability + * incurred by, or claims asserted against, such Contributor by reason + * of your accepting any such warranty or additional liability. + * + * END OF TERMS AND CONDITIONS + * + * APPENDIX: How to apply the Apache License to your work. + * + * To apply the Apache License to your work, attach the following + * boilerplate notice, with the fields enclosed by brackets "{}" + * replaced with your own identifying information. (Don't include + * the brackets!) The text should be enclosed in the appropriate + * comment syntax for the file format. We also recommend that a + * file or class name and description of purpose be included on the + * same "printed page" as the copyright notice for easier + * identification within third-party archives. + * + * Copyright 2014 Edgar Espina + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.jooby.json; + +import static java.util.Objects.requireNonNull; + +import javax.json.bind.Jsonb; + +import org.jooby.MediaType; +import org.jooby.Renderer; + +public class YassonRenderer implements Renderer { + + private final MediaType type; + + private final Jsonb jsonb; + + public YassonRenderer(final MediaType type, final Jsonb jsonb) { + this.type = requireNonNull(type, "Media type is required."); + + this.jsonb = requireNonNull(jsonb, "Jsonb is required."); + } + + @Override + public void render(final Object object, final Context ctx) throws Exception { + if (ctx.accepts(this.type)) { + ctx.type(this.type) + .send(jsonb.toJson(object)); + } + } + + @Override + public String name() { + return "json"; + } + + @Override + public String toString() { + return name(); + } +} diff --git a/modules/jooby-yasson/src/test/java/org/jooby/json/YassonParserTest.java b/modules/jooby-yasson/src/test/java/org/jooby/json/YassonParserTest.java new file mode 100644 index 0000000000..5b4f6e618d --- /dev/null +++ b/modules/jooby-yasson/src/test/java/org/jooby/json/YassonParserTest.java @@ -0,0 +1,124 @@ +package org.jooby.json; + +import static org.easymock.EasyMock.expect; +import static org.junit.Assert.assertEquals; + +import javax.json.bind.Jsonb; + +import org.jooby.MediaType; +import org.jooby.Parser; +import org.jooby.Parser.Context; +import org.jooby.test.MockUnit; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.powermock.core.classloader.annotations.PrepareForTest; +import org.powermock.modules.junit4.PowerMockRunner; +import com.google.inject.TypeLiteral; + +@RunWith(PowerMockRunner.class) +@PrepareForTest({YassonParser.class, Jsonb.class }) +public class YassonParserTest { + + @SuppressWarnings("unchecked") + @Test + public void parseBody() throws Exception { + TypeLiteral type = TypeLiteral.get(YassonParserTest.class); + Object value = new Object(); + new MockUnit(Jsonb.class, Parser.Context.class, Parser.BodyReference.class) + .expect(unit -> { + Context ctx = unit.get(Parser.Context.class); + expect(ctx.type()).andReturn(MediaType.json); + + Parser.Builder builder = unit.mock(Parser.Builder.class); + + expect(ctx.ifbody(unit.capture(Parser.Callback.class))).andReturn(builder); + expect(builder.ifparam(unit.capture(Parser.Callback.class))).andReturn(builder); + }) + .expect(unit -> { + Parser.BodyReference ref = unit.get(Parser.BodyReference.class); + expect(ref.text()).andReturn("{}"); + }) + .expect(unit -> { + Jsonb jsonb = unit.get(Jsonb.class); + expect(jsonb.fromJson("{}", type.getType())).andReturn(value); + }) + .run(unit -> { + new YassonParser(MediaType.json, unit.get(Jsonb.class)) + .parse(type, unit.get(Parser.Context.class)); + }, unit -> { + unit.captured(Parser.Callback.class).iterator().next() + .invoke(unit.get(Parser.BodyReference.class)); + }); + } + + @SuppressWarnings("unchecked") + @Test + public void parseParam() throws Exception { + TypeLiteral type = TypeLiteral.get(YassonParserTest.class); + Object value = new Object(); + new MockUnit(Jsonb.class, Parser.Context.class, Parser.ParamReference.class) + .expect(unit -> { + Context ctx = unit.get(Parser.Context.class); + expect(ctx.type()).andReturn(MediaType.json); + + Parser.Builder builder = unit.mock(Parser.Builder.class); + + expect(ctx.ifbody(unit.capture(Parser.Callback.class))).andReturn(builder); + expect(builder.ifparam(unit.capture(Parser.Callback.class))).andReturn(builder); + }) + .expect(unit -> { + Parser.ParamReference ref = unit.get(Parser.ParamReference.class); + expect(ref.first()).andReturn("{}"); + }) + .expect(unit -> { + Jsonb jsonb = unit.get(Jsonb.class); + expect(jsonb.fromJson("{}", type.getType())).andReturn(value); + }) + .run(unit -> { + new YassonParser(MediaType.json, unit.get(Jsonb.class)) + .parse(type, unit.get(Parser.Context.class)); + }, unit -> { + unit.captured(Parser.Callback.class).get(1) + .invoke(unit.get(Parser.ParamReference.class)); + }); + } + + @Test + public void next() throws Exception { + TypeLiteral type = TypeLiteral.get(YassonParserTest.class); + new MockUnit(Jsonb.class, Parser.Context.class, Parser.BodyReference.class) + .expect(unit -> { + Context ctx = unit.get(Parser.Context.class); + expect(ctx.type()).andReturn(MediaType.html); + expect(ctx.next()).andReturn(null); + }) + .run(unit -> { + new YassonParser(MediaType.json, unit.get(Jsonb.class)) + .parse(type, unit.get(Parser.Context.class)); + }); + } + + @Test + public void nextAny() throws Exception { + TypeLiteral type = TypeLiteral.get(YassonParserTest.class); + new MockUnit(Jsonb.class, Parser.Context.class, Parser.BodyReference.class) + .expect(unit -> { + Context ctx = unit.get(Parser.Context.class); + expect(ctx.type()).andReturn(MediaType.all); + expect(ctx.next()).andReturn(null); + }) + .run(unit -> { + new YassonParser(MediaType.json, unit.get(Jsonb.class)) + .parse(type, unit.get(Parser.Context.class)); + }); + } + + @Test + public void toStr() throws Exception { + new MockUnit(Jsonb.class) + .run(unit -> { + assertEquals("yasson", new YassonParser(MediaType.json, unit.get(Jsonb.class)).toString()); + }); + } + +} diff --git a/modules/jooby-yasson/src/test/java/org/jooby/json/YassonRendererTest.java b/modules/jooby-yasson/src/test/java/org/jooby/json/YassonRendererTest.java new file mode 100644 index 0000000000..8e8d0d5064 --- /dev/null +++ b/modules/jooby-yasson/src/test/java/org/jooby/json/YassonRendererTest.java @@ -0,0 +1,64 @@ +package org.jooby.json; + +import static org.easymock.EasyMock.expect; +import static org.junit.Assert.assertEquals; + +import javax.json.bind.Jsonb; + +import org.jooby.MediaType; +import org.jooby.Renderer; +import org.jooby.Renderer.Context; +import org.jooby.test.MockUnit; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.powermock.core.classloader.annotations.PrepareForTest; +import org.powermock.modules.junit4.PowerMockRunner; + +@RunWith(PowerMockRunner.class) +@PrepareForTest({YassonRenderer.class, Jsonb.class }) +public class YassonRendererTest { + + @Test + public void render() throws Exception { + Object value = new YassonRendererTest(); + new MockUnit(Jsonb.class, Renderer.Context.class) + .expect(unit -> { + Context ctx = unit.get(Renderer.Context.class); + expect(ctx.accepts(MediaType.json)).andReturn(true); + expect(ctx.type(MediaType.json)).andReturn(ctx); + ctx.send("{}"); + }) + .expect(unit -> { + Jsonb gson = unit.get(Jsonb.class); + expect(gson.toJson(value)).andReturn("{}"); + }) + .run(unit -> { + new YassonRenderer(MediaType.json, unit.get(Jsonb.class)) + .render(value, unit.get(Renderer.Context.class)); + }, unit -> { + }); + } + + @Test + public void renderSkip() throws Exception { + Object value = new YassonRendererTest(); + new MockUnit(Jsonb.class, Renderer.Context.class) + .expect(unit -> { + Context ctx = unit.get(Renderer.Context.class); + expect(ctx.accepts(MediaType.json)).andReturn(false); + }) + .run(unit -> { + new YassonRenderer(MediaType.json, unit.get(Jsonb.class)) + .render(value, unit.get(Renderer.Context.class)); + }, unit -> { + }); + } + + @Test + public void toStr() throws Exception { + new MockUnit(Jsonb.class) + .run(unit -> { + assertEquals("json", new YassonRenderer(MediaType.json, unit.get(Jsonb.class)).toString()); + }); + } +} diff --git a/modules/pom.xml b/modules/pom.xml index d309e9ac14..0bae83e6f0 100644 --- a/modules/pom.xml +++ b/modules/pom.xml @@ -80,6 +80,7 @@ jooby-rocker jooby-livereload jooby-eventbus + jooby-yasson jooby-frontend jooby-assets diff --git a/pom.xml b/pom.xml index 521383e8e9..6e69173622 100644 --- a/pom.xml +++ b/pom.xml @@ -125,6 +125,12 @@ ${jooby.version} + + org.jooby + jooby-yasson + ${jooby.version} + + org.jooby jooby-maven-plugin @@ -899,6 +905,19 @@ ${gson.version} + + + org.eclipse + yasson + ${yasson.version} + + + + org.glassfish + javax.json + ${javax.json.version} + + org.jdbi @@ -3150,6 +3169,8 @@ org.eclipse.jdt.apt.processorOptions/defaultOverwrite=true 2.5.0 25.1-jre 2.8.5 + 1.0.1 + 1.1 4.2.0 1.4.197 4.1.0 From b8993b71a6f85d061dd79991dd193288fc87db41 Mon Sep 17 00:00:00 2001 From: Daniel Dias Date: Mon, 22 Oct 2018 12:17:58 -0200 Subject: [PATCH 11/93] fix name Gson to Json-b --- modules/jooby-yasson/src/main/java/org/jooby/json/Yasson.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/jooby-yasson/src/main/java/org/jooby/json/Yasson.java b/modules/jooby-yasson/src/main/java/org/jooby/json/Yasson.java index 2cb56c5404..8072f7d67e 100644 --- a/modules/jooby-yasson/src/main/java/org/jooby/json/Yasson.java +++ b/modules/jooby-yasson/src/main/java/org/jooby/json/Yasson.java @@ -249,7 +249,7 @@ * return obj; * }); * - * // direct access to Gson + * // direct access to Jsonb * get("/access", req {@literal ->} { * Jsonb jsonb = req.require(Jsonb.class); * // ... From c303996680d8351c338f9bf9f58db52218fce0b3 Mon Sep 17 00:00:00 2001 From: Daniel Dias Date: Mon, 22 Oct 2018 22:50:38 -0200 Subject: [PATCH 12/93] update dependencies --- modules/jooby-hbv/pom.xml | 2 +- pom.xml | 18 +++++++++--------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/modules/jooby-hbv/pom.xml b/modules/jooby-hbv/pom.xml index ffc103977e..e07bf68d08 100644 --- a/modules/jooby-hbv/pom.xml +++ b/modules/jooby-hbv/pom.xml @@ -49,7 +49,7 @@ - org.glassfish.web + org.glassfish javax.el diff --git a/pom.xml b/pom.xml index 6e69173622..8b0014f14d 100644 --- a/pom.xml +++ b/pom.xml @@ -1133,7 +1133,7 @@ - org.glassfish.web + org.glassfish javax.el ${javax.el-ref.version} @@ -3174,17 +3174,17 @@ org.eclipse.jdt.apt.processorOptions/defaultOverwrite=true 4.2.0 1.4.197 4.1.0 - 3.10.2 + 3.11 5.1.3.Final 5.2.1.Final 3.2.0 4.5.5 4.6.0 - 2.9.6 + 2.9.7 1.2.7 3.22.0-GA - 2.2.5 - 2.2.6 + 3.0.1-b06 + 3.0.1-b10 1 2.0 1.8.5.Final @@ -3212,11 +3212,11 @@ org.eclipse.jdt.apt.processorOptions/defaultOverwrite=true 3.8.0 ${mongo-java-driver.version} 1.3.2 - 5.1.42 + 5.1.47 3.4.0.52.4 3.4.0.52 3.3.2 - 4.1.27.Final + 4.1.30.Final 1.9.9 2.3.1 2.4.0 @@ -3241,7 +3241,7 @@ org.eclipse.jdt.apt.processorOptions/defaultOverwrite=true 3.0.0 3.17.1 1.5.20 - 3.0.9.RELEASE + 3.0.10.RELEASE 2.0.9.Final 2.1 2.4.8 @@ -3254,7 +3254,7 @@ org.eclipse.jdt.apt.processorOptions/defaultOverwrite=true 3.11.2 - 4.1.4 + 4.2.1 2.0.4 From 4f89f051a6d6b96c57c3519e1170c158fe31516b Mon Sep 17 00:00:00 2001 From: lis Date: Mon, 31 Dec 2018 10:47:29 +0400 Subject: [PATCH 13/93] upgrade latest version --- modules/jooby-bom/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/jooby-bom/pom.xml b/modules/jooby-bom/pom.xml index fb44987d11..0f50c1ccb9 100644 --- a/modules/jooby-bom/pom.xml +++ b/modules/jooby-bom/pom.xml @@ -67,7 +67,7 @@ 3.9.0 2.78 3.3.0 - 2.9.0 + 3.0.1 1.19.4 9.4.10.v20180503 1.4.0 From b7923e4d74027810abfb2714b9e9f99b599b9f5c Mon Sep 17 00:00:00 2001 From: lis Date: Mon, 31 Dec 2018 10:47:45 +0400 Subject: [PATCH 14/93] use interface --- .../src/main/java/org/jooby/jedis/RedisProvider.java | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/modules/jooby-jedis/src/main/java/org/jooby/jedis/RedisProvider.java b/modules/jooby-jedis/src/main/java/org/jooby/jedis/RedisProvider.java index d7e355dc41..1495ca2261 100644 --- a/modules/jooby-jedis/src/main/java/org/jooby/jedis/RedisProvider.java +++ b/modules/jooby-jedis/src/main/java/org/jooby/jedis/RedisProvider.java @@ -203,26 +203,25 @@ */ package org.jooby.jedis; -import java.net.URI; - import org.apache.commons.pool2.impl.GenericObjectPoolConfig; import org.slf4j.Logger; import org.slf4j.LoggerFactory; +import redis.clients.util.Pool; -import redis.clients.jedis.JedisPool; +import java.net.URI; class RedisProvider { /** The logging system. */ private final Logger log = LoggerFactory.getLogger(Redis.class); - private JedisPool pool; + private Pool pool; private URI uri; private GenericObjectPoolConfig config; - public RedisProvider(final JedisPool pool, final URI uri, final GenericObjectPoolConfig config) { + public RedisProvider(final Pool pool, final URI uri, final GenericObjectPoolConfig config) { this.pool = pool; this.uri = uri; this.config = config; From 32f61678ef3f7237da157a7dafc7f6d63cd2768a Mon Sep 17 00:00:00 2001 From: lis Date: Mon, 31 Dec 2018 10:47:59 +0400 Subject: [PATCH 15/93] add RedisSentinel --- .../java/org/jooby/jedis/RedisSentinel.java | 135 ++++++++++++++++++ 1 file changed, 135 insertions(+) create mode 100644 modules/jooby-jedis/src/main/java/org/jooby/jedis/RedisSentinel.java diff --git a/modules/jooby-jedis/src/main/java/org/jooby/jedis/RedisSentinel.java b/modules/jooby-jedis/src/main/java/org/jooby/jedis/RedisSentinel.java new file mode 100644 index 0000000000..1798fa3cec --- /dev/null +++ b/modules/jooby-jedis/src/main/java/org/jooby/jedis/RedisSentinel.java @@ -0,0 +1,135 @@ +package org.jooby.jedis; + +import com.google.inject.Binder; +import com.typesafe.config.Config; +import com.typesafe.config.ConfigFactory; +import org.apache.commons.pool2.impl.GenericObjectPoolConfig; +import org.jooby.Env; +import org.jooby.Jooby; +import redis.clients.jedis.Jedis; +import redis.clients.jedis.JedisSentinelPool; + +import javax.inject.Provider; +import java.net.URI; +import java.util.HashSet; +import java.util.Set; +import java.util.concurrent.TimeUnit; + +import static java.util.Objects.requireNonNull; + +/** + * Created by + * + * @Author: lis, Luganski Igor + * @since 1.5.0 + */ +public class RedisSentinel implements Jooby.Module { + + /** + * Database name. + */ + private String name = "db"; + + private Set sentinels = new HashSet(); + + /** + *

+ * Creates a new {@link Redis} instance and connect to the provided database. Please note, the + * name is a property in your application.conf file with Redis URI. + *

+ * + *
+     * {
+     *   use(new Redis("db1"));
+     * }
+     * 
+ * + * application.conf + * + *
+     * db1 = ""redis://localhost:6379""
+     * 
+ * + * Default database name is: db + * + * @param name A database name. + */ + public RedisSentinel(final String name) { + this.name = requireNonNull(name, "A db property is required."); + } + + @Override + public void configure(Env env, Config config, Binder binder) throws Throwable { + /** + * Pool + */ + GenericObjectPoolConfig poolConfig = poolConfig(config, name); + int timeout = (int) config.getDuration("jedis.timeout", TimeUnit.MILLISECONDS); + URI uri = URI.create(config.getString(name)); + + String MASTER_NAME = ""; //todo take from Config + String REDIS_PASSWORD = ""; //todo take from Config + //todo take from Config +// sentinels.add("mymaster-0.servers.example.com:26379"); +// sentinels.add("mymaster-1.servers.example.com:26379"); +// sentinels.add("mymaster-2.servers.example.com:26379"); + +// JedisSentinelPool pool = new JedisSentinelPool(MASTER_NAME, sentinels, poolConfig); + JedisSentinelPool pool = new JedisSentinelPool(MASTER_NAME, sentinels, poolConfig, REDIS_PASSWORD); + + RedisProvider provider = new RedisProvider(pool, uri, poolConfig); + pool.destroy(); + env.onStart(provider::start); + env.onStop(provider::stop); + + Provider jedis = (Provider) () -> pool.getResource(); + + Env.ServiceKey serviceKey = env.serviceKey(); + serviceKey.generate(JedisSentinelPool.class, name, k -> binder.bind(k).toInstance(pool)); + serviceKey.generate(Jedis.class, name, + k -> binder.bind(k).toProvider(jedis)); + + //Socket socket = jedis.getClient().getSocket(); +// printer("Connected to " + socket.getRemoteSocketAddress()); + } + + private GenericObjectPoolConfig poolConfig(final Config config, final String name) { + Config poolConfig = config.getConfig("jedis.pool"); + String override = "jedis." + name; + if (config.hasPath(override)) { + poolConfig = config.getConfig(override).withFallback(poolConfig); + } + return poolConfig(poolConfig); + } + + private GenericObjectPoolConfig poolConfig(final Config config) { + GenericObjectPoolConfig poolConfig = new GenericObjectPoolConfig(); + poolConfig.setBlockWhenExhausted(config.getBoolean("blockWhenExhausted")); + poolConfig.setEvictionPolicyClassName(config.getString("evictionPolicyClassName")); + poolConfig.setJmxEnabled(config.getBoolean("jmxEnabled")); + poolConfig.setJmxNamePrefix(config.getString("jmxNamePrefix")); + poolConfig.setLifo(config.getBoolean("lifo")); + poolConfig.setMaxIdle(config.getInt("maxIdle")); + poolConfig.setMaxTotal(config.getInt("maxTotal")); + poolConfig.setMaxWaitMillis(config.getDuration("maxWait", TimeUnit.MILLISECONDS)); + poolConfig.setMinEvictableIdleTimeMillis(config.getDuration("minEvictableIdle", + TimeUnit.MILLISECONDS)); + poolConfig.setMinIdle(config.getInt("minIdle")); + poolConfig.setNumTestsPerEvictionRun(config.getInt("numTestsPerEvictionRun")); + poolConfig.setSoftMinEvictableIdleTimeMillis( + config.getDuration("softMinEvictableIdle", TimeUnit.MILLISECONDS)); + poolConfig.setTestOnBorrow(config.getBoolean("testOnBorrow")); + poolConfig.setTestOnReturn(config.getBoolean("testOnReturn")); + poolConfig.setTestWhileIdle(config.getBoolean("testWhileIdle")); + poolConfig.setTimeBetweenEvictionRunsMillis(config.getDuration("timeBetweenEvictionRuns", + TimeUnit.MILLISECONDS)); + + return poolConfig; + } + + @Override + public Config config() { + return ConfigFactory.parseResources(getClass(), "jedis.conf"); + } + +} From 1b5afa4a6bca373ef8875a897d2919803897b044 Mon Sep 17 00:00:00 2001 From: Edgar Espina Date: Fri, 18 Jan 2019 20:38:08 -0300 Subject: [PATCH 16/93] Apitool does not list mvc namespaced applications fix #1276 --- .../internal/apitool/BytecodeRouteParser.java | 20 ++++--- .../src/test/java/apps/App1276.java | 10 ++++ .../src/test/java/apps/App1276b.java | 12 +++++ .../src/test/java/apps/Controller1276.java | 10 ++++ .../src/test/java/issues/Issue1276.java | 53 +++++++++++++++++++ 5 files changed, 98 insertions(+), 7 deletions(-) create mode 100644 modules/jooby-apitool/src/test/java/apps/App1276.java create mode 100644 modules/jooby-apitool/src/test/java/apps/App1276b.java create mode 100644 modules/jooby-apitool/src/test/java/apps/Controller1276.java create mode 100644 modules/jooby-apitool/src/test/java/issues/Issue1276.java diff --git a/modules/jooby-apitool/src/main/java/org/jooby/internal/apitool/BytecodeRouteParser.java b/modules/jooby-apitool/src/main/java/org/jooby/internal/apitool/BytecodeRouteParser.java index df0d7d4844..72b1c0178e 100644 --- a/modules/jooby-apitool/src/main/java/org/jooby/internal/apitool/BytecodeRouteParser.java +++ b/modules/jooby-apitool/src/main/java/org/jooby/internal/apitool/BytecodeRouteParser.java @@ -534,18 +534,24 @@ private List lambdas(final ClassLoader loader, final ClassNode owner, Me .findFirst() .map(MethodInsnNode.class::cast) .ifPresent(node -> { - List lambdas = lambdas(loader, loadClass(node.owner)).stream() - .filter(Lambda.class::isInstance) - .map(Lambda.class::cast) - .collect(Collectors.toList()); + List rlist = lambdas(loader, loadClass(node.owner)); + Insn.ldcFor(node).stream() .map(e -> e.cst.toString()) .findFirst() .ifPresent(prefix -> { - IntStream.range(0, lambdas.size()) - .forEach(i -> lambdas.set(i, lambdas.get(i).prefix(prefix))); + IntStream.range(0, rlist.size()) + .forEach(i -> { + Object o = rlist.get(i); + if (o instanceof Lambda) { + rlist.set(i, ((Lambda) o).prefix(prefix)); + } else { + RouteMethod r = (RouteMethod) o; + r.pattern(prefix + r.pattern()); + } + }); }); - result.addAll(lambdas); + result.addAll(rlist); }); }) .forEach(); diff --git a/modules/jooby-apitool/src/test/java/apps/App1276.java b/modules/jooby-apitool/src/test/java/apps/App1276.java new file mode 100644 index 0000000000..b552d58ab9 --- /dev/null +++ b/modules/jooby-apitool/src/test/java/apps/App1276.java @@ -0,0 +1,10 @@ +package apps; + +import org.jooby.Jooby; + +public class App1276 extends Jooby { + + { + use("/namespace", new App1276b()); + } +} diff --git a/modules/jooby-apitool/src/test/java/apps/App1276b.java b/modules/jooby-apitool/src/test/java/apps/App1276b.java new file mode 100644 index 0000000000..bf42adc751 --- /dev/null +++ b/modules/jooby-apitool/src/test/java/apps/App1276b.java @@ -0,0 +1,12 @@ +package apps; + +import org.jooby.Jooby; + +public class App1276b extends Jooby { + + { + use(Controller1276.class); + + get("/foo", () -> { return "I'm listed"; }); + } +} diff --git a/modules/jooby-apitool/src/test/java/apps/Controller1276.java b/modules/jooby-apitool/src/test/java/apps/Controller1276.java new file mode 100644 index 0000000000..924dad9826 --- /dev/null +++ b/modules/jooby-apitool/src/test/java/apps/Controller1276.java @@ -0,0 +1,10 @@ +package apps; + +import org.jooby.mvc.Path; + +public class Controller1276 { + @Path("/1176") + public String foo() { + return ""; + } +} diff --git a/modules/jooby-apitool/src/test/java/issues/Issue1276.java b/modules/jooby-apitool/src/test/java/issues/Issue1276.java new file mode 100644 index 0000000000..1d6ff9de11 --- /dev/null +++ b/modules/jooby-apitool/src/test/java/issues/Issue1276.java @@ -0,0 +1,53 @@ +package issues; + +import apps.App1276; +import org.jooby.apitool.ApiParser; +import org.jooby.apitool.ApiToolFeature; +import org.jooby.apitool.RouteMethod; +import org.junit.Test; + +import java.util.List; + +import static org.junit.Assert.assertEquals; + +public class Issue1276 extends ApiToolFeature { + + @Test + public void apitoolDoesNotListMvcNamespaced () throws Exception { + List routes = new ApiParser(dir()).parseFully(new App1276()); + + assertEquals("---\n" + + "swagger: \"2.0\"\n" + + "tags:\n" + + "- name: \"/namespace/1176\"\n" + + "- name: \"/namespace/foo\"\n" + + "consumes:\n" + + "- \"application/json\"\n" + + "produces:\n" + + "- \"application/json\"\n" + + "paths:\n" + + " /namespace/1176:\n" + + " get:\n" + + " tags:\n" + + " - \"/namespace/1176\"\n" + + " operationId: \"/Controller1276.foo\"\n" + + " parameters: []\n" + + " responses:\n" + + " 200:\n" + + " description: \"String\"\n" + + " schema:\n" + + " type: \"string\"\n" + + " /namespace/foo:\n" + + " get:\n" + + " tags:\n" + + " - \"/namespace/foo\"\n" + + " operationId: \"getNamespacefoo\"\n" + + " parameters: []\n" + + " responses:\n" + + " 200:\n" + + " description: \"String\"\n" + + " schema:\n" + + " type: \"string\"\n", yaml(swagger(routes), false)); + } + +} From a4d68068d23079e2d061d15bfb8da648e2f8af21 Mon Sep 17 00:00:00 2001 From: Edgar Espina Date: Fri, 18 Jan 2019 21:17:44 -0300 Subject: [PATCH 17/93] NullPointer in RequestLogger when using jetty server fix #1271 --- .../src/main/java/org/jooby/servlet/ServletServletResponse.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/modules/jooby-servlet/src/main/java/org/jooby/servlet/ServletServletResponse.java b/modules/jooby-servlet/src/main/java/org/jooby/servlet/ServletServletResponse.java index bb9e8f35a5..409a33463c 100644 --- a/modules/jooby-servlet/src/main/java/org/jooby/servlet/ServletServletResponse.java +++ b/modules/jooby-servlet/src/main/java/org/jooby/servlet/ServletServletResponse.java @@ -334,8 +334,6 @@ public void end() { } committed = true; } - req = null; - rsp = null; } protected void close() { From 0eed39826efa80dea3862bb1f2c7f6dbb9523408 Mon Sep 17 00:00:00 2001 From: Edgar Espina Date: Fri, 18 Jan 2019 21:27:32 -0300 Subject: [PATCH 18/93] integrte expose module into build --- modules/jooby-exposed/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/jooby-exposed/pom.xml b/modules/jooby-exposed/pom.xml index c1a7d9e664..55f57d2c95 100644 --- a/modules/jooby-exposed/pom.xml +++ b/modules/jooby-exposed/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.5.1-SNAPSHOT + 1.6.0-SNAPSHOT 4.0.0 From dcdddd1d15feb6c861556ce3b0f5f8ba42f72135 Mon Sep 17 00:00:00 2001 From: Edgar Espina Date: Sat, 19 Jan 2019 11:24:17 -0300 Subject: [PATCH 19/93] API-Tool doesn`t generate correct swagger documentation for non-functional routing fix #1261 --- .../internal/apitool/BytecodeRouteParser.java | 85 ++++++++++++------- .../org/jooby/internal/apitool/Filters.java | 5 ++ .../src/test/java/issues/Issue1261.java | 28 ++++++ .../jooby-apitool/src/test/java/kt/App1261.kt | 15 ++++ 4 files changed, 102 insertions(+), 31 deletions(-) create mode 100644 modules/jooby-apitool/src/test/java/issues/Issue1261.java create mode 100644 modules/jooby-apitool/src/test/java/kt/App1261.kt diff --git a/modules/jooby-apitool/src/main/java/org/jooby/internal/apitool/BytecodeRouteParser.java b/modules/jooby-apitool/src/main/java/org/jooby/internal/apitool/BytecodeRouteParser.java index 72b1c0178e..17f3b145cf 100644 --- a/modules/jooby-apitool/src/main/java/org/jooby/internal/apitool/BytecodeRouteParser.java +++ b/modules/jooby-apitool/src/main/java/org/jooby/internal/apitool/BytecodeRouteParser.java @@ -230,11 +230,13 @@ import org.jooby.apitool.RouteParameter; import org.jooby.apitool.RouteResponse; import org.jooby.funzy.Try; + import static org.jooby.funzy.When.when; + import org.jooby.internal.RouteMetadata; + import static org.jooby.internal.apitool.Filters.access; import static org.jooby.internal.apitool.Filters.and; -import static org.jooby.internal.apitool.Filters.call; import static org.jooby.internal.apitool.Filters.file; import static org.jooby.internal.apitool.Filters.getOrCreateKotlinClass; import static org.jooby.internal.apitool.Filters.is; @@ -249,7 +251,9 @@ import static org.jooby.internal.apitool.Filters.param; import static org.jooby.internal.apitool.Filters.path; import static org.jooby.internal.apitool.Filters.scriptRoute; +import static org.jooby.internal.apitool.Filters.sendObject; import static org.jooby.internal.apitool.Filters.use; + import org.jooby.internal.mvc.MvcRoutes; import org.jooby.mvc.Body; import org.jooby.mvc.Flash; @@ -259,8 +263,10 @@ import org.objectweb.asm.ClassReader; import org.objectweb.asm.Handle; import org.objectweb.asm.Opcodes; + import static org.objectweb.asm.Opcodes.GETSTATIC; import static org.objectweb.asm.Opcodes.INVOKESPECIAL; + import org.objectweb.asm.Type; import org.objectweb.asm.tree.AbstractInsnNode; import org.objectweb.asm.tree.ClassNode; @@ -408,7 +414,7 @@ public List parse(String classname) throws Exception { java.lang.reflect.Type returnType; if (method.desc.endsWith("V")) { - returnType = void.class; + returnType = sendReturnType(loader, method); } else if (method.desc.endsWith(RETURN_OBJ)) { returnType = returnType(loader, method); } else { @@ -1055,36 +1061,53 @@ private java.lang.reflect.Type returnType(final ClassLoader loader, .filter(and(is(InsnNode.class), opcode(Opcodes.ARETURN))) .findFirst() .map(AbstractInsnNode::getPrevious) - .map(previous -> { - /** return 1; return true; return new Foo(); */ - if (previous instanceof MethodInsnNode) { - MethodInsnNode minnsn = ((MethodInsnNode) previous); - if (minnsn.name.equals("")) { - return loadType(loader, minnsn.owner); - } - String desc = minnsn.desc; - java.lang.reflect.Type type = TypeDescriptorParser.parse(loader, desc); - if (type.getTypeName().equals(Result.class.getName())) { - return new TypeWithStatus(type, statusCodeFor(minnsn)); - } - return type; - } - /** return "String" | int | double */ - if (previous instanceof LdcInsnNode) { - Object cst = ((LdcInsnNode) previous).cst; - if (cst instanceof Type) { - return TypeDescriptorParser.parse(loader, ((Type) cst).getDescriptor()); - } - return cst.getClass(); - } - /** return variable */ - if (previous instanceof VarInsnNode) { - VarInsnNode varInsn = (VarInsnNode) previous; - return localVariable(loader, m, varInsn); - } + .map(previous -> handleReturnType(loader, m, previous)) + .orElseGet(() -> sendReturnType(loader, m)); + } - return Object.class; - }).orElse(Object.class); + private java.lang.reflect.Type handleReturnType(ClassLoader loader, MethodNode m, + AbstractInsnNode previous) { + /** return 1; return true; return new Foo(); */ + if (previous instanceof MethodInsnNode) { + MethodInsnNode minnsn = ((MethodInsnNode) previous); + if (minnsn.name.equals("")) { + return loadType(loader, minnsn.owner); + } + String desc = minnsn.desc; + java.lang.reflect.Type type = TypeDescriptorParser.parse(loader, desc); + if (type.getTypeName().equals(Result.class.getName())) { + return new TypeWithStatus(type, statusCodeFor(minnsn)); + } + return type; + } + /** return "String" | int | double */ + if (previous instanceof LdcInsnNode) { + Object cst = ((LdcInsnNode) previous).cst; + if (cst instanceof Type) { + return TypeDescriptorParser.parse(loader, ((Type) cst).getDescriptor()); + } + return cst.getClass(); + } + /** return variable */ + if (previous instanceof VarInsnNode) { + VarInsnNode varInsn = (VarInsnNode) previous; + return localVariable(loader, m, varInsn); + } + + return Object.class; + } + + private java.lang.reflect.Type sendReturnType(ClassLoader loader, MethodNode m) { + return new Insns(m) + .last() + .prev() + .filter(MethodInsnNode.class::isInstance) + .map(MethodInsnNode.class::cast) + .filter(sendObject()) + .findFirst() + .map(AbstractInsnNode::getPrevious) + .map(node -> handleReturnType(loader, m, node)) + .orElse(void.class); } private Integer statusCodeFor(MethodInsnNode node) { diff --git a/modules/jooby-apitool/src/main/java/org/jooby/internal/apitool/Filters.java b/modules/jooby-apitool/src/main/java/org/jooby/internal/apitool/Filters.java index 418cbad912..b29f8089c0 100644 --- a/modules/jooby-apitool/src/main/java/org/jooby/internal/apitool/Filters.java +++ b/modules/jooby-apitool/src/main/java/org/jooby/internal/apitool/Filters.java @@ -206,6 +206,7 @@ import org.jooby.Jooby; import org.jooby.Mutant; import org.jooby.Request; +import org.jooby.Response; import org.jooby.Route; import org.jooby.Router; import org.objectweb.asm.Opcodes; @@ -303,6 +304,10 @@ public static Predicate methodName(final String name) { return is(MethodNode.class).and(m -> m.name.equals(name)); } + public static Predicate sendObject() { + return call(Response.class, "send", Object.class.getName()); + } + @SuppressWarnings("rawtypes") public static Predicate method(final String name, final Object... args) { return is(MethodNode.class).and(m -> { diff --git a/modules/jooby-apitool/src/test/java/issues/Issue1261.java b/modules/jooby-apitool/src/test/java/issues/Issue1261.java new file mode 100644 index 0000000000..f85dd5e396 --- /dev/null +++ b/modules/jooby-apitool/src/test/java/issues/Issue1261.java @@ -0,0 +1,28 @@ +package issues; + +import kt.App1261; +import org.jooby.apitool.ApiParser; +import org.jooby.apitool.ApiToolFeature; +import org.jooby.apitool.RouteMethod; +import org.jooby.apitool.RouteMethodAssert; +import org.junit.Test; + +import java.util.List; + +public class Issue1261 extends ApiToolFeature { + + @Test + public void shouldContainsSwaggerResponseDescription() throws Exception { + List routes = new ApiParser(dir()).parseFully(new App1261()); + new RouteMethodAssert(routes) + .next(r -> { + r.returnType("kt.ResultData"); + r.method("GET"); + r.pattern("/"); + r.description(null); + r.summary(null); + r.returns(null); + }) + .done(); + } +} diff --git a/modules/jooby-apitool/src/test/java/kt/App1261.kt b/modules/jooby-apitool/src/test/java/kt/App1261.kt new file mode 100644 index 0000000000..70bd4d1a26 --- /dev/null +++ b/modules/jooby-apitool/src/test/java/kt/App1261.kt @@ -0,0 +1,15 @@ +package kt + +import org.jooby.* + +data class ResultData( + val text: String, + val number: Int +) + +class App1261 : Kooby({ + get("/") {req, rsp -> + val response = ResultData("Test", 123) + rsp.send(response) + } +}) From 112813e9a80d0868ca252cbc8f9504b89fa0e944 Mon Sep 17 00:00:00 2001 From: Edgar Espina Date: Sat, 19 Jan 2019 11:30:24 -0300 Subject: [PATCH 20/93] Don`t fail when client request path doesn`t have a leading `/` - Bot requests sometime ends up as http 500 with error logging. Fix #1259 --- jooby/src/main/java/org/jooby/internal/RoutePattern.java | 2 +- jooby/src/test/java/org/jooby/internal/RoutePatternTest.java | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/jooby/src/main/java/org/jooby/internal/RoutePattern.java b/jooby/src/main/java/org/jooby/internal/RoutePattern.java index 5535fd8c4a..4c55fa39d5 100644 --- a/jooby/src/main/java/org/jooby/internal/RoutePattern.java +++ b/jooby/src/main/java/org/jooby/internal/RoutePattern.java @@ -387,7 +387,7 @@ private static Function fn(final RoutePattern owner, final @Override public RouteMatcher apply(final String fullpath) { - String path = fullpath.substring(fullpath.indexOf('/')); + String path = fullpath.substring(Math.max(0, fullpath.indexOf('/'))); if (complex) { return new RegexRouteMatcher(path, regex.matcher(fullpath), vars); } diff --git a/jooby/src/test/java/org/jooby/internal/RoutePatternTest.java b/jooby/src/test/java/org/jooby/internal/RoutePatternTest.java index 4533edde1c..b9fc79bc50 100644 --- a/jooby/src/test/java/org/jooby/internal/RoutePatternTest.java +++ b/jooby/src/test/java/org/jooby/internal/RoutePatternTest.java @@ -457,4 +457,9 @@ public void ignoreCase() { .matches("GET/Path1"); } + @Test + public void shouldNotBreakOnMissing () { + new RoutePathAssert("GET", "/") + .butNot("GET(X11;"); + } } From 9ad156a9c9117a06f9bcb4c61a7a461c99362907 Mon Sep 17 00:00:00 2001 From: Edgar Espina Date: Sat, 19 Jan 2019 15:42:21 -0300 Subject: [PATCH 21/93] ApiTool: support explicit request route handler: `{req -> ...}` - ApiTool fails to show kotlin routes in some conditions. Fix #1235 --- .../internal/apitool/BytecodeRouteParser.java | 36 ++++++++----- .../org/jooby/internal/apitool/Lambda.java | 30 ++++++++++- .../src/test/java/issues/Issue1235.java | 52 +++++++++++++++++++ .../jooby-apitool/src/test/java/kt/App1235.kt | 23 ++++++++ 4 files changed, 128 insertions(+), 13 deletions(-) create mode 100644 modules/jooby-apitool/src/test/java/issues/Issue1235.java create mode 100644 modules/jooby-apitool/src/test/java/kt/App1235.kt diff --git a/modules/jooby-apitool/src/main/java/org/jooby/internal/apitool/BytecodeRouteParser.java b/modules/jooby-apitool/src/main/java/org/jooby/internal/apitool/BytecodeRouteParser.java index 17f3b145cf..109af825a5 100644 --- a/modules/jooby-apitool/src/main/java/org/jooby/internal/apitool/BytecodeRouteParser.java +++ b/modules/jooby-apitool/src/main/java/org/jooby/internal/apitool/BytecodeRouteParser.java @@ -711,22 +711,34 @@ private List kotlinLambda(final ClassLoader loader, final ClassNode owne new Insns(method) .on(scriptRoute, it -> { log.debug(" lambda candidate: {}", it.node); - it.prev() + String lambdaOwner = it.prev() + // Implicit request: get ("/") { ...}; .filter(and(is(FieldInsnNode.class), opcode(GETSTATIC))) .findFirst() .map(FieldInsnNode.class::cast) - .ifPresent(field -> { - ClassNode lambda = loadClass(field.owner); - log.debug(" lambda: {}", field.owner); - lambda.methods.stream() - .filter(kotlinRouteHandler()) - .forEach(e -> { - MethodNode m = (MethodNode) e; - log.debug(" implementation: {}.{}()", lambda.name, m.name, m.desc); - Lambda.create(field.owner, Optional.empty(), it.node, m) - .forEach(result::add); - }); + .map(f -> f.owner) + .orElseGet(() -> { + // Explicit request: get ("/") {req -> ...}; + return new Insn<>(method, it.node.getPrevious()) + .prev() + .filter(is(MethodInsnNode.class)) + .findFirst() + .map(MethodInsnNode.class::cast) + .map(m -> m.owner) + .orElse(null); }); + if (lambdaOwner != null) { + ClassNode lambda = loadClass(lambdaOwner); + log.debug(" lambda: {}", lambdaOwner); + lambda.methods.stream() + .filter(kotlinRouteHandler()) + .forEach(e -> { + MethodNode m = (MethodNode) e; + log.debug(" implementation: {}.{}()", lambda.name, m.name, m.desc); + Lambda.create(lambdaOwner, Optional.empty(), it.node, m) + .forEach(result::add); + }); + } }) // use(Mvc class) .on(use(loader, "org.jooby.Kooby"), it -> mvc(it, result::add)) diff --git a/modules/jooby-apitool/src/main/java/org/jooby/internal/apitool/Lambda.java b/modules/jooby-apitool/src/main/java/org/jooby/internal/apitool/Lambda.java index c6a6731462..e32b96c5a0 100644 --- a/modules/jooby-apitool/src/main/java/org/jooby/internal/apitool/Lambda.java +++ b/modules/jooby-apitool/src/main/java/org/jooby/internal/apitool/Lambda.java @@ -204,13 +204,18 @@ package org.jooby.internal.apitool; import org.jooby.Route; + import static org.jooby.internal.apitool.Insn.ldcFor; + import org.objectweb.asm.Handle; import org.objectweb.asm.Opcodes; import org.objectweb.asm.Type; +import org.objectweb.asm.tree.AbstractInsnNode; import org.objectweb.asm.tree.InvokeDynamicInsnNode; +import org.objectweb.asm.tree.LdcInsnNode; import org.objectweb.asm.tree.MethodInsnNode; import org.objectweb.asm.tree.MethodNode; +import org.objectweb.asm.tree.TypeInsnNode; import java.util.Arrays; import java.util.List; @@ -291,7 +296,30 @@ public static Stream create(String owner, Optional prefix, Metho List patterns = Insn.ldcFor(method).stream().map(it -> it.cst.toString()) .collect(Collectors.toList()); if (patterns.size() == 0) { - patterns.add("/"); + if (method.owner.equals("org/jooby/Kooby")) { + if (method.getPrevious() instanceof TypeInsnNode) { + // get(path) { req -> ...} + // seek and find first MethodInsnNode, which contains the path pattern. + AbstractInsnNode ldcpath = new Insn<>(implementation, method) + .prev() + .filter(Filters.is(TypeInsnNode.class)) + .flatMap(n -> { + if (n.getPrevious() instanceof LdcInsnNode) { + return Stream.of(n.getPrevious()); + } + return Stream.empty(); + }) + .findFirst() + .orElse(null); + if (ldcpath instanceof LdcInsnNode) { + patterns.add(((LdcInsnNode) ldcpath).cst.toString()); + } + } + } + // Still empty? use default + if (patterns.size() == 0) { + patterns.add("/"); + } } prefix.ifPresent(p -> { IntStream.range(0, patterns.size()) diff --git a/modules/jooby-apitool/src/test/java/issues/Issue1235.java b/modules/jooby-apitool/src/test/java/issues/Issue1235.java new file mode 100644 index 0000000000..ab5da93e9f --- /dev/null +++ b/modules/jooby-apitool/src/test/java/issues/Issue1235.java @@ -0,0 +1,52 @@ +package issues; + +import kt.App1235; +import org.jooby.apitool.ApiParser; +import org.jooby.apitool.ApiToolFeature; +import org.jooby.apitool.RouteMethod; +import org.jooby.apitool.RouteMethodAssert; +import org.junit.Test; + +import java.util.List; + +public class Issue1235 extends ApiToolFeature { + + @Test + public void shouldSupportExplicitRequestHandler() throws Exception { + List routes = new ApiParser(dir()).parseFully(new App1235()); + new RouteMethodAssert(routes) + .next(r -> { + r.returnType("com.typesafe.config.Config"); + r.method("GET"); + r.pattern("/qwe"); + r.description(null); + r.summary(null); + r.returns(null); + }) + .next(r -> { + r.returnType("com.typesafe.config.Config"); + r.method("GET"); + r.pattern("/asd"); + r.description(null); + r.summary(null); + r.returns(null); + }) + .next(r -> { + r.returnType("com.typesafe.config.Config"); + r.method("GET"); + r.pattern("/zxc"); + r.description(null); + r.summary(null); + r.returns(null); + }) + .next(r -> { + r.returnType("com.typesafe.config.Config"); + r.method("GET"); + r.pattern("/rty"); + r.description(null); + r.summary(null); + r.returns(null); + }) + .done(); + } +} diff --git a/modules/jooby-apitool/src/test/java/kt/App1235.kt b/modules/jooby-apitool/src/test/java/kt/App1235.kt new file mode 100644 index 0000000000..ca222504a2 --- /dev/null +++ b/modules/jooby-apitool/src/test/java/kt/App1235.kt @@ -0,0 +1,23 @@ +package kt + +import com.typesafe.config.Config +import org.jooby.* + +fun main(args: Array) { + org.jooby.run(::App1235, *args) +} + +class App1235 : Kooby({ + get("/qwe") { req -> + require(Config::class.java) + } + get("/asd") { req -> + require(Config::class.java) + } + get("/zxc") { req -> + require(Config::class.java) + } + get("/rty") { req -> + require(Config::class.java) + } +}) From 276c4bcd46ba7266d90dc924c92c5f3e102d6c71 Mon Sep 17 00:00:00 2001 From: Edgar Espina Date: Sat, 19 Jan 2019 15:51:56 -0300 Subject: [PATCH 22/93] NPE when closing already closed WebSocket #1231 --- jooby/src/main/java/org/jooby/internal/WebSocketImpl.java | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/jooby/src/main/java/org/jooby/internal/WebSocketImpl.java b/jooby/src/main/java/org/jooby/internal/WebSocketImpl.java index 8871c0590a..33706629c5 100644 --- a/jooby/src/main/java/org/jooby/internal/WebSocketImpl.java +++ b/jooby/src/main/java/org/jooby/internal/WebSocketImpl.java @@ -206,7 +206,9 @@ import com.google.common.collect.ImmutableList; import com.google.inject.Injector; import com.google.inject.Key; + import static java.util.Objects.requireNonNull; + import org.jooby.Err; import org.jooby.MediaType; import org.jooby.Mutant; @@ -307,7 +309,9 @@ public void close(final CloseStatus status) { removeSession(this); synchronized (this) { open = false; - ws.close(status.code(), status.reason()); + if (ws != null) { + ws.close(status.code(), status.reason()); + } } } From f1053c7f58e6698466b8e0408a5c01ef313dda8d Mon Sep 17 00:00:00 2001 From: Edgar Espina Date: Sat, 19 Jan 2019 16:12:57 -0300 Subject: [PATCH 23/93] APITool: Nested list causes TypeBinding error fix #1230 --- .../internal/apitool/BytecodeRouteParser.java | 2 +- .../apitool/TypeJsonDeserializer.java | 7 +++- .../org/jooby/internal/apitool/Issue1230.java | 38 +++++++++++++++++++ 3 files changed, 44 insertions(+), 3 deletions(-) create mode 100644 modules/jooby-apitool/src/test/java/org/jooby/internal/apitool/Issue1230.java diff --git a/modules/jooby-apitool/src/main/java/org/jooby/internal/apitool/BytecodeRouteParser.java b/modules/jooby-apitool/src/main/java/org/jooby/internal/apitool/BytecodeRouteParser.java index 109af825a5..b71da5a8bb 100644 --- a/modules/jooby-apitool/src/main/java/org/jooby/internal/apitool/BytecodeRouteParser.java +++ b/modules/jooby-apitool/src/main/java/org/jooby/internal/apitool/BytecodeRouteParser.java @@ -327,7 +327,7 @@ public class BytecodeRouteParser { .isPresent(); static final Predicate SKIP = TYPE_TO_SKIP.and(ANNOTATION_TO_SKIP); - private static final ObjectMapper mapper = new ObjectMapper(); + static final ObjectMapper mapper = new ObjectMapper(); private static final String OBJECT = Type.getInternalName(Object.class); private static final String RETURN_OBJ = "L" + OBJECT + ";"; diff --git a/modules/jooby-apitool/src/main/java/org/jooby/internal/apitool/TypeJsonDeserializer.java b/modules/jooby-apitool/src/main/java/org/jooby/internal/apitool/TypeJsonDeserializer.java index 212088db9e..c91664042a 100644 --- a/modules/jooby-apitool/src/main/java/org/jooby/internal/apitool/TypeJsonDeserializer.java +++ b/modules/jooby-apitool/src/main/java/org/jooby/internal/apitool/TypeJsonDeserializer.java @@ -250,8 +250,11 @@ private static List parse(final ClassLoader loader, final String type, fin types.add(element); singleType.setLength(0); } else if (ch == '>') { - Type element = BytecodeRouteParser.loadType(loader, singleType.toString()); - types.add(element); + if (singleType.length() > 0) { + Type element = BytecodeRouteParser.loadType(loader, singleType.toString()); + types.add(element); + singleType.setLength(0); + } } else if (ch == ']') { // java.lang.String[] singleType.setLength(singleType.length() - 1); diff --git a/modules/jooby-apitool/src/test/java/org/jooby/internal/apitool/Issue1230.java b/modules/jooby-apitool/src/test/java/org/jooby/internal/apitool/Issue1230.java new file mode 100644 index 0000000000..f2cbfa749d --- /dev/null +++ b/modules/jooby-apitool/src/test/java/org/jooby/internal/apitool/Issue1230.java @@ -0,0 +1,38 @@ +package org.jooby.internal.apitool; + +import com.fasterxml.jackson.databind.ObjectMapper; +import com.google.inject.util.Types; +import org.jooby.apitool.ApiToolFeature; +import org.junit.Test; + +import java.lang.reflect.ParameterizedType; +import java.lang.reflect.Type; + +import static org.junit.Assert.assertEquals; + +public class Issue1230 extends ApiToolFeature { + + public static class I1230 { + + private Type type; + + public Type getType() { + return type; + } + + public void setType(Type type) { + this.type = type; + } + } + + @Test + public void shouldDeserializeComplexTypePropertly() throws Exception { + ObjectMapper mapper = BytecodeRouteParser.mapper; + I1230 expected = new I1230(); + ParameterizedType type = Types.listOf(Types.listOf(Integer.class)); + expected.setType(type); + String json = mapper.writeValueAsString(expected); + I1230 actual = mapper.readValue(json, I1230.class); + assertEquals(expected.getType(), actual.getType()); + } +} From f8fc63e86cea6d02a63b95ba022d315fd045827a Mon Sep 17 00:00:00 2001 From: Edgar Espina Date: Sat, 19 Jan 2019 19:59:57 -0300 Subject: [PATCH 24/93] hotswap bug fix #1232 --- .../org/jooby/spi}/WatchEventModifier.java | 29 +++++++++---------- .../org/jooby/internal/assets/Watcher.java | 5 ++-- .../jooby/filewatcher/FileEventOptions.java | 4 ++- .../org/jooby/filewatcher/FileWatcher.java | 3 +- .../filewatcher/WatchEventModifierTest.java | 6 ++-- .../src/main/java/org/jooby/run/Watcher.java | 21 +++++++++++--- 6 files changed, 42 insertions(+), 26 deletions(-) rename {modules/jooby-filewatcher/src/main/java/org/jooby/filewatcher => jooby/src/main/java/org/jooby/spi}/WatchEventModifier.java (95%) diff --git a/modules/jooby-filewatcher/src/main/java/org/jooby/filewatcher/WatchEventModifier.java b/jooby/src/main/java/org/jooby/spi/WatchEventModifier.java similarity index 95% rename from modules/jooby-filewatcher/src/main/java/org/jooby/filewatcher/WatchEventModifier.java rename to jooby/src/main/java/org/jooby/spi/WatchEventModifier.java index 1973d5197f..6104f302bf 100644 --- a/modules/jooby-filewatcher/src/main/java/org/jooby/filewatcher/WatchEventModifier.java +++ b/jooby/src/main/java/org/jooby/spi/WatchEventModifier.java @@ -201,25 +201,22 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.jooby.filewatcher; +package org.jooby.spi; +import java.lang.reflect.InvocationTargetException; +import java.lang.reflect.Method; import java.nio.file.WatchEvent; -class WatchEventModifier implements WatchEvent.Modifier { +public class WatchEventModifier { - private final String name; - - public WatchEventModifier(final String name) { - this.name = name.toUpperCase(); - } - - @Override - public String name() { - return name; - } - - @Override - public String toString() { - return name; + public static WatchEvent.Modifier modifier(String name) { + try { + Class e = WatchEventModifier.class.getClassLoader() + .loadClass("com.sun.nio.file.SensitivityWatchEventModifier"); + Method m = e.getDeclaredMethod("valueOf", String.class); + return (WatchEvent.Modifier) m.invoke(null, name); + } catch (ClassNotFoundException | NoSuchMethodException | IllegalAccessException | InvocationTargetException x) { + return () -> name; + } } } diff --git a/modules/jooby-assets/src/main/java/org/jooby/internal/assets/Watcher.java b/modules/jooby-assets/src/main/java/org/jooby/internal/assets/Watcher.java index 900ab0b886..58a188c339 100644 --- a/modules/jooby-assets/src/main/java/org/jooby/internal/assets/Watcher.java +++ b/modules/jooby-assets/src/main/java/org/jooby/internal/assets/Watcher.java @@ -203,12 +203,13 @@ */ package org.jooby.internal.assets; -import com.sun.nio.file.SensitivityWatchEventModifier; import static java.nio.file.LinkOption.NOFOLLOW_LINKS; import static java.nio.file.StandardWatchEventKinds.ENTRY_CREATE; import static java.nio.file.StandardWatchEventKinds.ENTRY_DELETE; import static java.nio.file.StandardWatchEventKinds.ENTRY_MODIFY; import static java.nio.file.StandardWatchEventKinds.OVERFLOW; + +import org.jooby.spi.WatchEventModifier; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @@ -232,7 +233,7 @@ class Watcher { - private static final WatchEvent.Modifier HIGH = SensitivityWatchEventModifier.HIGH; + private static final WatchEvent.Modifier HIGH = WatchEventModifier.modifier("HIGH"); /** The logging system. */ private final Logger log = LoggerFactory.getLogger(getClass()); private final WatchService watcher; diff --git a/modules/jooby-filewatcher/src/main/java/org/jooby/filewatcher/FileEventOptions.java b/modules/jooby-filewatcher/src/main/java/org/jooby/filewatcher/FileEventOptions.java index a0810fd97a..63c3a9929b 100644 --- a/modules/jooby-filewatcher/src/main/java/org/jooby/filewatcher/FileEventOptions.java +++ b/modules/jooby-filewatcher/src/main/java/org/jooby/filewatcher/FileEventOptions.java @@ -203,6 +203,8 @@ */ package org.jooby.filewatcher; +import org.jooby.spi.WatchEventModifier; + import static java.nio.file.StandardWatchEventKinds.ENTRY_CREATE; import static java.nio.file.StandardWatchEventKinds.ENTRY_DELETE; import static java.nio.file.StandardWatchEventKinds.ENTRY_MODIFY; @@ -256,7 +258,7 @@ public String toString() { private final List matchers = new ArrayList<>(); - private Modifier modifier = new WatchEventModifier("HIGH"); + private Modifier modifier = WatchEventModifier.modifier("HIGH"); private boolean recursive = true; diff --git a/modules/jooby-filewatcher/src/main/java/org/jooby/filewatcher/FileWatcher.java b/modules/jooby-filewatcher/src/main/java/org/jooby/filewatcher/FileWatcher.java index 986270c8f2..f0a224ea55 100644 --- a/modules/jooby-filewatcher/src/main/java/org/jooby/filewatcher/FileWatcher.java +++ b/modules/jooby-filewatcher/src/main/java/org/jooby/filewatcher/FileWatcher.java @@ -211,6 +211,7 @@ import org.jooby.Env; import org.jooby.Jooby.Module; import org.jooby.funzy.Throwing; +import org.jooby.spi.WatchEventModifier; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @@ -548,7 +549,7 @@ private void paths(final ClassLoader loader, final Config conf, final String nam Path path = Paths.get(coptions.getString("path")); FileEventOptions options = new FileEventOptions(path, handler); list(coptions, "kind", it -> options.kind(new WatchEventKind(it.toString()))); - list(coptions, "modifier", it -> options.modifier(new WatchEventModifier(it.toString()))); + list(coptions, "modifier", it -> options.modifier(WatchEventModifier.modifier(it.toString()))); list(coptions, "includes", it -> options.includes(it.toString())); list(coptions, "recursive", it -> options.recursive(Boolean.valueOf(it.toString()))); callback.accept(options); diff --git a/modules/jooby-filewatcher/src/test/java/org/jooby/filewatcher/WatchEventModifierTest.java b/modules/jooby-filewatcher/src/test/java/org/jooby/filewatcher/WatchEventModifierTest.java index e89014f894..3f4fbfae49 100644 --- a/modules/jooby-filewatcher/src/test/java/org/jooby/filewatcher/WatchEventModifierTest.java +++ b/modules/jooby-filewatcher/src/test/java/org/jooby/filewatcher/WatchEventModifierTest.java @@ -2,14 +2,16 @@ import static org.junit.Assert.assertEquals; +import org.jooby.spi.WatchEventModifier; import org.junit.Test; +import java.nio.file.WatchEvent; + public class WatchEventModifierTest { @Test public void watchEventModifier() { - WatchEventModifier mod = new WatchEventModifier("foo"); + WatchEvent.Modifier mod = WatchEventModifier.modifier("FOO"); assertEquals("FOO", mod.name()); - assertEquals("FOO", mod.toString()); } } diff --git a/modules/jooby-run/src/main/java/org/jooby/run/Watcher.java b/modules/jooby-run/src/main/java/org/jooby/run/Watcher.java index 7661972069..a6cd8b9be0 100644 --- a/modules/jooby-run/src/main/java/org/jooby/run/Watcher.java +++ b/modules/jooby-run/src/main/java/org/jooby/run/Watcher.java @@ -203,7 +203,6 @@ */ package org.jooby.run; -import com.sun.nio.file.SensitivityWatchEventModifier; import static java.nio.file.LinkOption.NOFOLLOW_LINKS; import static java.nio.file.StandardWatchEventKinds.ENTRY_CREATE; import static java.nio.file.StandardWatchEventKinds.ENTRY_DELETE; @@ -212,6 +211,8 @@ import java.io.File; import java.io.IOException; +import java.lang.reflect.InvocationTargetException; +import java.lang.reflect.Method; import java.nio.file.FileSystems; import java.nio.file.FileVisitResult; import java.nio.file.Files; @@ -231,7 +232,18 @@ */ public class Watcher { - private static final WatchEvent.Modifier HIGH = SensitivityWatchEventModifier.HIGH; + private static final WatchEvent.Modifier HIGH = modifier("HIGH"); + + public static WatchEvent.Modifier modifier(String name) { + try { + Class e = Watcher.class.getClassLoader() + .loadClass("com.sun.nio.file.SensitivityWatchEventModifier"); + Method m = e.getDeclaredMethod("valueOf", String.class); + return (WatchEvent.Modifier) m.invoke(null, name); + } catch (ClassNotFoundException | NoSuchMethodException | IllegalAccessException | InvocationTargetException x) { + return () -> name; + } + } private final WatchService watcher; private volatile Map keys; @@ -240,7 +252,7 @@ public class Watcher { private volatile boolean stopped = false; public Watcher(final BiConsumer, Path> listener, final Path... dirs) - throws IOException { + throws IOException { this.watcher = FileSystems.getDefault().newWatchService(); this.keys = new HashMap<>(); this.listener = listener; @@ -275,7 +287,8 @@ public void stop() { * Register the given directory with the WatchService */ private void register(final Path dir) throws IOException { - WatchKey key = dir.register(watcher, new Kind[]{ENTRY_CREATE, ENTRY_DELETE, ENTRY_MODIFY }, HIGH); + WatchKey key = dir + .register(watcher, new Kind[]{ENTRY_CREATE, ENTRY_DELETE, ENTRY_MODIFY}, HIGH); keys.put(key, dir); } From 33d8bf15bb6fc4de6b592dc53b1b73c56a79148e Mon Sep 17 00:00:00 2001 From: Edgar Espina Date: Sun, 20 Jan 2019 12:31:02 -0300 Subject: [PATCH 25/93] FastClasspathScanner ported to Classgraph fix #1229 - have to remove unit test, was impossible to mock new classgraph API --- modules/coverage-report/pom.xml | 8 - modules/jooby-scanner/pom.xml | 4 +- .../main/java/org/jooby/scanner/Scanner.java | 38 +- .../java/org/jooby/scanner/ScannerTest.java | 448 ------------------ pom.xml | 8 +- 5 files changed, 30 insertions(+), 476 deletions(-) delete mode 100644 modules/jooby-scanner/src/test/java/org/jooby/scanner/ScannerTest.java diff --git a/modules/coverage-report/pom.xml b/modules/coverage-report/pom.xml index 4ef74b0aef..8818eda9d9 100644 --- a/modules/coverage-report/pom.xml +++ b/modules/coverage-report/pom.xml @@ -82,7 +82,6 @@ ${project.parent.basedir}/jooby-mongodb-rx/src/main/java ${project.parent.basedir}/jooby-couchbase/src/main/java ${project.parent.basedir}/jooby-cassandra/src/main/java - ${project.parent.basedir}/jooby-scanner/src/main/java ${project.parent.basedir}/jooby-csl/src/main/java ${project.parent.basedir}/jooby-unbescape/src/main/java ${project.parent.basedir}/jooby-thymeleaf/src/main/java @@ -149,7 +148,6 @@ ${project.parent.basedir}/jooby-mongodb-rx/src/test/java ${project.parent.basedir}/jooby-couchbase/src/test/java ${project.parent.basedir}/jooby-cassandra/src/test/java - ${project.parent.basedir}/jooby-scanner/src/test/java ${project.parent.basedir}/jooby-csl/src/test/java ${project.parent.basedir}/jooby-unbescape/src/test/java ${project.parent.basedir}/jooby-thymeleaf/src/test/java @@ -877,12 +875,6 @@ ${project.version} - - org.jooby - jooby-scanner - ${project.version} - - org.jooby jooby-csl diff --git a/modules/jooby-scanner/pom.xml b/modules/jooby-scanner/pom.xml index 79a7c785c4..7580c1df33 100644 --- a/modules/jooby-scanner/pom.xml +++ b/modules/jooby-scanner/pom.xml @@ -39,8 +39,8 @@ - io.github.lukehutch - fast-classpath-scanner + io.github.classgraph + classgraph diff --git a/modules/jooby-scanner/src/main/java/org/jooby/scanner/Scanner.java b/modules/jooby-scanner/src/main/java/org/jooby/scanner/Scanner.java index 7727b2a36a..ebb8317bce 100644 --- a/modules/jooby-scanner/src/main/java/org/jooby/scanner/Scanner.java +++ b/modules/jooby-scanner/src/main/java/org/jooby/scanner/Scanner.java @@ -211,14 +211,16 @@ import com.google.inject.Binder; import com.google.inject.Module; import com.typesafe.config.Config; -import io.github.lukehutch.fastclasspathscanner.FastClasspathScanner; -import io.github.lukehutch.fastclasspathscanner.scanner.ScanResult; +import io.github.classgraph.ClassGraph; +import io.github.classgraph.ClassInfo; +import io.github.classgraph.ScanResult; import org.jooby.Env; import org.jooby.Jooby; import org.jooby.Router; import org.jooby.funzy.Throwing; -import static org.jooby.funzy.Throwing.throwingConsumer; + import static org.jooby.funzy.Throwing.throwingSupplier; + import org.jooby.mvc.Path; import javax.annotation.PostConstruct; @@ -399,7 +401,8 @@ public void configure(final Env env, final Config conf, final Binder binder) { Set spec = Sets.newLinkedHashSet(packages); serviceTypes.forEach(it -> spec.add(it.getPackage().getName())); - FastClasspathScanner scanner = new FastClasspathScanner(spec.toArray(new String[spec.size()])); + ClassGraph scanner = new ClassGraph().enableAllInfo() + .whitelistPackages(spec.toArray(new String[spec.size()])); Router routes = env.router(); @@ -415,24 +418,26 @@ public void configure(final Env env, final Config conf, final Binder binder) { env.lifeCycle(klass); }; - ScanResult result = scanner.scan(conf.getInt("runtime.processors") + 1); + ScanResult result = scanner.scan(); - Predicate inPackage = name -> packages.stream() - .anyMatch(name::startsWith); + Predicate inPackage = c -> packages.stream() + .anyMatch(c.getName()::startsWith); /** Controllers: */ - result.getNamesOfClassesWithAnnotation(Path.class) + result.getClassesWithAnnotation(Path.class.getName()) .stream() .filter(once) + .map(ClassInfo::getName) .map(loadClass) .filter(C) .forEach(routes::use); String mainClass = conf.getString("application.class"); /** Apps: */ - result.getNamesOfSubclassesOf(Jooby.class) + result.getSubclasses(Jooby.class.getName()) .stream() .filter(once) + .map(ClassInfo::getName) .filter(name -> !name.equals(mainClass)) .map(loadClass) .filter(C) @@ -441,9 +446,10 @@ public void configure(final Env env, final Config conf, final Binder binder) { /** Annotated with: */ serviceTypes.stream() .filter(A) - .forEach(a -> result.getNamesOfClassesWithAnnotation(a) + .forEach(a -> result.getClassesWithAnnotation(a.getName()) .stream() .filter(once) + .map(ClassInfo::getName) .map(loadClass) .filter(C) .forEach(bind)); @@ -452,10 +458,11 @@ public void configure(final Env env, final Config conf, final Binder binder) { serviceTypes.stream() .filter(I) .filter(type -> type != Jooby.Module.class && type != Module.class && type != Service.class) - .forEach(i -> result.getNamesOfClassesImplementing(i) + .forEach(i -> result.getClassesImplementing(i.getName()) .stream() .filter(inPackage) .filter(once) + .map(ClassInfo::getName) .map(loadClass) .filter(C) .forEach(bind)); @@ -463,20 +470,22 @@ public void configure(final Env env, final Config conf, final Binder binder) { /** SubclassOf: */ serviceTypes.stream() .filter(S) - .forEach(k -> result.getNamesOfSubclassesOf(k) + .forEach(k -> result.getSubclasses(k.getName()) .stream() .filter(inPackage) .filter(once) + .map(ClassInfo::getName) .map(loadClass) .filter(C) .forEach(bind)); /** Guice modules: */ if (serviceTypes.contains(Module.class)) { - result.getNamesOfClassesImplementing(Module.class) + result.getClassesImplementing(Module.class.getName()) .stream() .filter(inPackage) .filter(once) + .map(ClassInfo::getName) .map(loadClass) .filter(C) .forEach(klass -> ((Module) newObject(klass)).configure(binder)); @@ -485,10 +494,11 @@ public void configure(final Env env, final Config conf, final Binder binder) { /** Guava services: */ if (serviceTypes.contains(Service.class)) { Set> guavaServices = new HashSet<>(); - result.getNamesOfClassesImplementing(Service.class) + result.getClassesImplementing(Service.class.getName()) .stream() .filter(inPackage) .filter(once) + .map(ClassInfo::getName) .map(loadClass) .filter(C) .forEach(guavaServices::add); diff --git a/modules/jooby-scanner/src/test/java/org/jooby/scanner/ScannerTest.java b/modules/jooby-scanner/src/test/java/org/jooby/scanner/ScannerTest.java deleted file mode 100644 index 679e6a14b5..0000000000 --- a/modules/jooby-scanner/src/test/java/org/jooby/scanner/ScannerTest.java +++ /dev/null @@ -1,448 +0,0 @@ -package org.jooby.scanner; - -import app.ns.AbsController; -import app.ns.AbsFoo; -import app.ns.FooApp; -import app.ns.FooController; -import app.ns.FooImpl; -import app.ns.FooModule; -import app.ns.FooSub; -import app.ns.GuavaService; -import app.ns.GuiceModule; -import app.ns.IFoo; -import app.ns.NamedFoo; -import app.ns.SingletonFoo; -import com.google.common.collect.Lists; -import com.google.common.util.concurrent.Service; -import com.google.common.util.concurrent.ServiceManager; -import com.google.inject.Binder; -import com.google.inject.Module; -import com.google.inject.binder.AnnotatedBindingBuilder; -import com.typesafe.config.Config; -import io.github.lukehutch.fastclasspathscanner.FastClasspathScanner; -import io.github.lukehutch.fastclasspathscanner.scanner.ScanResult; -import static org.easymock.EasyMock.expect; -import static org.easymock.EasyMock.isA; -import org.jooby.Env; -import org.jooby.Jooby; -import org.jooby.Registry; -import org.jooby.Router; -import org.jooby.mvc.Path; -import org.jooby.test.MockUnit; -import org.jooby.test.MockUnit.Block; -import org.jooby.funzy.Throwing; -import static org.junit.Assert.assertEquals; -import org.junit.Test; -import org.junit.runner.RunWith; -import org.powermock.core.classloader.annotations.PrepareForTest; -import org.powermock.modules.junit4.PowerMockRunner; - -import javax.inject.Provider; -import java.util.Arrays; -import java.util.List; - -@RunWith(PowerMockRunner.class) -@PrepareForTest({Scanner.class, FastClasspathScanner.class, FooModule.class, ServiceManager.class}) -public class ScannerTest { - - private Block routes = unit -> { - Env env = unit.get(Env.class); - expect(env.router()).andReturn(unit.get(Router.class)); - }; - - private Block runtimeProcessors = unit -> { - expect(unit.get(Config.class).getInt("runtime.processors")).andReturn(1); - }; - - @Test - public void newScanner() throws Exception { - new MockUnit(Env.class, Config.class, Binder.class, Router.class) - .expect(ns("app.ns")) - .expect(runtimeProcessors) - .expect(scanResult("app.ns")) - .expect(routes) - .expect(annotations(Path.class)) - .expect(subClassesOf(Jooby.class)) - .expect(appclass(ScannerTest.class.getName())) - .run(unit -> { - new Scanner() - .configure(unit.get(Env.class), unit.get(Config.class), unit.get(Binder.class)); - }); - } - - @Test - public void newScannerWithSpec() throws Exception { - new MockUnit(Env.class, Config.class, Binder.class, Router.class) - .expect(runtimeProcessors) - .expect(scanResult("test.pkg")) - .expect(routes) - .expect(annotations(Path.class)) - .expect(subClassesOf(Jooby.class)) - .expect(appclass(ScannerTest.class.getName())) - .run(unit -> { - new Scanner("test.pkg") - .configure(unit.get(Env.class), unit.get(Config.class), unit.get(Binder.class)); - }); - } - - @Test - public void scanController() throws Exception { - new MockUnit(Env.class, Config.class, Binder.class, Router.class) - .expect(ns("app.ns")) - .expect(runtimeProcessors) - .expect(scanResult("app.ns")) - .expect(routes) - .expect(annotations(Path.class, FooController.class.getName())) - .expect(subClassesOf(Jooby.class)) - .expect(appclass(ScannerTest.class.getName())) - .expect(unit -> { - Router routes = unit.get(Router.class); - expect(routes.use(FooController.class)).andReturn(null); - }) - .run(unit -> { - new Scanner() - .configure(unit.get(Env.class), unit.get(Config.class), unit.get(Binder.class)); - }); - } - - @Test - public void scanApp() throws Exception { - new MockUnit(Env.class, Config.class, Binder.class, Router.class) - .expect(ns("app.ns")) - .expect(runtimeProcessors) - .expect(scanResult("app.ns")) - .expect(routes) - .expect(annotations(Path.class)) - .expect(subClassesOf(Jooby.class, FooApp.class.getName())) - .expect(appclass(ScannerTest.class.getName())) - .expect(unit -> { - Router routes = unit.get(Router.class); - expect(routes.use(isA(FooApp.class))).andReturn(routes); - }) - .run(unit -> { - new Scanner() - .configure(unit.get(Env.class), unit.get(Config.class), unit.get(Binder.class)); - }); - } - - @SuppressWarnings("unchecked") - @Test - public void scanAnnotation() throws Exception { - new MockUnit(Env.class, Config.class, Binder.class, Router.class) - .expect(ns("app.ns")) - .expect(runtimeProcessors) - .expect(scanResult("app.ns", "javax.inject", "com.google.inject.name")) - .expect(routes) - .expect(annotations(Path.class)) - .expect(subClassesOf(Jooby.class)) - .expect(appclass(ScannerTest.class.getName())) - .expect(annotations(javax.inject.Named.class, NamedFoo.class.getName())) - .expect(annotations(com.google.inject.name.Named.class)) - .expect(unit -> { - Binder binder = unit.get(Binder.class); - - AnnotatedBindingBuilder abb = unit.mock(AnnotatedBindingBuilder.class); - abb.asEagerSingleton(); - expect(binder.bind(NamedFoo.class)).andReturn(abb); - - Env env = unit.get(Env.class); - expect(env.lifeCycle(NamedFoo.class)).andReturn(env); - }) - .run(unit -> { - new Scanner() - .scan(javax.inject.Named.class) - .configure(unit.get(Env.class), unit.get(Config.class), unit.get(Binder.class)); - }); - } - - @SuppressWarnings("unchecked") - @Test - public void scanSingleton() throws Exception { - new MockUnit(Env.class, Config.class, Binder.class, Router.class) - .expect(ns("app.ns")) - .expect(runtimeProcessors) - .expect(scanResult("app.ns", "javax.inject", "com.google.inject")) - .expect(routes) - .expect(annotations(Path.class)) - .expect(subClassesOf(Jooby.class)) - .expect(appclass(ScannerTest.class.getName())) - .expect(annotations(javax.inject.Singleton.class, SingletonFoo.class.getName())) - .expect(annotations(com.google.inject.Singleton.class)) - .expect(unit -> { - Binder binder = unit.get(Binder.class); - - AnnotatedBindingBuilder abb = unit.mock(AnnotatedBindingBuilder.class); - abb.asEagerSingleton(); - expect(binder.bind(SingletonFoo.class)).andReturn(abb); - - Env env = unit.get(Env.class); - expect(env.lifeCycle(SingletonFoo.class)).andReturn(env); - }) - .run(unit -> { - new Scanner() - .scan(javax.inject.Singleton.class) - .configure(unit.get(Env.class), unit.get(Config.class), unit.get(Binder.class)); - }); - } - - @SuppressWarnings("unchecked") - @Test - public void scanImplements() throws Exception { - new MockUnit(Env.class, Config.class, Binder.class, Router.class) - .expect(ns("app.ns")) - .expect(runtimeProcessors) - .expect(scanResult("app.ns")) - .expect(routes) - .expect(annotations(Path.class)) - .expect(subClassesOf(Jooby.class)) - .expect(appclass(ScannerTest.class.getName())) - .expect(implementing(IFoo.class, FooImpl.class.getName())) - .expect(unit -> { - Binder binder = unit.get(Binder.class); - - AnnotatedBindingBuilder abb = unit.mock(AnnotatedBindingBuilder.class); - abb.asEagerSingleton(); - expect(binder.bind(FooImpl.class)).andReturn(abb); - - Env env = unit.get(Env.class); - expect(env.lifeCycle(FooImpl.class)).andReturn(env); - }) - .run(unit -> { - new Scanner() - .scan(IFoo.class) - .configure(unit.get(Env.class), unit.get(Config.class), unit.get(Binder.class)); - }); - } - - @SuppressWarnings("unchecked") - @Test - public void scanSubclass() throws Exception { - new MockUnit(Env.class, Config.class, Binder.class, Router.class) - .expect(ns("app.ns")) - .expect(runtimeProcessors) - .expect(scanResult("app.ns")) - .expect(routes) - .expect(annotations(Path.class)) - .expect(subClassesOf(Jooby.class)) - .expect(appclass(ScannerTest.class.getName())) - .expect(subClassesOf(AbsFoo.class, FooSub.class.getName())) - .expect(unit -> { - Binder binder = unit.get(Binder.class); - - AnnotatedBindingBuilder abb = unit.mock(AnnotatedBindingBuilder.class); - abb.asEagerSingleton(); - expect(binder.bind(FooSub.class)).andReturn(abb); - - Env env = unit.get(Env.class); - expect(env.lifeCycle(FooSub.class)).andReturn(env); - }) - .run(unit -> { - new Scanner() - .scan(AbsFoo.class) - .configure(unit.get(Env.class), unit.get(Config.class), unit.get(Binder.class)); - }); - } - - @Test - public void scanGuiceModule() throws Exception { - new MockUnit(Env.class, Config.class, Binder.class, Router.class) - .expect(ns("app.ns")) - .expect(runtimeProcessors) - .expect(scanResult("app.ns", "com.google.inject")) - .expect(routes) - .expect(annotations(Path.class)) - .expect(subClassesOf(Jooby.class)) - .expect(appclass(ScannerTest.class.getName())) - .expect(implementing(Module.class, GuiceModule.class.getName())) - .expect(unit -> { - Binder binder = unit.get(Binder.class); - expect(binder.bind(GuiceModule.class)).andReturn(null); - }) - .run(unit -> { - new Scanner() - .scan(Module.class) - .configure(unit.get(Env.class), unit.get(Config.class), unit.get(Binder.class)); - }); - } - - @SuppressWarnings("unchecked") - @Test - public void scanGuavaService() throws Exception { - new MockUnit(Env.class, Config.class, Binder.class, Router.class, Registry.class) - .expect(ns("app.ns")) - .expect(runtimeProcessors) - .expect(scanResult("app.ns", "com.google.common.util.concurrent")) - .expect(routes) - .expect(annotations(Path.class)) - .expect(subClassesOf(Jooby.class)) - .expect(appclass(ScannerTest.class.getName())) - .expect(implementing(Service.class, GuavaService.class.getName())) - .expect(unit -> { - Binder binder = unit.get(Binder.class); - AnnotatedBindingBuilder abb = unit.mock(AnnotatedBindingBuilder.class); - abb.asEagerSingleton(); - expect(binder.bind(GuavaService.class)).andReturn(abb); - - AnnotatedBindingBuilder abbsm = unit.mock(AnnotatedBindingBuilder.class); - expect(abbsm.toProvider(unit.capture(Provider.class))).andReturn(abbsm); - expect(binder.bind(ServiceManager.class)).andReturn(abbsm); - - Env env = unit.get(Env.class); - expect(env.onStart(unit.capture(Throwing.Consumer.class))).andReturn(env); - expect(env.onStop(unit.capture(Throwing.Runnable.class))).andReturn(env); - }) - .expect(unit -> { - GuavaService service = unit.mock(GuavaService.class); - Registry registry = unit.get(Registry.class); - expect(registry.require(GuavaService.class)).andReturn(service); - - ServiceManager sm = unit.constructor(ServiceManager.class) - .build(Lists.newArrayList(service)); - - unit.registerMock(ServiceManager.class, sm); - - expect(sm.startAsync()).andReturn(sm); - sm.awaitHealthy(); - - expect(sm.stopAsync()).andReturn(sm); - sm.awaitStopped(); - }) - .run(unit -> { - new Scanner() - .scan(Service.class) - .configure(unit.get(Env.class), unit.get(Config.class), unit.get(Binder.class)); - }, unit -> { - unit.captured(Throwing.Consumer.class).iterator().next().accept(unit.get(Registry.class)); - - assertEquals(unit.get(ServiceManager.class), - unit.captured(Provider.class).iterator().next().get()); - - unit.captured(Throwing.Runnable.class).iterator().next().run(); - }); - } - - @Test - public void scanEmptyGuavaService() throws Exception { - new MockUnit(Env.class, Config.class, Binder.class, Router.class, Registry.class) - .expect(ns("app.ns")) - .expect(runtimeProcessors) - .expect(scanResult("app.ns", "com.google.common.util.concurrent")) - .expect(routes) - .expect(annotations(Path.class)) - .expect(subClassesOf(Jooby.class)) - .expect(appclass(ScannerTest.class.getName())) - .expect(implementing(Service.class)) - .run(unit -> { - new Scanner() - .scan(Service.class) - .configure(unit.get(Env.class), unit.get(Config.class), unit.get(Binder.class)); - }); - } - - @Test - public void scanShouldCreateJustOneController() throws Exception { - new MockUnit(Env.class, Config.class, Binder.class, Router.class) - .expect(ns("app.ns")) - .expect(runtimeProcessors) - .expect(scanResult("app.ns")) - .expect(routes) - .expect( - annotations(Path.class, FooController.class.getName(), FooController.class.getName())) - .expect(subClassesOf(Jooby.class)) - .expect(appclass(ScannerTest.class.getName())) - .expect(unit -> { - Router routes = unit.get(Router.class); - expect(routes.use(FooController.class)).andReturn(null); - }) - .run(unit -> { - new Scanner() - .configure(unit.get(Env.class), unit.get(Config.class), unit.get(Binder.class)); - }); - } - - @Test - public void scanShouldIgnoreAbsClasses() throws Exception { - new MockUnit(Env.class, Config.class, Binder.class, Router.class) - .expect(ns("app.ns")) - .expect(runtimeProcessors) - .expect(scanResult("app.ns")) - .expect(routes) - .expect( - annotations(Path.class, AbsController.class.getName())) - .expect(subClassesOf(Jooby.class)) - .expect(appclass(ScannerTest.class.getName())) - .run(unit -> { - new Scanner() - .configure(unit.get(Env.class), unit.get(Config.class), unit.get(Binder.class)); - }); - } - - @SuppressWarnings("rawtypes") - private Block annotations(final Class type, final String... names) { - return annotations(type, Arrays.asList(names)); - } - - @SuppressWarnings("rawtypes") - private Block annotations(final Class type, final List classes) { - return unit -> { - ScanResult result = unit.get(ScanResult.class); - expect(result.getNamesOfClassesWithAnnotation(type)).andReturn(classes); - }; - } - - @SuppressWarnings("rawtypes") - private Block implementing(final Class type, final String... names) { - return implementing(type, Arrays.asList(names)); - } - - @SuppressWarnings("rawtypes") - private Block implementing(final Class type, final List classes) { - return unit -> { - ScanResult result = unit.get(ScanResult.class); - expect(result.getNamesOfClassesImplementing(type)) - .andReturn(classes); - }; - } - - @SuppressWarnings("rawtypes") - private Block subClassesOf(final Class type, final String... names) { - return subClassesOf(type, Arrays.asList(names)); - } - - @SuppressWarnings("rawtypes") - private Block subClassesOf(final Class type, final List classes) { - return unit -> { - ScanResult result = unit.get(ScanResult.class); - expect(result.getNamesOfSubclassesOf(type)) - .andReturn(classes); - }; - } - - private Block ns(final String pkg) { - return unit -> { - Config conf = unit.get(Config.class); - expect(conf.getString("application.ns")).andReturn(pkg); - }; - } - - private Block appclass(final String main) { - return unit -> { - Config conf = unit.get(Config.class); - expect(conf.getString("application.class")).andReturn(main); - }; - } - - private Block scanResult(final Object... spec) { - return unit -> { - FastClasspathScanner scanner = unit.constructor(FastClasspathScanner.class) - .args(String[].class) - .build(spec); - - ScanResult result = unit.mock(ScanResult.class); - - expect(scanner.scan(2)).andReturn(result); - - unit.registerMock(ScanResult.class, result); - }; - } -} diff --git a/pom.xml b/pom.xml index 1e40aa7eec..c2be4b3573 100644 --- a/pom.xml +++ b/pom.xml @@ -621,9 +621,9 @@ - io.github.lukehutch - fast-classpath-scanner - ${fast-classpath-scanner.version} + io.github.classgraph + classgraph + ${classgraph.version} @@ -3273,7 +3273,7 @@ org.eclipse.jdt.apt.processorOptions/defaultOverwrite=true 3.5.0 2.5.9 1.1.1 - 3.1.6 + 4.6.18 0.0.8 2.2 1.2.0 From ff3e15f794abfdc67ce31f9c4073d09d47d00f7e Mon Sep 17 00:00:00 2001 From: Edgar Espina Date: Sun, 20 Jan 2019 12:42:03 -0300 Subject: [PATCH 26/93] Gson: support raw string as json response fix #1269 --- .../java/org/jooby/json/GsonRawRenderer.java | 222 ++++++++++++++++++ .../java/org/jooby/json/GsonRenderer.java | 2 +- .../src/main/java/org/jooby/json/Gzon.java | 25 +- .../java/org/jooby/json/GsonRendererTest.java | 37 +++ .../test/java/org/jooby/json/GzonTest.java | 11 + .../org/jooby/json/JacksonRawRenderer.java | 2 +- 6 files changed, 295 insertions(+), 4 deletions(-) create mode 100644 modules/jooby-gson/src/main/java/org/jooby/json/GsonRawRenderer.java diff --git a/modules/jooby-gson/src/main/java/org/jooby/json/GsonRawRenderer.java b/modules/jooby-gson/src/main/java/org/jooby/json/GsonRawRenderer.java new file mode 100644 index 0000000000..c2d30426c8 --- /dev/null +++ b/modules/jooby-gson/src/main/java/org/jooby/json/GsonRawRenderer.java @@ -0,0 +1,222 @@ +/** + * Apache License + * Version 2.0, January 2004 + * http://www.apache.org/licenses/ + * + * TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + * + * 1. Definitions. + * + * "License" shall mean the terms and conditions for use, reproduction, + * and distribution as defined by Sections 1 through 9 of this document. + * + * "Licensor" shall mean the copyright owner or entity authorized by + * the copyright owner that is granting the License. + * + * "Legal Entity" shall mean the union of the acting entity and all + * other entities that control, are controlled by, or are under common + * control with that entity. For the purposes of this definition, + * "control" means (i) the power, direct or indirect, to cause the + * direction or management of such entity, whether by contract or + * otherwise, or (ii) ownership of fifty percent (50%) or more of the + * outstanding shares, or (iii) beneficial ownership of such entity. + * + * "You" (or "Your") shall mean an individual or Legal Entity + * exercising permissions granted by this License. + * + * "Source" form shall mean the preferred form for making modifications, + * including but not limited to software source code, documentation + * source, and configuration files. + * + * "Object" form shall mean any form resulting from mechanical + * transformation or translation of a Source form, including but + * not limited to compiled object code, generated documentation, + * and conversions to other media types. + * + * "Work" shall mean the work of authorship, whether in Source or + * Object form, made available under the License, as indicated by a + * copyright notice that is included in or attached to the work + * (an example is provided in the Appendix below). + * + * "Derivative Works" shall mean any work, whether in Source or Object + * form, that is based on (or derived from) the Work and for which the + * editorial revisions, annotations, elaborations, or other modifications + * represent, as a whole, an original work of authorship. For the purposes + * of this License, Derivative Works shall not include works that remain + * separable from, or merely link (or bind by name) to the interfaces of, + * the Work and Derivative Works thereof. + * + * "Contribution" shall mean any work of authorship, including + * the original version of the Work and any modifications or additions + * to that Work or Derivative Works thereof, that is intentionally + * submitted to Licensor for inclusion in the Work by the copyright owner + * or by an individual or Legal Entity authorized to submit on behalf of + * the copyright owner. For the purposes of this definition, "submitted" + * means any form of electronic, verbal, or written communication sent + * to the Licensor or its representatives, including but not limited to + * communication on electronic mailing lists, source code control systems, + * and issue tracking systems that are managed by, or on behalf of, the + * Licensor for the purpose of discussing and improving the Work, but + * excluding communication that is conspicuously marked or otherwise + * designated in writing by the copyright owner as "Not a Contribution." + * + * "Contributor" shall mean Licensor and any individual or Legal Entity + * on behalf of whom a Contribution has been received by Licensor and + * subsequently incorporated within the Work. + * + * 2. Grant of Copyright License. Subject to the terms and conditions of + * this License, each Contributor hereby grants to You a perpetual, + * worldwide, non-exclusive, no-charge, royalty-free, irrevocable + * copyright license to reproduce, prepare Derivative Works of, + * publicly display, publicly perform, sublicense, and distribute the + * Work and such Derivative Works in Source or Object form. + * + * 3. Grant of Patent License. Subject to the terms and conditions of + * this License, each Contributor hereby grants to You a perpetual, + * worldwide, non-exclusive, no-charge, royalty-free, irrevocable + * (except as stated in this section) patent license to make, have made, + * use, offer to sell, sell, import, and otherwise transfer the Work, + * where such license applies only to those patent claims licensable + * by such Contributor that are necessarily infringed by their + * Contribution(s) alone or by combination of their Contribution(s) + * with the Work to which such Contribution(s) was submitted. If You + * institute patent litigation against any entity (including a + * cross-claim or counterclaim in a lawsuit) alleging that the Work + * or a Contribution incorporated within the Work constitutes direct + * or contributory patent infringement, then any patent licenses + * granted to You under this License for that Work shall terminate + * as of the date such litigation is filed. + * + * 4. Redistribution. You may reproduce and distribute copies of the + * Work or Derivative Works thereof in any medium, with or without + * modifications, and in Source or Object form, provided that You + * meet the following conditions: + * + * (a) You must give any other recipients of the Work or + * Derivative Works a copy of this License; and + * + * (b) You must cause any modified files to carry prominent notices + * stating that You changed the files; and + * + * (c) You must retain, in the Source form of any Derivative Works + * that You distribute, all copyright, patent, trademark, and + * attribution notices from the Source form of the Work, + * excluding those notices that do not pertain to any part of + * the Derivative Works; and + * + * (d) If the Work includes a "NOTICE" text file as part of its + * distribution, then any Derivative Works that You distribute must + * include a readable copy of the attribution notices contained + * within such NOTICE file, excluding those notices that do not + * pertain to any part of the Derivative Works, in at least one + * of the following places: within a NOTICE text file distributed + * as part of the Derivative Works; within the Source form or + * documentation, if provided along with the Derivative Works; or, + * within a display generated by the Derivative Works, if and + * wherever such third-party notices normally appear. The contents + * of the NOTICE file are for informational purposes only and + * do not modify the License. You may add Your own attribution + * notices within Derivative Works that You distribute, alongside + * or as an addendum to the NOTICE text from the Work, provided + * that such additional attribution notices cannot be construed + * as modifying the License. + * + * You may add Your own copyright statement to Your modifications and + * may provide additional or different license terms and conditions + * for use, reproduction, or distribution of Your modifications, or + * for any such Derivative Works as a whole, provided Your use, + * reproduction, and distribution of the Work otherwise complies with + * the conditions stated in this License. + * + * 5. Submission of Contributions. Unless You explicitly state otherwise, + * any Contribution intentionally submitted for inclusion in the Work + * by You to the Licensor shall be under the terms and conditions of + * this License, without any additional terms or conditions. + * Notwithstanding the above, nothing herein shall supersede or modify + * the terms of any separate license agreement you may have executed + * with Licensor regarding such Contributions. + * + * 6. Trademarks. This License does not grant permission to use the trade + * names, trademarks, service marks, or product names of the Licensor, + * except as required for reasonable and customary use in describing the + * origin of the Work and reproducing the content of the NOTICE file. + * + * 7. Disclaimer of Warranty. Unless required by applicable law or + * agreed to in writing, Licensor provides the Work (and each + * Contributor provides its Contributions) on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + * implied, including, without limitation, any warranties or conditions + * of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + * PARTICULAR PURPOSE. You are solely responsible for determining the + * appropriateness of using or redistributing the Work and assume any + * risks associated with Your exercise of permissions under this License. + * + * 8. Limitation of Liability. In no event and under no legal theory, + * whether in tort (including negligence), contract, or otherwise, + * unless required by applicable law (such as deliberate and grossly + * negligent acts) or agreed to in writing, shall any Contributor be + * liable to You for damages, including any direct, indirect, special, + * incidental, or consequential damages of any character arising as a + * result of this License or out of the use or inability to use the + * Work (including but not limited to damages for loss of goodwill, + * work stoppage, computer failure or malfunction, or any and all + * other commercial damages or losses), even if such Contributor + * has been advised of the possibility of such damages. + * + * 9. Accepting Warranty or Additional Liability. While redistributing + * the Work or Derivative Works thereof, You may choose to offer, + * and charge a fee for, acceptance of support, warranty, indemnity, + * or other liability obligations and/or rights consistent with this + * License. However, in accepting such obligations, You may act only + * on Your own behalf and on Your sole responsibility, not on behalf + * of any other Contributor, and only if You agree to indemnify, + * defend, and hold each Contributor harmless for any liability + * incurred by, or claims asserted against, such Contributor by reason + * of your accepting any such warranty or additional liability. + * + * END OF TERMS AND CONDITIONS + * + * APPENDIX: How to apply the Apache License to your work. + * + * To apply the Apache License to your work, attach the following + * boilerplate notice, with the fields enclosed by brackets "{}" + * replaced with your own identifying information. (Don't include + * the brackets!) The text should be enclosed in the appropriate + * comment syntax for the file format. We also recommend that a + * file or class name and description of purpose be included on the + * same "printed page" as the copyright notice for easier + * identification within third-party archives. + * + * Copyright 2014 Edgar Espina + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.jooby.json; + +import com.google.gson.Gson; +import org.jooby.MediaType; + +class GsonRawRenderer extends GsonRenderer { + + public GsonRawRenderer(MediaType type, Gson gson) { + super(type, gson); + } + + @Override public void render(Object value, Context ctx) throws Exception { + if (value instanceof CharSequence) { + ctx.type(type).send(value.toString()); + } else { + super.render(value, ctx); + } + } +} diff --git a/modules/jooby-gson/src/main/java/org/jooby/json/GsonRenderer.java b/modules/jooby-gson/src/main/java/org/jooby/json/GsonRenderer.java index 75e17d283b..0f08b823a6 100644 --- a/modules/jooby-gson/src/main/java/org/jooby/json/GsonRenderer.java +++ b/modules/jooby-gson/src/main/java/org/jooby/json/GsonRenderer.java @@ -212,7 +212,7 @@ class GsonRenderer implements Renderer { - private final MediaType type; + protected final MediaType type; private final Gson gson; diff --git a/modules/jooby-gson/src/main/java/org/jooby/json/Gzon.java b/modules/jooby-gson/src/main/java/org/jooby/json/Gzon.java index 24c66f2ee3..5c5f69e496 100644 --- a/modules/jooby-gson/src/main/java/org/jooby/json/Gzon.java +++ b/modules/jooby-gson/src/main/java/org/jooby/json/Gzon.java @@ -278,6 +278,8 @@ public class Gzon implements Jooby.Module { private BiConsumer configurer; + private boolean raw; + /** * Creates a new {@link Gson}. * @@ -351,8 +353,27 @@ public void configure(final Env env, final Config config, final Binder binder) { Multibinder.newSetBinder(binder, Parser.class).addBinding() .toInstance(new GsonParser(type, gson)); - Multibinder.newSetBinder(binder, Renderer.class).addBinding() - .toInstance(new GsonRenderer(type, gson)); + GsonRenderer renderer = raw ? new GsonRawRenderer(type, gson) : new GsonRenderer(type, gson); + + Multibinder.newSetBinder(binder, Renderer.class).addBinding().toInstance(renderer); + } + + /** + * Add support raw string json responses: + * + *
{@code
+   * {
+   *   get("/raw", () -> {
+   *     return "{\"raw\": \"json\"}";
+   *   });
+   * }
+   * }
+ * + * @return This module. + */ + public Gzon raw() { + raw = true; + return this; } } diff --git a/modules/jooby-gson/src/test/java/org/jooby/json/GsonRendererTest.java b/modules/jooby-gson/src/test/java/org/jooby/json/GsonRendererTest.java index e5be910a09..92d66cfe91 100644 --- a/modules/jooby-gson/src/test/java/org/jooby/json/GsonRendererTest.java +++ b/modules/jooby-gson/src/test/java/org/jooby/json/GsonRendererTest.java @@ -39,6 +39,43 @@ public void render() throws Exception { }); } + @Test + public void rawWithCharSequence() throws Exception { + String value = "{\"foo\":\"bar\"}"; + new MockUnit(Gson.class, Renderer.Context.class) + .expect(unit -> { + Context ctx = unit.get(Renderer.Context.class); + expect(ctx.type(MediaType.json)).andReturn(ctx); + ctx.send(value); + }) + .run(unit -> { + new GsonRawRenderer(MediaType.json, unit.get(Gson.class)) + .render(value, unit.get(Renderer.Context.class)); + }, unit -> { + }); + } + + @Test + public void rawWithObject() throws Exception { + Object value = new GsonRendererTest(); + new MockUnit(Gson.class, Renderer.Context.class) + .expect(unit -> { + Context ctx = unit.get(Renderer.Context.class); + expect(ctx.accepts(MediaType.json)).andReturn(true); + expect(ctx.type(MediaType.json)).andReturn(ctx); + ctx.send("{}"); + }) + .expect(unit -> { + Gson gson = unit.get(Gson.class); + expect(gson.toJson(value)).andReturn("{}"); + }) + .run(unit -> { + new GsonRawRenderer(MediaType.json, unit.get(Gson.class)) + .render(value, unit.get(Renderer.Context.class)); + }, unit -> { + }); + } + @Test public void renderSkip() throws Exception { Object value = new GsonRendererTest(); diff --git a/modules/jooby-gson/src/test/java/org/jooby/json/GzonTest.java b/modules/jooby-gson/src/test/java/org/jooby/json/GzonTest.java index 675fc78284..ef6713998e 100644 --- a/modules/jooby-gson/src/test/java/org/jooby/json/GzonTest.java +++ b/modules/jooby-gson/src/test/java/org/jooby/json/GzonTest.java @@ -70,6 +70,17 @@ public void defaults() throws Exception { }); } + @Test + public void raw() throws Exception { + new MockUnit(Env.class, Config.class, Binder.class, Gson.class) + .expect(body) + .run(unit -> { + new Gzon() + .raw() + .configure(unit.get(Env.class), unit.get(Config.class), unit.get(Binder.class)); + }); + } + @SuppressWarnings("unchecked") @Test public void withCallback() throws Exception { diff --git a/modules/jooby-jackson/src/main/java/org/jooby/json/JacksonRawRenderer.java b/modules/jooby-jackson/src/main/java/org/jooby/json/JacksonRawRenderer.java index fce620ce18..225600c70b 100644 --- a/modules/jooby-jackson/src/main/java/org/jooby/json/JacksonRawRenderer.java +++ b/modules/jooby-jackson/src/main/java/org/jooby/json/JacksonRawRenderer.java @@ -216,7 +216,7 @@ public JacksonRawRenderer(final ObjectMapper mapper, final MediaType type) { @Override protected void renderValue(final Object value, final Renderer.Context ctx) throws Exception { if (value instanceof CharSequence) { - ctx.send(value.toString()); + ctx.type(type).send(value.toString()); } else { super.renderValue(value, ctx); } From 5280bad295e5e152631c134b048a41fc530c22f3 Mon Sep 17 00:00:00 2001 From: lis Date: Tue, 22 Jan 2019 18:30:10 +0400 Subject: [PATCH 27/93] testing and clean of RedisSentinel --- .../src/main/java/org/jooby/jedis/Redis.java | 25 +- .../java/org/jooby/jedis/RedisSentinel.java | 294 ++++++++++++++---- .../main/resources/org/jooby/jedis/jedis.conf | 4 + .../org/jooby/jedis/RedisSentinelTest.java | 94 ++++++ 4 files changed, 339 insertions(+), 78 deletions(-) create mode 100644 modules/jooby-jedis/src/test/java/org/jooby/jedis/RedisSentinelTest.java diff --git a/modules/jooby-jedis/src/main/java/org/jooby/jedis/Redis.java b/modules/jooby-jedis/src/main/java/org/jooby/jedis/Redis.java index 34c4b62308..b8c9e7f69b 100644 --- a/modules/jooby-jedis/src/main/java/org/jooby/jedis/Redis.java +++ b/modules/jooby-jedis/src/main/java/org/jooby/jedis/Redis.java @@ -203,25 +203,22 @@ */ package org.jooby.jedis; -import static java.util.Objects.requireNonNull; - -import java.net.URI; -import java.util.concurrent.TimeUnit; - -import javax.inject.Provider; - +import com.google.inject.Binder; +import com.typesafe.config.Config; +import com.typesafe.config.ConfigFactory; import org.apache.commons.pool2.impl.GenericObjectPoolConfig; import org.jooby.Env; import org.jooby.Env.ServiceKey; import org.jooby.Jooby; - -import com.google.inject.Binder; -import com.typesafe.config.Config; -import com.typesafe.config.ConfigFactory; - import redis.clients.jedis.Jedis; import redis.clients.jedis.JedisPool; +import javax.inject.Provider; +import java.net.URI; +import java.util.concurrent.TimeUnit; + +import static java.util.Objects.requireNonNull; + /** * Redis cache and key/value data store for Jooby. Exposes a {@link Jedis} service. * @@ -378,7 +375,7 @@ public void configure(final Env env, final Config config, final Binder binder) { k -> binder.bind(k).toProvider(jedis)); } - private GenericObjectPoolConfig poolConfig(final Config config, final String name) { + GenericObjectPoolConfig poolConfig(final Config config, final String name) { Config poolConfig = config.getConfig("jedis.pool"); String override = "jedis." + name; if (config.hasPath(override)) { @@ -387,7 +384,7 @@ private GenericObjectPoolConfig poolConfig(final Config config, final String nam return poolConfig(poolConfig); } - private GenericObjectPoolConfig poolConfig(final Config config) { + GenericObjectPoolConfig poolConfig(final Config config) { GenericObjectPoolConfig poolConfig = new GenericObjectPoolConfig(); poolConfig.setBlockWhenExhausted(config.getBoolean("blockWhenExhausted")); poolConfig.setEvictionPolicyClassName(config.getString("evictionPolicyClassName")); diff --git a/modules/jooby-jedis/src/main/java/org/jooby/jedis/RedisSentinel.java b/modules/jooby-jedis/src/main/java/org/jooby/jedis/RedisSentinel.java index 1798fa3cec..e024349c9c 100644 --- a/modules/jooby-jedis/src/main/java/org/jooby/jedis/RedisSentinel.java +++ b/modules/jooby-jedis/src/main/java/org/jooby/jedis/RedisSentinel.java @@ -1,17 +1,217 @@ +/** + * Apache License + * Version 2.0, January 2004 + * http://www.apache.org/licenses/ + * + * TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + * + * 1. Definitions. + * + * "License" shall mean the terms and conditions for use, reproduction, + * and distribution as defined by Sections 1 through 9 of this document. + * + * "Licensor" shall mean the copyright owner or entity authorized by + * the copyright owner that is granting the License. + * + * "Legal Entity" shall mean the union of the acting entity and all + * other entities that control, are controlled by, or are under common + * control with that entity. For the purposes of this definition, + * "control" means (i) the power, direct or indirect, to cause the + * direction or management of such entity, whether by contract or + * otherwise, or (ii) ownership of fifty percent (50%) or more of the + * outstanding shares, or (iii) beneficial ownership of such entity. + * + * "You" (or "Your") shall mean an individual or Legal Entity + * exercising permissions granted by this License. + * + * "Source" form shall mean the preferred form for making modifications, + * including but not limited to software source code, documentation + * source, and configuration files. + * + * "Object" form shall mean any form resulting from mechanical + * transformation or translation of a Source form, including but + * not limited to compiled object code, generated documentation, + * and conversions to other media types. + * + * "Work" shall mean the work of authorship, whether in Source or + * Object form, made available under the License, as indicated by a + * copyright notice that is included in or attached to the work + * (an example is provided in the Appendix below). + * + * "Derivative Works" shall mean any work, whether in Source or Object + * form, that is based on (or derived from) the Work and for which the + * editorial revisions, annotations, elaborations, or other modifications + * represent, as a whole, an original work of authorship. For the purposes + * of this License, Derivative Works shall not include works that remain + * separable from, or merely link (or bind by name) to the interfaces of, + * the Work and Derivative Works thereof. + * + * "Contribution" shall mean any work of authorship, including + * the original version of the Work and any modifications or additions + * to that Work or Derivative Works thereof, that is intentionally + * submitted to Licensor for inclusion in the Work by the copyright owner + * or by an individual or Legal Entity authorized to submit on behalf of + * the copyright owner. For the purposes of this definition, "submitted" + * means any form of electronic, verbal, or written communication sent + * to the Licensor or its representatives, including but not limited to + * communication on electronic mailing lists, source code control systems, + * and issue tracking systems that are managed by, or on behalf of, the + * Licensor for the purpose of discussing and improving the Work, but + * excluding communication that is conspicuously marked or otherwise + * designated in writing by the copyright owner as "Not a Contribution." + * + * "Contributor" shall mean Licensor and any individual or Legal Entity + * on behalf of whom a Contribution has been received by Licensor and + * subsequently incorporated within the Work. + * + * 2. Grant of Copyright License. Subject to the terms and conditions of + * this License, each Contributor hereby grants to You a perpetual, + * worldwide, non-exclusive, no-charge, royalty-free, irrevocable + * copyright license to reproduce, prepare Derivative Works of, + * publicly display, publicly perform, sublicense, and distribute the + * Work and such Derivative Works in Source or Object form. + * + * 3. Grant of Patent License. Subject to the terms and conditions of + * this License, each Contributor hereby grants to You a perpetual, + * worldwide, non-exclusive, no-charge, royalty-free, irrevocable + * (except as stated in this section) patent license to make, have made, + * use, offer to sell, sell, import, and otherwise transfer the Work, + * where such license applies only to those patent claims licensable + * by such Contributor that are necessarily infringed by their + * Contribution(s) alone or by combination of their Contribution(s) + * with the Work to which such Contribution(s) was submitted. If You + * institute patent litigation against any entity (including a + * cross-claim or counterclaim in a lawsuit) alleging that the Work + * or a Contribution incorporated within the Work constitutes direct + * or contributory patent infringement, then any patent licenses + * granted to You under this License for that Work shall terminate + * as of the date such litigation is filed. + * + * 4. Redistribution. You may reproduce and distribute copies of the + * Work or Derivative Works thereof in any medium, with or without + * modifications, and in Source or Object form, provided that You + * meet the following conditions: + * + * (a) You must give any other recipients of the Work or + * Derivative Works a copy of this License; and + * + * (b) You must cause any modified files to carry prominent notices + * stating that You changed the files; and + * + * (c) You must retain, in the Source form of any Derivative Works + * that You distribute, all copyright, patent, trademark, and + * attribution notices from the Source form of the Work, + * excluding those notices that do not pertain to any part of + * the Derivative Works; and + * + * (d) If the Work includes a "NOTICE" text file as part of its + * distribution, then any Derivative Works that You distribute must + * include a readable copy of the attribution notices contained + * within such NOTICE file, excluding those notices that do not + * pertain to any part of the Derivative Works, in at least one + * of the following places: within a NOTICE text file distributed + * as part of the Derivative Works; within the Source form or + * documentation, if provided along with the Derivative Works; or, + * within a display generated by the Derivative Works, if and + * wherever such third-party notices normally appear. The contents + * of the NOTICE file are for informational purposes only and + * do not modify the License. You may add Your own attribution + * notices within Derivative Works that You distribute, alongside + * or as an addendum to the NOTICE text from the Work, provided + * that such additional attribution notices cannot be construed + * as modifying the License. + * + * You may add Your own copyright statement to Your modifications and + * may provide additional or different license terms and conditions + * for use, reproduction, or distribution of Your modifications, or + * for any such Derivative Works as a whole, provided Your use, + * reproduction, and distribution of the Work otherwise complies with + * the conditions stated in this License. + * + * 5. Submission of Contributions. Unless You explicitly state otherwise, + * any Contribution intentionally submitted for inclusion in the Work + * by You to the Licensor shall be under the terms and conditions of + * this License, without any additional terms or conditions. + * Notwithstanding the above, nothing herein shall supersede or modify + * the terms of any separate license agreement you may have executed + * with Licensor regarding such Contributions. + * + * 6. Trademarks. This License does not grant permission to use the trade + * names, trademarks, service marks, or product names of the Licensor, + * except as required for reasonable and customary use in describing the + * origin of the Work and reproducing the content of the NOTICE file. + * + * 7. Disclaimer of Warranty. Unless required by applicable law or + * agreed to in writing, Licensor provides the Work (and each + * Contributor provides its Contributions) on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + * implied, including, without limitation, any warranties or conditions + * of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + * PARTICULAR PURPOSE. You are solely responsible for determining the + * appropriateness of using or redistributing the Work and assume any + * risks associated with Your exercise of permissions under this License. + * + * 8. Limitation of Liability. In no event and under no legal theory, + * whether in tort (including negligence), contract, or otherwise, + * unless required by applicable law (such as deliberate and grossly + * negligent acts) or agreed to in writing, shall any Contributor be + * liable to You for damages, including any direct, indirect, special, + * incidental, or consequential damages of any character arising as a + * result of this License or out of the use or inability to use the + * Work (including but not limited to damages for loss of goodwill, + * work stoppage, computer failure or malfunction, or any and all + * other commercial damages or losses), even if such Contributor + * has been advised of the possibility of such damages. + * + * 9. Accepting Warranty or Additional Liability. While redistributing + * the Work or Derivative Works thereof, You may choose to offer, + * and charge a fee for, acceptance of support, warranty, indemnity, + * or other liability obligations and/or rights consistent with this + * License. However, in accepting such obligations, You may act only + * on Your own behalf and on Your sole responsibility, not on behalf + * of any other Contributor, and only if You agree to indemnify, + * defend, and hold each Contributor harmless for any liability + * incurred by, or claims asserted against, such Contributor by reason + * of your accepting any such warranty or additional liability. + * + * END OF TERMS AND CONDITIONS + * + * APPENDIX: How to apply the Apache License to your work. + * + * To apply the Apache License to your work, attach the following + * boilerplate notice, with the fields enclosed by brackets "{}" + * replaced with your own identifying information. (Don't include + * the brackets!) The text should be enclosed in the appropriate + * comment syntax for the file format. We also recommend that a + * file or class name and description of purpose be included on the + * same "printed page" as the copyright notice for easier + * identification within third-party archives. + * + * Copyright 2014 Edgar Espina + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package org.jooby.jedis; import com.google.inject.Binder; import com.typesafe.config.Config; -import com.typesafe.config.ConfigFactory; import org.apache.commons.pool2.impl.GenericObjectPoolConfig; import org.jooby.Env; -import org.jooby.Jooby; -import redis.clients.jedis.Jedis; import redis.clients.jedis.JedisSentinelPool; -import javax.inject.Provider; import java.net.URI; import java.util.HashSet; +import java.util.List; import java.util.Set; import java.util.concurrent.TimeUnit; @@ -23,24 +223,23 @@ * @Author: lis, Luganski Igor * @since 1.5.0 */ -public class RedisSentinel implements Jooby.Module { +public class RedisSentinel extends Redis { /** * Database name. */ private String name = "db"; - private Set sentinels = new HashSet(); - /** *

- * Creates a new {@link Redis} instance and connect to the provided database. Please note, the + * Creates a new {@link RedisSentinel} instance and connect to the provided database. Please note, the * name is a property in your application.conf file with Redis URI. + * RedisSentinel is pool of Jedis and for get Jedis just call pool.getResource() *

* *
      * {
-     *   use(new Redis("db1"));
+     *   use(new RedisSentinel("db1"));
      * }
      * 
* @@ -48,6 +247,9 @@ public class RedisSentinel implements Jooby.Module { * *
      * db1 = ""redis://localhost:6379""
+     * jedis.sentinel.hosts = ["localhost:26379"]
+     * jedis.sentinel.master = "master"
+     * jedis.password = ""
      * 
* * Default database name is: db @@ -58,8 +260,12 @@ public RedisSentinel(final String name) { this.name = requireNonNull(name, "A db property is required."); } + public RedisSentinel() { + this("db"); + } + @Override - public void configure(Env env, Config config, Binder binder) throws Throwable { + public void configure(Env env, Config config, Binder binder) { /** * Pool */ @@ -67,69 +273,29 @@ public void configure(Env env, Config config, Binder binder) throws Throwable { int timeout = (int) config.getDuration("jedis.timeout", TimeUnit.MILLISECONDS); URI uri = URI.create(config.getString(name)); - String MASTER_NAME = ""; //todo take from Config - String REDIS_PASSWORD = ""; //todo take from Config - //todo take from Config -// sentinels.add("mymaster-0.servers.example.com:26379"); -// sentinels.add("mymaster-1.servers.example.com:26379"); -// sentinels.add("mymaster-2.servers.example.com:26379"); + List hosts = config.getStringList("jedis.sentinel.hosts"); + if (hosts.size() < 1) throw new IllegalArgumentException("List of hosts (jedis.sentinel.hosts) can not be empty"); + final Set sentinels = new HashSet<>(hosts); -// JedisSentinelPool pool = new JedisSentinelPool(MASTER_NAME, sentinels, poolConfig); - JedisSentinelPool pool = new JedisSentinelPool(MASTER_NAME, sentinels, poolConfig, REDIS_PASSWORD); + final String MASTER_NAME = config.getString("jedis.sentinel.master"); + final String REDIS_PASSWORD = config.getString("jedis.password"); + + JedisSentinelPool pool; + if (REDIS_PASSWORD.length() > 0) { + pool = new JedisSentinelPool(MASTER_NAME, sentinels, poolConfig, timeout, REDIS_PASSWORD); + } else { + pool = new JedisSentinelPool(MASTER_NAME, sentinels, poolConfig, timeout); + } RedisProvider provider = new RedisProvider(pool, uri, poolConfig); - pool.destroy(); env.onStart(provider::start); env.onStop(provider::stop); - Provider jedis = (Provider) () -> pool.getResource(); +// Provider jedis = () -> pool.getResource(); Env.ServiceKey serviceKey = env.serviceKey(); serviceKey.generate(JedisSentinelPool.class, name, k -> binder.bind(k).toInstance(pool)); - serviceKey.generate(Jedis.class, name, - k -> binder.bind(k).toProvider(jedis)); - - //Socket socket = jedis.getClient().getSocket(); -// printer("Connected to " + socket.getRemoteSocketAddress()); - } - - private GenericObjectPoolConfig poolConfig(final Config config, final String name) { - Config poolConfig = config.getConfig("jedis.pool"); - String override = "jedis." + name; - if (config.hasPath(override)) { - poolConfig = config.getConfig(override).withFallback(poolConfig); - } - return poolConfig(poolConfig); - } - - private GenericObjectPoolConfig poolConfig(final Config config) { - GenericObjectPoolConfig poolConfig = new GenericObjectPoolConfig(); - poolConfig.setBlockWhenExhausted(config.getBoolean("blockWhenExhausted")); - poolConfig.setEvictionPolicyClassName(config.getString("evictionPolicyClassName")); - poolConfig.setJmxEnabled(config.getBoolean("jmxEnabled")); - poolConfig.setJmxNamePrefix(config.getString("jmxNamePrefix")); - poolConfig.setLifo(config.getBoolean("lifo")); - poolConfig.setMaxIdle(config.getInt("maxIdle")); - poolConfig.setMaxTotal(config.getInt("maxTotal")); - poolConfig.setMaxWaitMillis(config.getDuration("maxWait", TimeUnit.MILLISECONDS)); - poolConfig.setMinEvictableIdleTimeMillis(config.getDuration("minEvictableIdle", - TimeUnit.MILLISECONDS)); - poolConfig.setMinIdle(config.getInt("minIdle")); - poolConfig.setNumTestsPerEvictionRun(config.getInt("numTestsPerEvictionRun")); - poolConfig.setSoftMinEvictableIdleTimeMillis( - config.getDuration("softMinEvictableIdle", TimeUnit.MILLISECONDS)); - poolConfig.setTestOnBorrow(config.getBoolean("testOnBorrow")); - poolConfig.setTestOnReturn(config.getBoolean("testOnReturn")); - poolConfig.setTestWhileIdle(config.getBoolean("testWhileIdle")); - poolConfig.setTimeBetweenEvictionRunsMillis(config.getDuration("timeBetweenEvictionRuns", - TimeUnit.MILLISECONDS)); - - return poolConfig; - } - - @Override - public Config config() { - return ConfigFactory.parseResources(getClass(), "jedis.conf"); +// serviceKey.generate(Jedis.class, name, k -> binder.bind(k).toProvider(jedis)); } } diff --git a/modules/jooby-jedis/src/main/resources/org/jooby/jedis/jedis.conf b/modules/jooby-jedis/src/main/resources/org/jooby/jedis/jedis.conf index 08f9265f15..c41c715e61 100644 --- a/modules/jooby-jedis/src/main/resources/org/jooby/jedis/jedis.conf +++ b/modules/jooby-jedis/src/main/resources/org/jooby/jedis/jedis.conf @@ -24,3 +24,7 @@ jedis.pool.jmxNamePrefix = redis-pool # session store, key prefix and timeout in seconds jedis.session.prefix = sessions jedis.session.timeout = ${session.timeout} + +jedis.sentinel.hosts = ["localhost:26379"] +jedis.sentinel.master = "master" +jedis.password = "" \ No newline at end of file diff --git a/modules/jooby-jedis/src/test/java/org/jooby/jedis/RedisSentinelTest.java b/modules/jooby-jedis/src/test/java/org/jooby/jedis/RedisSentinelTest.java new file mode 100644 index 0000000000..5fe021f609 --- /dev/null +++ b/modules/jooby-jedis/src/test/java/org/jooby/jedis/RedisSentinelTest.java @@ -0,0 +1,94 @@ +package org.jooby.jedis; + +import com.google.inject.Binder; +import com.google.inject.Key; +import com.google.inject.binder.AnnotatedBindingBuilder; +import com.google.inject.name.Names; +import com.typesafe.config.Config; +import com.typesafe.config.ConfigFactory; +import com.typesafe.config.ConfigValueFactory; +import org.apache.commons.pool2.impl.GenericObjectPoolConfig; +import org.jooby.Env; +import org.jooby.funzy.Throwing; +import org.jooby.test.MockUnit; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.powermock.core.classloader.annotations.PrepareForTest; +import org.powermock.modules.junit4.PowerMockRunner; +import redis.clients.jedis.JedisSentinelPool; + +import java.util.HashSet; +import java.util.Set; + +import static org.easymock.EasyMock.expect; +import static org.easymock.EasyMock.isA; +import static org.junit.Assert.assertNotNull; + + +@RunWith(PowerMockRunner.class) +@PrepareForTest({RedisSentinel.class, JedisSentinelPool.class, GenericObjectPoolConfig.class}) +public class RedisSentinelTest { + + private MockUnit.Block onManaged = unit -> { + Env env = unit.get(Env.class); + expect(env.onStart(isA(Throwing.Runnable.class))).andReturn(env); + expect(env.onStop(isA(Throwing.Runnable.class))).andReturn(env); + }; + + @SuppressWarnings("unchecked") + @Test + public void shouldGetJedisSentinelInstance() throws Exception { + Config config = jedisConfig().withValue("db", ConfigValueFactory.fromAnyRef("redis://localhost:26379")); + new MockUnit(Env.class, Binder.class, JedisSentinelPool.class) + .expect(unit -> { + Env env = unit.get(Env.class); + expect(env.serviceKey()).andReturn(new Env.ServiceKey()); + }) + .expect(unit -> { + GenericObjectPoolConfig poolConf = unit.mockConstructor(GenericObjectPoolConfig.class); + poolConf.setBlockWhenExhausted(true); + poolConf.setEvictionPolicyClassName("org.apache.commons.pool2.impl.DefaultEvictionPolicy"); + poolConf.setJmxEnabled(false); + poolConf.setJmxNamePrefix("redis-pool"); + poolConf.setLifo(true); + poolConf.setMaxIdle(10); + poolConf.setMaxTotal(128); + poolConf.setMaxWaitMillis(-1); + poolConf.setMinEvictableIdleTimeMillis(1800000L); + poolConf.setMinIdle(10); + poolConf.setNumTestsPerEvictionRun(3); + poolConf.setSoftMinEvictableIdleTimeMillis(1800000L); + poolConf.setTestOnBorrow(false); + poolConf.setTestOnReturn(false); + poolConf.setTestWhileIdle(false); + poolConf.setTimeBetweenEvictionRunsMillis(-1); + + HashSet hosts = new HashSet<>(); + hosts.add("localhost:26379"); + + JedisSentinelPool pool = unit.mockConstructor( + JedisSentinelPool.class, + new Class[]{String.class, Set.class, GenericObjectPoolConfig.class, int.class}, + "master", hosts, poolConf, 2000); + + AnnotatedBindingBuilder jpABB = unit.mock(AnnotatedBindingBuilder.class); + jpABB.toInstance(pool); + jpABB.toInstance(pool); + + Binder binder = unit.get(Binder.class); + expect(binder.bind(Key.get(JedisSentinelPool.class))).andReturn(jpABB); + expect(binder.bind(Key.get(JedisSentinelPool.class, Names.named("db")))).andReturn(jpABB); + }) + .expect(onManaged) + .run(unit -> { + new RedisSentinel().configure(unit.get(Env.class), config, unit.get(Binder.class)); + }, unit -> { + assertNotNull(unit.get(JedisSentinelPool.class)); + }); + } + + private Config jedisConfig() { + return ConfigFactory.parseResources(getClass(), "jedis.conf"); + } + +} From c48b7d836c7937c30607e2b974cea023d9f711a7 Mon Sep 17 00:00:00 2001 From: lis Date: Wed, 23 Jan 2019 17:21:15 +0400 Subject: [PATCH 28/93] clean up code --- .../src/main/java/org/jooby/jedis/RedisSentinel.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/modules/jooby-jedis/src/main/java/org/jooby/jedis/RedisSentinel.java b/modules/jooby-jedis/src/main/java/org/jooby/jedis/RedisSentinel.java index e024349c9c..6ef452a0a4 100644 --- a/modules/jooby-jedis/src/main/java/org/jooby/jedis/RedisSentinel.java +++ b/modules/jooby-jedis/src/main/java/org/jooby/jedis/RedisSentinel.java @@ -291,11 +291,8 @@ public void configure(Env env, Config config, Binder binder) { env.onStart(provider::start); env.onStop(provider::stop); -// Provider jedis = () -> pool.getResource(); - Env.ServiceKey serviceKey = env.serviceKey(); serviceKey.generate(JedisSentinelPool.class, name, k -> binder.bind(k).toInstance(pool)); -// serviceKey.generate(Jedis.class, name, k -> binder.bind(k).toProvider(jedis)); } } From 978fe3a0dc3cdf261d0b2af34b294b46146b788e Mon Sep 17 00:00:00 2001 From: lis Date: Wed, 23 Jan 2019 18:19:31 +0400 Subject: [PATCH 29/93] add example to documentation and clean excess var --- .../java/org/jooby/jedis/RedisSentinel.java | 35 +++++++------------ 1 file changed, 12 insertions(+), 23 deletions(-) diff --git a/modules/jooby-jedis/src/main/java/org/jooby/jedis/RedisSentinel.java b/modules/jooby-jedis/src/main/java/org/jooby/jedis/RedisSentinel.java index 6ef452a0a4..bcc8393e49 100644 --- a/modules/jooby-jedis/src/main/java/org/jooby/jedis/RedisSentinel.java +++ b/modules/jooby-jedis/src/main/java/org/jooby/jedis/RedisSentinel.java @@ -209,14 +209,11 @@ import org.jooby.Env; import redis.clients.jedis.JedisSentinelPool; -import java.net.URI; import java.util.HashSet; import java.util.List; import java.util.Set; import java.util.concurrent.TimeUnit; -import static java.util.Objects.requireNonNull; - /** * Created by * @@ -225,11 +222,6 @@ */ public class RedisSentinel extends Redis { - /** - * Database name. - */ - private String name = "db"; - /** *

* Creates a new {@link RedisSentinel} instance and connect to the provided database. Please note, the @@ -246,32 +238,29 @@ public class RedisSentinel extends Redis { * application.conf * *

-     * db1 = ""redis://localhost:6379""
      * jedis.sentinel.hosts = ["localhost:26379"]
      * jedis.sentinel.master = "master"
      * jedis.password = ""
      * 
* - * Default database name is: db - * - * @param name A database name. + * Example: + *
+     * try (Jedis redis = request.require(JedisSentinelPool.class).getResource()) {
+     *   System.out.println( redis.set("test", "this is work") );
+     *   System.out.println( redis.get("test");
+     * } catch (Exception e) {
+     *   e.printStackTrace();
+     * }
+     * 
*/ - public RedisSentinel(final String name) { - this.name = requireNonNull(name, "A db property is required."); - } - - public RedisSentinel() { - this("db"); - } @Override public void configure(Env env, Config config, Binder binder) { /** * Pool */ - GenericObjectPoolConfig poolConfig = poolConfig(config, name); + GenericObjectPoolConfig poolConfig = poolConfig(config.getConfig("jedis.pool")); int timeout = (int) config.getDuration("jedis.timeout", TimeUnit.MILLISECONDS); - URI uri = URI.create(config.getString(name)); List hosts = config.getStringList("jedis.sentinel.hosts"); if (hosts.size() < 1) throw new IllegalArgumentException("List of hosts (jedis.sentinel.hosts) can not be empty"); @@ -287,12 +276,12 @@ public void configure(Env env, Config config, Binder binder) { pool = new JedisSentinelPool(MASTER_NAME, sentinels, poolConfig, timeout); } - RedisProvider provider = new RedisProvider(pool, uri, poolConfig); + RedisProvider provider = new RedisProvider(pool, null, poolConfig); env.onStart(provider::start); env.onStop(provider::stop); Env.ServiceKey serviceKey = env.serviceKey(); - serviceKey.generate(JedisSentinelPool.class, name, k -> binder.bind(k).toInstance(pool)); + serviceKey.generate(JedisSentinelPool.class, "db", k -> binder.bind(k).toInstance(pool)); } } From cf4cdad66a8920b810f76f3292243527f4da81dd Mon Sep 17 00:00:00 2001 From: lis Date: Thu, 24 Jan 2019 00:18:50 +0400 Subject: [PATCH 30/93] remove default setting of hosts --- .../src/main/java/org/jooby/jedis/RedisSentinel.java | 4 ++-- .../jooby-jedis/src/main/resources/org/jooby/jedis/jedis.conf | 2 +- .../src/test/java/org/jooby/jedis/RedisSentinelTest.java | 4 +++- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/modules/jooby-jedis/src/main/java/org/jooby/jedis/RedisSentinel.java b/modules/jooby-jedis/src/main/java/org/jooby/jedis/RedisSentinel.java index bcc8393e49..21a7b47321 100644 --- a/modules/jooby-jedis/src/main/java/org/jooby/jedis/RedisSentinel.java +++ b/modules/jooby-jedis/src/main/java/org/jooby/jedis/RedisSentinel.java @@ -238,9 +238,9 @@ public class RedisSentinel extends Redis { * application.conf * *
-     * jedis.sentinel.hosts = ["localhost:26379"]
+     * jedis.sentinel.hosts = ["localhost:26379", "host2:26379"]
      * jedis.sentinel.master = "master"
-     * jedis.password = ""
+     * jedis.password = "mySuperSecretPasswordPutHere"
      * 
* * Example: diff --git a/modules/jooby-jedis/src/main/resources/org/jooby/jedis/jedis.conf b/modules/jooby-jedis/src/main/resources/org/jooby/jedis/jedis.conf index c41c715e61..1fd32239da 100644 --- a/modules/jooby-jedis/src/main/resources/org/jooby/jedis/jedis.conf +++ b/modules/jooby-jedis/src/main/resources/org/jooby/jedis/jedis.conf @@ -25,6 +25,6 @@ jedis.pool.jmxNamePrefix = redis-pool jedis.session.prefix = sessions jedis.session.timeout = ${session.timeout} -jedis.sentinel.hosts = ["localhost:26379"] +jedis.sentinel.hosts = [] jedis.sentinel.master = "master" jedis.password = "" \ No newline at end of file diff --git a/modules/jooby-jedis/src/test/java/org/jooby/jedis/RedisSentinelTest.java b/modules/jooby-jedis/src/test/java/org/jooby/jedis/RedisSentinelTest.java index 5fe021f609..51b638fa06 100644 --- a/modules/jooby-jedis/src/test/java/org/jooby/jedis/RedisSentinelTest.java +++ b/modules/jooby-jedis/src/test/java/org/jooby/jedis/RedisSentinelTest.java @@ -17,6 +17,7 @@ import org.powermock.modules.junit4.PowerMockRunner; import redis.clients.jedis.JedisSentinelPool; +import java.util.Collections; import java.util.HashSet; import java.util.Set; @@ -38,7 +39,8 @@ public class RedisSentinelTest { @SuppressWarnings("unchecked") @Test public void shouldGetJedisSentinelInstance() throws Exception { - Config config = jedisConfig().withValue("db", ConfigValueFactory.fromAnyRef("redis://localhost:26379")); + Config config = jedisConfig().withValue("db", ConfigValueFactory.fromAnyRef("redis://localhost:26379")) + .withValue("jedis.sentinel.hosts", ConfigValueFactory.fromAnyRef(Collections.singletonList("localhost:26379"))); new MockUnit(Env.class, Binder.class, JedisSentinelPool.class) .expect(unit -> { Env env = unit.get(Env.class); From 82f7aaf2068fb47e71ff3a6024974620882d8174 Mon Sep 17 00:00:00 2001 From: Daniel Dias Date: Mon, 4 Feb 2019 03:09:53 -0200 Subject: [PATCH 31/93] add support raw jsonb --- .../src/main/java/org/jooby/json/Yasson.java | 28 ++- .../org/jooby/json/YassonRawRenderer.java | 229 ++++++++++++++++++ .../java/org/jooby/json/YassonRenderer.java | 2 +- .../org/jooby/json/YassonRendererTest.java | 38 +++ 4 files changed, 292 insertions(+), 5 deletions(-) create mode 100644 modules/jooby-yasson/src/main/java/org/jooby/json/YassonRawRenderer.java diff --git a/modules/jooby-yasson/src/main/java/org/jooby/json/Yasson.java b/modules/jooby-yasson/src/main/java/org/jooby/json/Yasson.java index 8072f7d67e..ab1b457dba 100644 --- a/modules/jooby-yasson/src/main/java/org/jooby/json/Yasson.java +++ b/modules/jooby-yasson/src/main/java/org/jooby/json/Yasson.java @@ -280,7 +280,9 @@ public class Yasson implements Jooby.Module { private final MediaType type; private BiConsumer configurer; - + + private boolean raw; + public Yasson(final MediaType type) { this.type = requireNonNull(type, "Media type is required."); } @@ -315,8 +317,26 @@ public void configure(final Env env, final Config config, final Binder binder) { Multibinder.newSetBinder(binder, Parser.class).addBinding() .toInstance(new YassonParser(type, jsonb)); - Multibinder.newSetBinder(binder, Renderer.class).addBinding() - .toInstance(new YassonRenderer(type, jsonb)); + YassonRenderer renderer = raw ? new YassonRawRenderer(type, jsonb) : new YassonRenderer(type, jsonb); + + Multibinder.newSetBinder(binder, Renderer.class).addBinding().toInstance(renderer); } -} + /** + * Add support raw string json responses: + * + *
{@code
+   * {
+   *   get("/raw", () -> {
+   *     return "{\"raw\": \"json\"}";
+   *   });
+   * }
+   * }
+ * + * @return This module. + */ + public Yasson raw() { + raw = true; + return this; + } +} \ No newline at end of file diff --git a/modules/jooby-yasson/src/main/java/org/jooby/json/YassonRawRenderer.java b/modules/jooby-yasson/src/main/java/org/jooby/json/YassonRawRenderer.java new file mode 100644 index 0000000000..47169063b6 --- /dev/null +++ b/modules/jooby-yasson/src/main/java/org/jooby/json/YassonRawRenderer.java @@ -0,0 +1,229 @@ +/** + * Apache License + * Version 2.0, January 2004 + * http://www.apache.org/licenses/ + * + * TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + * + * 1. Definitions. + * + * "License" shall mean the terms and conditions for use, reproduction, + * and distribution as defined by Sections 1 through 9 of this document. + * + * "Licensor" shall mean the copyright owner or entity authorized by + * the copyright owner that is granting the License. + * + * "Legal Entity" shall mean the union of the acting entity and all + * other entities that control, are controlled by, or are under common + * control with that entity. For the purposes of this definition, + * "control" means (i) the power, direct or indirect, to cause the + * direction or management of such entity, whether by contract or + * otherwise, or (ii) ownership of fifty percent (50%) or more of the + * outstanding shares, or (iii) beneficial ownership of such entity. + * + * "You" (or "Your") shall mean an individual or Legal Entity + * exercising permissions granted by this License. + * + * "Source" form shall mean the preferred form for making modifications, + * including but not limited to software source code, documentation + * source, and configuration files. + * + * "Object" form shall mean any form resulting from mechanical + * transformation or translation of a Source form, including but + * not limited to compiled object code, generated documentation, + * and conversions to other media types. + * + * "Work" shall mean the work of authorship, whether in Source or + * Object form, made available under the License, as indicated by a + * copyright notice that is included in or attached to the work + * (an example is provided in the Appendix below). + * + * "Derivative Works" shall mean any work, whether in Source or Object + * form, that is based on (or derived from) the Work and for which the + * editorial revisions, annotations, elaborations, or other modifications + * represent, as a whole, an original work of authorship. For the purposes + * of this License, Derivative Works shall not include works that remain + * separable from, or merely link (or bind by name) to the interfaces of, + * the Work and Derivative Works thereof. + * + * "Contribution" shall mean any work of authorship, including + * the original version of the Work and any modifications or additions + * to that Work or Derivative Works thereof, that is intentionally + * submitted to Licensor for inclusion in the Work by the copyright owner + * or by an individual or Legal Entity authorized to submit on behalf of + * the copyright owner. For the purposes of this definition, "submitted" + * means any form of electronic, verbal, or written communication sent + * to the Licensor or its representatives, including but not limited to + * communication on electronic mailing lists, source code control systems, + * and issue tracking systems that are managed by, or on behalf of, the + * Licensor for the purpose of discussing and improving the Work, but + * excluding communication that is conspicuously marked or otherwise + * designated in writing by the copyright owner as "Not a Contribution." + * + * "Contributor" shall mean Licensor and any individual or Legal Entity + * on behalf of whom a Contribution has been received by Licensor and + * subsequently incorporated within the Work. + * + * 2. Grant of Copyright License. Subject to the terms and conditions of + * this License, each Contributor hereby grants to You a perpetual, + * worldwide, non-exclusive, no-charge, royalty-free, irrevocable + * copyright license to reproduce, prepare Derivative Works of, + * publicly display, publicly perform, sublicense, and distribute the + * Work and such Derivative Works in Source or Object form. + * + * 3. Grant of Patent License. Subject to the terms and conditions of + * this License, each Contributor hereby grants to You a perpetual, + * worldwide, non-exclusive, no-charge, royalty-free, irrevocable + * (except as stated in this section) patent license to make, have made, + * use, offer to sell, sell, import, and otherwise transfer the Work, + * where such license applies only to those patent claims licensable + * by such Contributor that are necessarily infringed by their + * Contribution(s) alone or by combination of their Contribution(s) + * with the Work to which such Contribution(s) was submitted. If You + * institute patent litigation against any entity (including a + * cross-claim or counterclaim in a lawsuit) alleging that the Work + * or a Contribution incorporated within the Work constitutes direct + * or contributory patent infringement, then any patent licenses + * granted to You under this License for that Work shall terminate + * as of the date such litigation is filed. + * + * 4. Redistribution. You may reproduce and distribute copies of the + * Work or Derivative Works thereof in any medium, with or without + * modifications, and in Source or Object form, provided that You + * meet the following conditions: + * + * (a) You must give any other recipients of the Work or + * Derivative Works a copy of this License; and + * + * (b) You must cause any modified files to carry prominent notices + * stating that You changed the files; and + * + * (c) You must retain, in the Source form of any Derivative Works + * that You distribute, all copyright, patent, trademark, and + * attribution notices from the Source form of the Work, + * excluding those notices that do not pertain to any part of + * the Derivative Works; and + * + * (d) If the Work includes a "NOTICE" text file as part of its + * distribution, then any Derivative Works that You distribute must + * include a readable copy of the attribution notices contained + * within such NOTICE file, excluding those notices that do not + * pertain to any part of the Derivative Works, in at least one + * of the following places: within a NOTICE text file distributed + * as part of the Derivative Works; within the Source form or + * documentation, if provided along with the Derivative Works; or, + * within a display generated by the Derivative Works, if and + * wherever such third-party notices normally appear. The contents + * of the NOTICE file are for informational purposes only and + * do not modify the License. You may add Your own attribution + * notices within Derivative Works that You distribute, alongside + * or as an addendum to the NOTICE text from the Work, provided + * that such additional attribution notices cannot be construed + * as modifying the License. + * + * You may add Your own copyright statement to Your modifications and + * may provide additional or different license terms and conditions + * for use, reproduction, or distribution of Your modifications, or + * for any such Derivative Works as a whole, provided Your use, + * reproduction, and distribution of the Work otherwise complies with + * the conditions stated in this License. + * + * 5. Submission of Contributions. Unless You explicitly state otherwise, + * any Contribution intentionally submitted for inclusion in the Work + * by You to the Licensor shall be under the terms and conditions of + * this License, without any additional terms or conditions. + * Notwithstanding the above, nothing herein shall supersede or modify + * the terms of any separate license agreement you may have executed + * with Licensor regarding such Contributions. + * + * 6. Trademarks. This License does not grant permission to use the trade + * names, trademarks, service marks, or product names of the Licensor, + * except as required for reasonable and customary use in describing the + * origin of the Work and reproducing the content of the NOTICE file. + * + * 7. Disclaimer of Warranty. Unless required by applicable law or + * agreed to in writing, Licensor provides the Work (and each + * Contributor provides its Contributions) on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + * implied, including, without limitation, any warranties or conditions + * of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + * PARTICULAR PURPOSE. You are solely responsible for determining the + * appropriateness of using or redistributing the Work and assume any + * risks associated with Your exercise of permissions under this License. + * + * 8. Limitation of Liability. In no event and under no legal theory, + * whether in tort (including negligence), contract, or otherwise, + * unless required by applicable law (such as deliberate and grossly + * negligent acts) or agreed to in writing, shall any Contributor be + * liable to You for damages, including any direct, indirect, special, + * incidental, or consequential damages of any character arising as a + * result of this License or out of the use or inability to use the + * Work (including but not limited to damages for loss of goodwill, + * work stoppage, computer failure or malfunction, or any and all + * other commercial damages or losses), even if such Contributor + * has been advised of the possibility of such damages. + * + * 9. Accepting Warranty or Additional Liability. While redistributing + * the Work or Derivative Works thereof, You may choose to offer, + * and charge a fee for, acceptance of support, warranty, indemnity, + * or other liability obligations and/or rights consistent with this + * License. However, in accepting such obligations, You may act only + * on Your own behalf and on Your sole responsibility, not on behalf + * of any other Contributor, and only if You agree to indemnify, + * defend, and hold each Contributor harmless for any liability + * incurred by, or claims asserted against, such Contributor by reason + * of your accepting any such warranty or additional liability. + * + * END OF TERMS AND CONDITIONS + * + * APPENDIX: How to apply the Apache License to your work. + * + * To apply the Apache License to your work, attach the following + * boilerplate notice, with the fields enclosed by brackets "{}" + * replaced with your own identifying information. (Don't include + * the brackets!) The text should be enclosed in the appropriate + * comment syntax for the file format. We also recommend that a + * file or class name and description of purpose be included on the + * same "printed page" as the copyright notice for easier + * identification within third-party archives. + * + * Copyright 2014 Edgar Espina + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.jooby.json; + +import javax.json.bind.Jsonb; + +import org.jooby.MediaType; + +/** + * @author Daniel Dias + * @since 1.6.0 + */ +public class YassonRawRenderer extends YassonRenderer { + + public YassonRawRenderer(MediaType type, Jsonb jsonb) { + super(type, jsonb); + } + + @Override + public void render(Object value, Context ctx) throws Exception { + if (value instanceof CharSequence) { + ctx.type(type).send(value.toString()); + } else { + super.render(value, ctx); + } + } +} \ No newline at end of file diff --git a/modules/jooby-yasson/src/main/java/org/jooby/json/YassonRenderer.java b/modules/jooby-yasson/src/main/java/org/jooby/json/YassonRenderer.java index 029525f7cf..64e8d69a96 100644 --- a/modules/jooby-yasson/src/main/java/org/jooby/json/YassonRenderer.java +++ b/modules/jooby-yasson/src/main/java/org/jooby/json/YassonRenderer.java @@ -212,7 +212,7 @@ public class YassonRenderer implements Renderer { - private final MediaType type; + protected final MediaType type; private final Jsonb jsonb; diff --git a/modules/jooby-yasson/src/test/java/org/jooby/json/YassonRendererTest.java b/modules/jooby-yasson/src/test/java/org/jooby/json/YassonRendererTest.java index 8e8d0d5064..988fbf63cd 100644 --- a/modules/jooby-yasson/src/test/java/org/jooby/json/YassonRendererTest.java +++ b/modules/jooby-yasson/src/test/java/org/jooby/json/YassonRendererTest.java @@ -61,4 +61,42 @@ public void toStr() throws Exception { assertEquals("json", new YassonRenderer(MediaType.json, unit.get(Jsonb.class)).toString()); }); } + + @Test + public void rawWithCharSequence() throws Exception { + String value = "{\"foo\":\"bar\"}"; + new MockUnit(Jsonb.class, Renderer.Context.class) + .expect(unit -> { + Context ctx = unit.get(Renderer.Context.class); + expect(ctx.type(MediaType.json)).andReturn(ctx); + ctx.send(value); + }) + .run(unit -> { + new YassonRawRenderer(MediaType.json, unit.get(Jsonb.class)) + .render(value, unit.get(Renderer.Context.class)); + }, unit -> { + }); + } + + @Test + public void rawWithObject() throws Exception { + Object value = new YassonRendererTest(); + new MockUnit(Jsonb.class, Renderer.Context.class) + .expect(unit -> { + Context ctx = unit.get(Renderer.Context.class); + expect(ctx.accepts(MediaType.json)).andReturn(true); + expect(ctx.type(MediaType.json)).andReturn(ctx); + ctx.send("{}"); + }) + .expect(unit -> { + Jsonb gson = unit.get(Jsonb.class); + expect(gson.toJson(value)).andReturn("{}"); + }) + .run(unit -> { + new YassonRawRenderer(MediaType.json, unit.get(Jsonb.class)) + .render(value, unit.get(Renderer.Context.class)); + }, unit -> { + }); + } + } From 473d14527493aec1368e42679113dc1438da80e2 Mon Sep 17 00:00:00 2001 From: Daniel Dias Date: Wed, 6 Feb 2019 02:41:10 -0200 Subject: [PATCH 32/93] update doc --- .../src/main/java/org/jooby/json/Yasson.java | 44 +++++++++++++++++-- .../java/org/jooby/json/YassonParser.java | 7 ++- .../java/org/jooby/json/YassonRenderer.java | 9 ++-- 3 files changed, 52 insertions(+), 8 deletions(-) diff --git a/modules/jooby-yasson/src/main/java/org/jooby/json/Yasson.java b/modules/jooby-yasson/src/main/java/org/jooby/json/Yasson.java index ab1b457dba..652df9c408 100644 --- a/modules/jooby-yasson/src/main/java/org/jooby/json/Yasson.java +++ b/modules/jooby-yasson/src/main/java/org/jooby/json/Yasson.java @@ -283,19 +283,58 @@ public class Yasson implements Jooby.Module { private boolean raw; + /** + * Creates a new {@link Jsonb}. + * + * @param type {@link MediaType} to use. + */ public Yasson(final MediaType type) { this.type = requireNonNull(type, "Media type is required."); } + /** + * Creates a new {@link Jsonb} and set type to: {@link MediaType#json}. + * + */ public Yasson() { this(MediaType.json); } + /** + * Configurer callback. + * + *
+   * {
+   *   use(new Yasson().doWith(builder {@literal ->} {
+   *     builder.withFormatting(true);
+   *     // ...
+   *   });
+   * }
+   * 
+ * + * @param configurer A callback. + * @return This instance. + */ public Yasson doWith(final BiConsumer configurer) { this.configurer = requireNonNull(configurer, "Configurer callback is required."); return this; } - + + /** + * Configurer callback. + * + *
+   * {
+   *   use(new Yasson().doWith((builder, config) {@literal ->} {
+   *     builder.withFormatting(true);
+   *     // ...
+   *   });
+   * }
+   * 
+ * + * @param configurer A callback. + * @return This instance. + */ public Yasson doWith(final Consumer configurer) { requireNonNull(configurer, "Configurer callback is required."); this.configurer = (jsonConfig, conf) -> configurer.accept(jsonConfig); @@ -314,8 +353,7 @@ public void configure(final Env env, final Config config, final Binder binder) { binder.bind(Jsonb.class).toInstance(jsonb); - Multibinder.newSetBinder(binder, Parser.class).addBinding() - .toInstance(new YassonParser(type, jsonb)); + Multibinder.newSetBinder(binder, Parser.class).addBinding().toInstance(new YassonParser(type, jsonb)); YassonRenderer renderer = raw ? new YassonRawRenderer(type, jsonb) : new YassonRenderer(type, jsonb); diff --git a/modules/jooby-yasson/src/main/java/org/jooby/json/YassonParser.java b/modules/jooby-yasson/src/main/java/org/jooby/json/YassonParser.java index 52df516999..4113412e9b 100644 --- a/modules/jooby-yasson/src/main/java/org/jooby/json/YassonParser.java +++ b/modules/jooby-yasson/src/main/java/org/jooby/json/YassonParser.java @@ -212,6 +212,10 @@ import com.google.inject.TypeLiteral; + /** + * @author Daniel Dias + * @since 1.6.0 + */ class YassonParser implements Parser { private final MediaType type; @@ -227,7 +231,6 @@ public YassonParser(final MediaType type, final Jsonb jsonb) { public Object parse(final TypeLiteral type, final Context ctx) throws Throwable { MediaType ctype = ctx.type(); if (ctype.isAny()) { - // */* return ctx.next(); } @@ -243,4 +246,4 @@ public Object parse(final TypeLiteral type, final Context ctx) throws Throwab public String toString() { return "yasson"; } -} +} \ No newline at end of file diff --git a/modules/jooby-yasson/src/main/java/org/jooby/json/YassonRenderer.java b/modules/jooby-yasson/src/main/java/org/jooby/json/YassonRenderer.java index 64e8d69a96..7fcebdc205 100644 --- a/modules/jooby-yasson/src/main/java/org/jooby/json/YassonRenderer.java +++ b/modules/jooby-yasson/src/main/java/org/jooby/json/YassonRenderer.java @@ -210,6 +210,10 @@ import org.jooby.MediaType; import org.jooby.Renderer; + /** + * @author Daniel Dias + * @since 1.6.0 + */ public class YassonRenderer implements Renderer { protected final MediaType type; @@ -225,8 +229,7 @@ public YassonRenderer(final MediaType type, final Jsonb jsonb) { @Override public void render(final Object object, final Context ctx) throws Exception { if (ctx.accepts(this.type)) { - ctx.type(this.type) - .send(jsonb.toJson(object)); + ctx.type(this.type).send(jsonb.toJson(object)); } } @@ -239,4 +242,4 @@ public String name() { public String toString() { return name(); } -} +} \ No newline at end of file From 1fdc6c7909de176a913368f4ad6438f9f0b0c66a Mon Sep 17 00:00:00 2001 From: Edgar Espina Date: Sun, 10 Feb 2019 10:40:31 -0300 Subject: [PATCH 33/93] Response truncation while running Jooby on Undertow Fix #1289 --- .../java/org/jooby/internal/undertow/UndertowResponse.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/jooby-undertow/src/main/java/org/jooby/internal/undertow/UndertowResponse.java b/modules/jooby-undertow/src/main/java/org/jooby/internal/undertow/UndertowResponse.java index 81ee01cbc1..7a1d60bf05 100644 --- a/modules/jooby-undertow/src/main/java/org/jooby/internal/undertow/UndertowResponse.java +++ b/modules/jooby-undertow/src/main/java/org/jooby/internal/undertow/UndertowResponse.java @@ -268,7 +268,8 @@ public void send(final byte[] bytes) throws Exception { @Override public void send(final ByteBuffer buffer) throws Exception { - exchange.getResponseSender().send(buffer); + endExchange = false; + exchange.getResponseSender().send(buffer, new LogIoCallback(IoCallback.END_EXCHANGE)); } @Override From 93e8a800295a9f7d53f5a157c956f3aae3f28a21 Mon Sep 17 00:00:00 2001 From: Edgar Espina Date: Sun, 10 Feb 2019 16:47:10 -0300 Subject: [PATCH 34/93] version bump for major components - netty, utow, jetty & jackson - fix ssl issue after upgrading Jetty --- doc/available-modules.md | 1 + modules/coverage-report/pom.xml | 60 +++++++++++++++++++ .../test/java/org/jooby/issues/Issue418.java | 12 +++- .../org/jooby/internal/jetty/JettyServer.java | 1 + .../main/resources/org/jooby/spi/server.conf | 3 - .../internal/undertow/LogIoCallback.java | 6 +- pom.xml | 12 ++-- 7 files changed, 82 insertions(+), 13 deletions(-) diff --git a/doc/available-modules.md b/doc/available-modules.md index 076d85cc32..c14b1e4de4 100644 --- a/doc/available-modules.md +++ b/doc/available-modules.md @@ -20,6 +20,7 @@ * [ehcache](https://github.com/jooby-project/jooby/tree/master/jooby-ehcache/#session-store): HTTP session store for {{ehcache}}. ## sql +* [expose](https://github.com/jooby-project/jooby/tree/master/jooby-expose): [Exposed](https://github.com/JetBrains/Exposed) is a prototype for a lightweight SQL library written over JDBC driver for Kotlin language * [jdbc](https://github.com/jooby-project/jooby/tree/master/jooby-jdbc): high performance connection pool for jdbc via {{hikari}}. * [jdbi](https://github.com/jooby-project/jooby/tree/master/jooby-jdbi): fluent API for JDBC. * [flyway](https://github.com/jooby-project/jooby/tree/master/jooby-flyway): database migrations via {{flyway}}. diff --git a/modules/coverage-report/pom.xml b/modules/coverage-report/pom.xml index 8818eda9d9..74f38b73e4 100644 --- a/modules/coverage-report/pom.xml +++ b/modules/coverage-report/pom.xml @@ -707,6 +707,66 @@ 8.1.12.v20180117 + + jdk-1.8.0_181 + + + java.version + 1.8.0_181 + + + + 8.1.12.v20180117 + + + + jdk-1.8.0_191 + + + java.version + 1.8.0_191 + + + + 8.1.13.v20181017 + + + + jdk-1.8.0_192 + + + java.version + 1.8.0_192 + + + + 8.1.13.v20181017 + + + + jdk-1.8.0_201 + + + java.version + 1.8.0_201 + + + + 8.1.13.v20181017 + + + + jdk-1.8.0_202 + + + java.version + 1.8.0_202 + + + + 8.1.13.v20181017 + + diff --git a/modules/coverage-report/src/test/java/org/jooby/issues/Issue418.java b/modules/coverage-report/src/test/java/org/jooby/issues/Issue418.java index 5ad5bfa998..72edc84e97 100644 --- a/modules/coverage-report/src/test/java/org/jooby/issues/Issue418.java +++ b/modules/coverage-report/src/test/java/org/jooby/issues/Issue418.java @@ -26,9 +26,11 @@ import org.jooby.MediaType; import org.jooby.Results; import org.jooby.test.ServerFeature; + import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertTrue; + import org.junit.Test; import java.io.IOException; @@ -45,6 +47,7 @@ import java.util.concurrent.Phaser; import java.util.concurrent.TimeUnit; import java.util.concurrent.atomic.AtomicReference; +import java.util.function.UnaryOperator; public class Issue418 extends ServerFeature { @@ -224,7 +227,7 @@ public void http1_1_Upgrade() throws Throwable { } } - assertTrue(upgrade.toString().startsWith("HTTP/1.1 101 ")); + assertTrue(upgrade.toString(), upgrade.toString().startsWith("HTTP/1.1 101 ")); MappedByteBufferPool byteBufferPool = new MappedByteBufferPool(); new Generator(byteBufferPool); @@ -232,7 +235,7 @@ public void http1_1_Upgrade() throws Throwable { final AtomicReference headersRef = new AtomicReference<>(); final AtomicReference dataRef = new AtomicReference<>(); final AtomicReference latchRef = new AtomicReference<>(new CountDownLatch(2)); - Parser parser = new Parser(byteBufferPool, new Parser.Listener.Adapter() { + Parser.Listener.Adapter listener = new Parser.Listener.Adapter() { @Override public void onHeaders(final HeadersFrame frame) { headersRef.set(frame); @@ -244,11 +247,14 @@ public void onData(final DataFrame frame) { dataRef.set(frame); latchRef.get().countDown(); } - }, 4096, 8192); + }; + Parser parser = new Parser(byteBufferPool, listener, 4096, 8192); + parser.init(UnaryOperator.identity()); parseResponse(client, parser); assertTrue(latchRef.get().await(5, TimeUnit.SECONDS)); + // latchRef.get().await(); HeadersFrame response = headersRef.get(); assertNotNull(response); diff --git a/modules/jooby-jetty/src/main/java/org/jooby/internal/jetty/JettyServer.java b/modules/jooby-jetty/src/main/java/org/jooby/internal/jetty/JettyServer.java index dd59064952..03f6ae12d6 100644 --- a/modules/jooby-jetty/src/main/java/org/jooby/internal/jetty/JettyServer.java +++ b/modules/jooby-jetty/src/main/java/org/jooby/internal/jetty/JettyServer.java @@ -341,6 +341,7 @@ private ServerConnector https(final Server server, final Config conf, final Stri sslContextFactory.setSslContext(sslContext); sslContextFactory.setIncludeProtocols("TLSv1.2"); sslContextFactory.setIncludeCipherSuites("TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256"); + sslContextFactory.setEndpointIdentificationAlgorithm("HTTPS"); HttpConfiguration httpsConf = new HttpConfiguration(httpConf); httpsConf.addCustomizer(new SecureRequestCustomizer()); diff --git a/modules/jooby-jetty/src/main/resources/org/jooby/spi/server.conf b/modules/jooby-jetty/src/main/resources/org/jooby/spi/server.conf index f45a7962f9..d3d6968eab 100644 --- a/modules/jooby-jetty/src/main/resources/org/jooby/spi/server.conf +++ b/modules/jooby-jetty/src/main/resources/org/jooby/spi/server.conf @@ -36,9 +36,6 @@ jetty { # The accept queue size (also known as accept backlog) AcceptQueueSize = 0 - # Use -1 to disable - SoLingerTime = -1 - StopTimeout = 30000 # Sets the maximum Idle time for a connection, which roughly translates to the Socket#setSoTimeout(int) diff --git a/modules/jooby-undertow/src/main/java/org/jooby/internal/undertow/LogIoCallback.java b/modules/jooby-undertow/src/main/java/org/jooby/internal/undertow/LogIoCallback.java index 8e79a30792..a2d120aa41 100644 --- a/modules/jooby-undertow/src/main/java/org/jooby/internal/undertow/LogIoCallback.java +++ b/modules/jooby-undertow/src/main/java/org/jooby/internal/undertow/LogIoCallback.java @@ -204,7 +204,9 @@ package org.jooby.internal.undertow; import java.io.IOException; +import java.nio.channels.ClosedChannelException; +import org.jooby.internal.ConnectionResetByPeer; import org.jooby.spi.NativeResponse; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @@ -232,7 +234,9 @@ public void onComplete(final HttpServerExchange exchange, final Sender sender) { @Override public void onException(final HttpServerExchange exchange, final Sender sender, final IOException x) { - log.error("execution of {} resulted in exception", exchange.getRequestPath(), x); + if (!(x instanceof ClosedChannelException)) { + log.error("execution of {} resulted in exception", exchange.getRequestPath(), x); + } callback.onException(exchange, sender, x); } diff --git a/pom.xml b/pom.xml index c2be4b3573..1cd146a955 100644 --- a/pom.xml +++ b/pom.xml @@ -3147,7 +3147,7 @@ org.eclipse.jdt.apt.processorOptions/defaultOverwrite=true 2.1.2 1.11.358 3.3.4 - 2.0.8.Final + 2.0.20.Final 2.9.2 2.6.2 2.18.3 @@ -3186,7 +3186,7 @@ org.eclipse.jdt.apt.processorOptions/defaultOverwrite=true 3.2.0 4.5.5 4.6.0 - 2.9.7 + 2.9.8 1.2.7 3.22.0-GA 3.0.1-b06 @@ -3199,7 +3199,7 @@ org.eclipse.jdt.apt.processorOptions/defaultOverwrite=true 3.3.0 2.9.0 1.19.4 - 9.4.10.v20180503 + 9.4.14.v20181114 1.4.0 1.11.3 2.1.3 @@ -3222,7 +3222,7 @@ org.eclipse.jdt.apt.processorOptions/defaultOverwrite=true 3.4.0.52.4 3.4.0.52 3.3.2 - 4.1.30.Final + 4.1.33.Final 1.9.9 2.3.1 2.4.0 @@ -3248,10 +3248,10 @@ org.eclipse.jdt.apt.processorOptions/defaultOverwrite=true 3.17.1 1.5.20 3.0.10.RELEASE - 2.0.9.Final + 2.0.17.Final 2.1 2.4.8 - 0.10.4 + 0.12.1 ** From 1fc7ccd1ffcb0f08f7838af378d6a0b7201a1763 Mon Sep 17 00:00:00 2001 From: Edgar Espina Date: Mon, 11 Feb 2019 14:36:55 -0300 Subject: [PATCH 35/93] v1.6.0 --- README.md | 4 +- jooby/pom.xml | 2 +- modules/coverage-report/pom.xml | 2 +- modules/jooby-akka/README.md | 6 +- modules/jooby-akka/pom.xml | 2 +- modules/jooby-apitool/README.md | 8 +-- modules/jooby-apitool/pom.xml | 2 +- modules/jooby-archetype/pom.xml | 2 +- modules/jooby-assets-autoprefixer/README.md | 8 +-- modules/jooby-assets-autoprefixer/pom.xml | 2 +- modules/jooby-assets-babel/README.md | 8 +-- modules/jooby-assets-babel/pom.xml | 2 +- modules/jooby-assets-clean-css/README.md | 6 +- modules/jooby-assets-clean-css/pom.xml | 2 +- .../jooby-assets-closure-compiler/README.md | 6 +- modules/jooby-assets-closure-compiler/pom.xml | 2 +- modules/jooby-assets-csslint/README.md | 6 +- modules/jooby-assets-csslint/pom.xml | 2 +- modules/jooby-assets-j2v8/pom.xml | 2 +- modules/jooby-assets-jscs/README.md | 6 +- modules/jooby-assets-jscs/pom.xml | 2 +- modules/jooby-assets-jshint/README.md | 6 +- modules/jooby-assets-jshint/pom.xml | 2 +- modules/jooby-assets-less/README.md | 6 +- modules/jooby-assets-less/pom.xml | 2 +- modules/jooby-assets-less4j/README.md | 6 +- modules/jooby-assets-less4j/pom.xml | 2 +- modules/jooby-assets-ng-annotate/README.md | 6 +- modules/jooby-assets-ng-annotate/pom.xml | 2 +- modules/jooby-assets-nodejs/pom.xml | 2 +- modules/jooby-assets-requirejs/README.md | 6 +- modules/jooby-assets-requirejs/pom.xml | 2 +- modules/jooby-assets-rollup/README.md | 6 +- modules/jooby-assets-rollup/pom.xml | 2 +- modules/jooby-assets-sass/README.md | 6 +- modules/jooby-assets-sass/pom.xml | 2 +- modules/jooby-assets-svg-sprites/README.md | 6 +- modules/jooby-assets-svg-sprites/pom.xml | 2 +- modules/jooby-assets-svg-symbol/README.md | 6 +- modules/jooby-assets-svg-symbol/pom.xml | 2 +- modules/jooby-assets-uglify/README.md | 6 +- modules/jooby-assets-uglify/pom.xml | 2 +- modules/jooby-assets-yui-compressor/README.md | 6 +- modules/jooby-assets-yui-compressor/pom.xml | 2 +- modules/jooby-assets/README.md | 6 +- modules/jooby-assets/pom.xml | 2 +- modules/jooby-aws/README.md | 6 +- modules/jooby-aws/pom.xml | 2 +- modules/jooby-banner/README.md | 6 +- modules/jooby-banner/pom.xml | 2 +- modules/jooby-bom/pom.xml | 43 ++++++++----- modules/jooby-caffeine/README.md | 6 +- modules/jooby-caffeine/pom.xml | 2 +- modules/jooby-camel/README.md | 6 +- modules/jooby-camel/pom.xml | 2 +- modules/jooby-cassandra/README.md | 8 +-- modules/jooby-cassandra/pom.xml | 2 +- modules/jooby-commons-email/README.md | 7 +-- modules/jooby-commons-email/pom.xml | 2 +- modules/jooby-consul/README.md | 6 +- modules/jooby-consul/pom.xml | 2 +- modules/jooby-couchbase/README.md | 8 +-- modules/jooby-couchbase/pom.xml | 2 +- modules/jooby-crash/README.md | 6 +- modules/jooby-crash/pom.xml | 2 +- modules/jooby-csl/README.md | 6 +- modules/jooby-csl/pom.xml | 2 +- modules/jooby-dist/pom.xml | 2 +- modules/jooby-ebean/README.md | 6 +- modules/jooby-ebean/pom.xml | 2 +- modules/jooby-ehcache/README.md | 8 +-- modules/jooby-ehcache/pom.xml | 2 +- modules/jooby-elasticsearch/README.md | 6 +- modules/jooby-elasticsearch/pom.xml | 2 +- modules/jooby-eventbus/README.md | 6 +- modules/jooby-eventbus/pom.xml | 2 +- modules/jooby-executor/README.md | 6 +- modules/jooby-executor/pom.xml | 2 +- modules/jooby-exposed/README.md | 52 ++++++++++++++++ modules/jooby-exposed/pom.xml | 43 ++++++++++++- modules/jooby-filewatcher/README.md | 6 +- modules/jooby-filewatcher/pom.xml | 2 +- modules/jooby-flyway/README.md | 6 +- modules/jooby-flyway/pom.xml | 2 +- modules/jooby-frontend/README.md | 6 +- modules/jooby-frontend/pom.xml | 2 +- modules/jooby-ftl/README.md | 6 +- modules/jooby-ftl/pom.xml | 2 +- modules/jooby-gradle-plugin/README.md | 6 +- modules/jooby-gradle-plugin/pom.xml | 2 +- modules/jooby-gson/README.md | 6 +- modules/jooby-gson/pom.xml | 2 +- modules/jooby-guava-cache/README.md | 8 +-- modules/jooby-guava-cache/pom.xml | 2 +- modules/jooby-hazelcast/README.md | 8 +-- modules/jooby-hazelcast/pom.xml | 2 +- modules/jooby-hbm/README.md | 6 +- modules/jooby-hbm/pom.xml | 2 +- modules/jooby-hbs/README.md | 6 +- modules/jooby-hbs/pom.xml | 2 +- modules/jooby-hbv/README.md | 6 +- modules/jooby-hbv/pom.xml | 2 +- modules/jooby-jackson/README.md | 6 +- modules/jooby-jackson/pom.xml | 2 +- modules/jooby-jade/README.md | 6 +- modules/jooby-jade/pom.xml | 2 +- modules/jooby-jdbc/README.md | 6 +- modules/jooby-jdbc/pom.xml | 2 +- modules/jooby-jdbi/README.md | 6 +- modules/jooby-jdbi/pom.xml | 2 +- modules/jooby-jdbi3/README.md | 6 +- modules/jooby-jdbi3/pom.xml | 2 +- modules/jooby-jedis/README.md | 14 +++-- modules/jooby-jedis/pom.xml | 2 +- .../java/org/jooby/jedis/RedisSentinel.java | 2 +- modules/jooby-jetty/README.md | 10 +--- modules/jooby-jetty/pom.xml | 2 +- modules/jooby-jongo/README.md | 6 +- modules/jooby-jongo/pom.xml | 2 +- modules/jooby-jooq/README.md | 6 +- modules/jooby-jooq/pom.xml | 2 +- modules/jooby-lang-kotlin/README.md | 6 +- modules/jooby-lang-kotlin/pom.xml | 2 +- modules/jooby-livereload/README.md | 6 +- modules/jooby-livereload/pom.xml | 2 +- modules/jooby-maven-plugin/README.md | 10 ++-- modules/jooby-maven-plugin/pom.xml | 2 +- modules/jooby-metrics/README.md | 6 +- modules/jooby-metrics/pom.xml | 2 +- modules/jooby-micrometer/README.md | 6 +- modules/jooby-micrometer/pom.xml | 2 +- modules/jooby-mongodb-rx/README.md | 6 +- modules/jooby-mongodb-rx/pom.xml | 2 +- modules/jooby-mongodb/README.md | 8 +-- modules/jooby-mongodb/pom.xml | 2 +- modules/jooby-morphia/README.md | 6 +- modules/jooby-morphia/pom.xml | 2 +- modules/jooby-neo4j/README.md | 8 +-- modules/jooby-neo4j/pom.xml | 2 +- modules/jooby-netty/README.md | 6 +- modules/jooby-netty/pom.xml | 2 +- modules/jooby-pac4j/README.md | 6 +- modules/jooby-pac4j/pom.xml | 2 +- modules/jooby-pac4j2/README.md | 6 +- modules/jooby-pac4j2/pom.xml | 2 +- modules/jooby-pebble/README.md | 6 +- modules/jooby-pebble/pom.xml | 2 +- modules/jooby-quartz/README.md | 6 +- modules/jooby-quartz/pom.xml | 2 +- modules/jooby-querydsl/README.md | 6 +- modules/jooby-querydsl/pom.xml | 2 +- modules/jooby-reactor/README.md | 6 +- modules/jooby-reactor/pom.xml | 2 +- modules/jooby-requery/README.md | 6 +- modules/jooby-requery/pom.xml | 2 +- modules/jooby-rocker/README.md | 6 +- modules/jooby-rocker/pom.xml | 2 +- modules/jooby-run/pom.xml | 2 +- modules/jooby-rxjava-jdbc/README.md | 6 +- modules/jooby-rxjava-jdbc/pom.xml | 2 +- modules/jooby-rxjava/README.md | 6 +- modules/jooby-rxjava/pom.xml | 2 +- modules/jooby-scanner/README.md | 6 +- modules/jooby-scanner/pom.xml | 2 +- modules/jooby-servlet/README.md | 4 +- modules/jooby-servlet/pom.xml | 2 +- modules/jooby-sitemap/README.md | 6 +- modules/jooby-sitemap/pom.xml | 2 +- modules/jooby-spymemcached/README.md | 8 +-- modules/jooby-spymemcached/pom.xml | 2 +- modules/jooby-thymeleaf/README.md | 6 +- modules/jooby-thymeleaf/pom.xml | 2 +- modules/jooby-unbescape/README.md | 6 +- modules/jooby-unbescape/pom.xml | 2 +- modules/jooby-undertow/README.md | 6 +- modules/jooby-undertow/pom.xml | 2 +- modules/jooby-whoops/README.md | 6 +- modules/jooby-whoops/pom.xml | 2 +- modules/jooby-yasson/README.md | 60 +++++++++++++++++++ modules/jooby-yasson/pom.xml | 2 +- modules/pom.xml | 2 +- pom.xml | 2 +- 182 files changed, 546 insertions(+), 379 deletions(-) create mode 100644 modules/jooby-exposed/README.md create mode 100644 modules/jooby-yasson/README.md diff --git a/README.md b/README.md index bc0cc50564..c3b185fec4 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby.svg)](https://javadoc.io/doc/org.jooby/jooby/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby.svg)](https://javadoc.io/doc/org.jooby/jooby/1.6.0) [![Become a Patreon](https://img.shields.io/badge/patreon-donate-orange.svg)](https://patreon.com/edgarespina) [![Build Status](https://travis-ci.org/jooby-project/jooby.svg?branch=master)](https://travis-ci.org/jooby-project/jooby) [![coveralls.io](https://img.shields.io/coveralls/jooby-project/jooby.svg)](https://coveralls.io/r/jooby-project/jooby?branch=master) diff --git a/jooby/pom.xml b/jooby/pom.xml index 514498522c..0343f6ed84 100644 --- a/jooby/pom.xml +++ b/jooby/pom.xml @@ -6,7 +6,7 @@ org.jooby jooby-project - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/coverage-report/pom.xml b/modules/coverage-report/pom.xml index 74f38b73e4..41889aef3f 100644 --- a/modules/coverage-report/pom.xml +++ b/modules/coverage-report/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-akka/README.md b/modules/jooby-akka/README.md index c2354c38b4..f0a6c5b8c4 100644 --- a/modules/jooby-akka/README.md +++ b/modules/jooby-akka/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-akka/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-akka/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-akka.svg)](https://javadoc.io/doc/org.jooby/jooby-akka/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-akka/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-akka/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-akka.svg)](https://javadoc.io/doc/org.jooby/jooby-akka/1.6.0) [![jooby-akka website](https://img.shields.io/badge/jooby-akka-brightgreen.svg)](http://jooby.org/doc/akka) # akka @@ -15,7 +15,7 @@ Small module to build concurrent & distributed applications via [Akka](http://ak org.jooby jooby-akka - 1.5.1 + 1.6.0 ``` diff --git a/modules/jooby-akka/pom.xml b/modules/jooby-akka/pom.xml index fd55c9a721..7df8ba2031 100644 --- a/modules/jooby-akka/pom.xml +++ b/modules/jooby-akka/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-apitool/README.md b/modules/jooby-apitool/README.md index b6cfc9e265..7ee5c75f98 100644 --- a/modules/jooby-apitool/README.md +++ b/modules/jooby-apitool/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-apitool/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-apitool/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-apitool.svg)](https://javadoc.io/doc/org.jooby/jooby-apitool/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-apitool/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-apitool/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-apitool.svg)](https://javadoc.io/doc/org.jooby/jooby-apitool/1.6.0) [![jooby-apitool website](https://img.shields.io/badge/jooby-apitool-brightgreen.svg)](http://jooby.org/doc/apitool) # API tool @@ -23,7 +23,7 @@ This module generates live documentation from your HTTP API (source code). org.jooby jooby-apitool - 1.5.1 + 1.6.0 ``` @@ -187,7 +187,7 @@ Go to ```build.gradle``` and add these lines: ```gradke buildscript { dependencies { - classpath group: 'org.jooby', name: 'jooby-gradle-plugin', version: '1.5.1' + classpath group: 'org.jooby', name: 'jooby-gradle-plugin', version: '1.6.0' } } apply plugin: 'jooby' diff --git a/modules/jooby-apitool/pom.xml b/modules/jooby-apitool/pom.xml index b36967b7e3..4d1620fa51 100644 --- a/modules/jooby-apitool/pom.xml +++ b/modules/jooby-apitool/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-archetype/pom.xml b/modules/jooby-archetype/pom.xml index 70134052a9..cac50188d4 100644 --- a/modules/jooby-archetype/pom.xml +++ b/modules/jooby-archetype/pom.xml @@ -7,7 +7,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 jooby-archetype diff --git a/modules/jooby-assets-autoprefixer/README.md b/modules/jooby-assets-autoprefixer/README.md index 3b992c2a4b..3fb3850af3 100644 --- a/modules/jooby-assets-autoprefixer/README.md +++ b/modules/jooby-assets-autoprefixer/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-autoprefixer/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-autoprefixer/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-autoprefixer.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-autoprefixer/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-autoprefixer/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-autoprefixer/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-autoprefixer.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-autoprefixer/1.6.0) [![jooby-assets-autoprefixer website](https://img.shields.io/badge/jooby-assets-autoprefixer-brightgreen.svg)](http://jooby.org/doc/assets-autoprefixer) # auto-prefixer @@ -12,8 +12,8 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro ```xml org.jooby - jooby-assets-auto-prefixer - 1.5.1 + jooby-assets-autoprefixer + 1.6.0 provided ``` diff --git a/modules/jooby-assets-autoprefixer/pom.xml b/modules/jooby-assets-autoprefixer/pom.xml index d78fde9572..dc42c3a2e2 100644 --- a/modules/jooby-assets-autoprefixer/pom.xml +++ b/modules/jooby-assets-autoprefixer/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-assets-babel/README.md b/modules/jooby-assets-babel/README.md index 7395cc34b1..559416b27c 100644 --- a/modules/jooby-assets-babel/README.md +++ b/modules/jooby-assets-babel/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-babel/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-babel/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-babel.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-babel/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-babel/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-babel/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-babel.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-babel/1.6.0) [![jooby-assets-babel website](https://img.shields.io/badge/jooby-assets-babel-brightgreen.svg)](http://jooby.org/doc/assets-babel) # babel @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-babel - 1.5.1 + 1.6.0 provided ``` @@ -38,7 +38,7 @@ assets { org.jooby jooby-assets-babel - 1.5.1 + 1.6.0 provided ``` diff --git a/modules/jooby-assets-babel/pom.xml b/modules/jooby-assets-babel/pom.xml index 25ee480c74..973d3f0ffc 100644 --- a/modules/jooby-assets-babel/pom.xml +++ b/modules/jooby-assets-babel/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-assets-clean-css/README.md b/modules/jooby-assets-clean-css/README.md index 14c548d2e1..26787300ab 100644 --- a/modules/jooby-assets-clean-css/README.md +++ b/modules/jooby-assets-clean-css/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-clean-css/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-clean-css/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-clean-css.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-clean-css/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-clean-css/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-clean-css/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-clean-css.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-clean-css/1.6.0) [![jooby-assets-clean-css website](https://img.shields.io/badge/jooby-assets-clean-css-brightgreen.svg)](http://jooby.org/doc/assets-clean-css) # clean-css @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-clean-css - 1.5.1 + 1.6.0 provided ``` diff --git a/modules/jooby-assets-clean-css/pom.xml b/modules/jooby-assets-clean-css/pom.xml index a071ce5182..3601461e03 100644 --- a/modules/jooby-assets-clean-css/pom.xml +++ b/modules/jooby-assets-clean-css/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-assets-closure-compiler/README.md b/modules/jooby-assets-closure-compiler/README.md index 865f70a679..7b352016b6 100644 --- a/modules/jooby-assets-closure-compiler/README.md +++ b/modules/jooby-assets-closure-compiler/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-closure-compiler/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-closure-compiler/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-closure-compiler.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-closure-compiler/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-closure-compiler/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-closure-compiler/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-closure-compiler.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-closure-compiler/1.6.0) [![jooby-assets-closure-compiler website](https://img.shields.io/badge/jooby-assets-closure-compiler-brightgreen.svg)](http://jooby.org/doc/assets-closure-compiler) # closure-compiler @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-closure-compiler - 1.5.1 + 1.6.0 provided ``` diff --git a/modules/jooby-assets-closure-compiler/pom.xml b/modules/jooby-assets-closure-compiler/pom.xml index 91e791da99..370609023a 100644 --- a/modules/jooby-assets-closure-compiler/pom.xml +++ b/modules/jooby-assets-closure-compiler/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-assets-csslint/README.md b/modules/jooby-assets-csslint/README.md index b085a5cb4c..3e7fb8796a 100644 --- a/modules/jooby-assets-csslint/README.md +++ b/modules/jooby-assets-csslint/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-csslint/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-csslint/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-csslint.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-csslint/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-csslint/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-csslint/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-csslint.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-csslint/1.6.0) [![jooby-assets-csslint website](https://img.shields.io/badge/jooby-assets-csslint-brightgreen.svg)](http://jooby.org/doc/assets-csslint) # csslint @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-csslint - 1.5.1 + 1.6.0 provided ``` diff --git a/modules/jooby-assets-csslint/pom.xml b/modules/jooby-assets-csslint/pom.xml index c458f2cf66..4954129e48 100644 --- a/modules/jooby-assets-csslint/pom.xml +++ b/modules/jooby-assets-csslint/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-assets-j2v8/pom.xml b/modules/jooby-assets-j2v8/pom.xml index e982cb1966..b452ab212d 100644 --- a/modules/jooby-assets-j2v8/pom.xml +++ b/modules/jooby-assets-j2v8/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-assets-jscs/README.md b/modules/jooby-assets-jscs/README.md index 9269d9b181..09df902001 100644 --- a/modules/jooby-assets-jscs/README.md +++ b/modules/jooby-assets-jscs/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-jscs/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-jscs/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-jscs.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-jscs/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-jscs/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-jscs/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-jscs.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-jscs/1.6.0) [![jooby-assets-jscs website](https://img.shields.io/badge/jooby-assets-jscs-brightgreen.svg)](http://jooby.org/doc/assets-jscs) # jscs @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-jscs - 1.5.1 + 1.6.0 provided ``` diff --git a/modules/jooby-assets-jscs/pom.xml b/modules/jooby-assets-jscs/pom.xml index f28b303380..80f355fcb9 100644 --- a/modules/jooby-assets-jscs/pom.xml +++ b/modules/jooby-assets-jscs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-assets-jshint/README.md b/modules/jooby-assets-jshint/README.md index 7a2350c97a..81b6c87621 100644 --- a/modules/jooby-assets-jshint/README.md +++ b/modules/jooby-assets-jshint/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-jshint/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-jshint/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-jshint.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-jshint/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-jshint/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-jshint/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-jshint.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-jshint/1.6.0) [![jooby-assets-jshint website](https://img.shields.io/badge/jooby-assets-jshint-brightgreen.svg)](http://jooby.org/doc/assets-jshint) # jshint @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-jshint - 1.5.1 + 1.6.0 provided ``` diff --git a/modules/jooby-assets-jshint/pom.xml b/modules/jooby-assets-jshint/pom.xml index d0f6567f0e..ba87ad7cb3 100644 --- a/modules/jooby-assets-jshint/pom.xml +++ b/modules/jooby-assets-jshint/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-assets-less/README.md b/modules/jooby-assets-less/README.md index 37fde634d7..aeb0174944 100644 --- a/modules/jooby-assets-less/README.md +++ b/modules/jooby-assets-less/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-less/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-less/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-less.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-less/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-less/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-less/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-less.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-less/1.6.0) [![jooby-assets-less website](https://img.shields.io/badge/jooby-assets-less-brightgreen.svg)](http://jooby.org/doc/assets-less) # less @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-less - 1.5.1 + 1.6.0 provided ``` diff --git a/modules/jooby-assets-less/pom.xml b/modules/jooby-assets-less/pom.xml index 1919981bde..034c5ab150 100644 --- a/modules/jooby-assets-less/pom.xml +++ b/modules/jooby-assets-less/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-assets-less4j/README.md b/modules/jooby-assets-less4j/README.md index c0716fae08..4708b4459a 100644 --- a/modules/jooby-assets-less4j/README.md +++ b/modules/jooby-assets-less4j/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-less4j/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-less4j/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-less4j.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-less4j/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-less4j/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-less4j/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-less4j.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-less4j/1.6.0) [![jooby-assets-less4j website](https://img.shields.io/badge/jooby-assets-less4j-brightgreen.svg)](http://jooby.org/doc/assets-less4j) # less4j @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-less4j - 1.5.1 + 1.6.0 provided ``` diff --git a/modules/jooby-assets-less4j/pom.xml b/modules/jooby-assets-less4j/pom.xml index 9b9d1e40e6..9d8698e4c8 100644 --- a/modules/jooby-assets-less4j/pom.xml +++ b/modules/jooby-assets-less4j/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-assets-ng-annotate/README.md b/modules/jooby-assets-ng-annotate/README.md index 0020d1523e..512d44a4cf 100644 --- a/modules/jooby-assets-ng-annotate/README.md +++ b/modules/jooby-assets-ng-annotate/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-ng-annotate/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-ng-annotate/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-ng-annotate.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-ng-annotate/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-ng-annotate/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-ng-annotate/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-ng-annotate.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-ng-annotate/1.6.0) [![jooby-assets-ng-annotate website](https://img.shields.io/badge/jooby-assets-ng-annotate-brightgreen.svg)](http://jooby.org/doc/assets-ng-annotate) # ng-annotate @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-ng-annotate - 1.5.1 + 1.6.0 provided ``` diff --git a/modules/jooby-assets-ng-annotate/pom.xml b/modules/jooby-assets-ng-annotate/pom.xml index 7e0392b0f5..c17dfb992d 100644 --- a/modules/jooby-assets-ng-annotate/pom.xml +++ b/modules/jooby-assets-ng-annotate/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-assets-nodejs/pom.xml b/modules/jooby-assets-nodejs/pom.xml index 38ab017cdc..ff5a9a6f61 100644 --- a/modules/jooby-assets-nodejs/pom.xml +++ b/modules/jooby-assets-nodejs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-assets-requirejs/README.md b/modules/jooby-assets-requirejs/README.md index 3f4c804d53..752712f369 100644 --- a/modules/jooby-assets-requirejs/README.md +++ b/modules/jooby-assets-requirejs/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-requirejs/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-requirejs/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-requirejs.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-requirejs/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-requirejs/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-requirejs/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-requirejs.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-requirejs/1.6.0) [![jooby-assets-requirejs website](https://img.shields.io/badge/jooby-assets-requirejs-brightgreen.svg)](http://jooby.org/doc/assets-requirejs) # rjs @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-requirejs - 1.5.1 + 1.6.0 provided ``` diff --git a/modules/jooby-assets-requirejs/pom.xml b/modules/jooby-assets-requirejs/pom.xml index 9c8ba3a55d..ea8b4a4c16 100644 --- a/modules/jooby-assets-requirejs/pom.xml +++ b/modules/jooby-assets-requirejs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-assets-rollup/README.md b/modules/jooby-assets-rollup/README.md index 64dc87d1af..1b634c9b54 100644 --- a/modules/jooby-assets-rollup/README.md +++ b/modules/jooby-assets-rollup/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-rollup/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-rollup/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-rollup.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-rollup/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-rollup/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-rollup/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-rollup.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-rollup/1.6.0) [![jooby-assets-rollup website](https://img.shields.io/badge/jooby-assets-rollup-brightgreen.svg)](http://jooby.org/doc/assets-rollup) # rollup.js @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-rollup.js - 1.5.1 + 1.6.0 provided ``` diff --git a/modules/jooby-assets-rollup/pom.xml b/modules/jooby-assets-rollup/pom.xml index 82e991f99a..6b3c785e7b 100644 --- a/modules/jooby-assets-rollup/pom.xml +++ b/modules/jooby-assets-rollup/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-assets-sass/README.md b/modules/jooby-assets-sass/README.md index ff0009a648..0b7b9947c7 100644 --- a/modules/jooby-assets-sass/README.md +++ b/modules/jooby-assets-sass/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-sass/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-sass/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-sass.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-sass/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-sass/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-sass/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-sass.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-sass/1.6.0) [![jooby-assets-sass website](https://img.shields.io/badge/jooby-assets-sass-brightgreen.svg)](http://jooby.org/doc/assets-sass) # sass @@ -13,7 +13,7 @@ org.jooby jooby-assets-sass - 1.5.1 + 1.6.0 provided ``` diff --git a/modules/jooby-assets-sass/pom.xml b/modules/jooby-assets-sass/pom.xml index 5a37fad11f..a54802a5a3 100644 --- a/modules/jooby-assets-sass/pom.xml +++ b/modules/jooby-assets-sass/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-assets-svg-sprites/README.md b/modules/jooby-assets-svg-sprites/README.md index ad34a4839f..db8214b2dc 100644 --- a/modules/jooby-assets-svg-sprites/README.md +++ b/modules/jooby-assets-svg-sprites/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-svg-sprites/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-svg-sprites/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-svg-sprites.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-svg-sprites/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-svg-sprites/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-svg-sprites/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-svg-sprites.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-svg-sprites/1.6.0) [![jooby-assets-svg-sprites website](https://img.shields.io/badge/jooby-assets-svg-sprites-brightgreen.svg)](http://jooby.org/doc/assets-svg-sprites) # svg-sprites @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-svg-sprites - 1.5.1 + 1.6.0 provided ``` diff --git a/modules/jooby-assets-svg-sprites/pom.xml b/modules/jooby-assets-svg-sprites/pom.xml index f9bf663057..5bfdce3d2d 100644 --- a/modules/jooby-assets-svg-sprites/pom.xml +++ b/modules/jooby-assets-svg-sprites/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-assets-svg-symbol/README.md b/modules/jooby-assets-svg-symbol/README.md index 5368a43b1f..942274c70d 100644 --- a/modules/jooby-assets-svg-symbol/README.md +++ b/modules/jooby-assets-svg-symbol/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-svg-symbol/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-svg-symbol/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-svg-symbol.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-svg-symbol/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-svg-symbol/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-svg-symbol/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-svg-symbol.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-svg-symbol/1.6.0) [![jooby-assets-svg-symbol website](https://img.shields.io/badge/jooby-assets-svg-symbol-brightgreen.svg)](http://jooby.org/doc/assets-svg-symbol) # svg-symbol @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-svg-symbol - 1.5.1 + 1.6.0 provided ``` diff --git a/modules/jooby-assets-svg-symbol/pom.xml b/modules/jooby-assets-svg-symbol/pom.xml index 6cec40bc1d..ec1affddac 100644 --- a/modules/jooby-assets-svg-symbol/pom.xml +++ b/modules/jooby-assets-svg-symbol/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-assets-uglify/README.md b/modules/jooby-assets-uglify/README.md index d556cdf7a7..141b8915c2 100644 --- a/modules/jooby-assets-uglify/README.md +++ b/modules/jooby-assets-uglify/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-uglify/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-uglify/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-uglify.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-uglify/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-uglify/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-uglify/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-uglify.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-uglify/1.6.0) [![jooby-assets-uglify website](https://img.shields.io/badge/jooby-assets-uglify-brightgreen.svg)](http://jooby.org/doc/assets-uglify) # uglify @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-uglify - 1.5.1 + 1.6.0 provided ``` diff --git a/modules/jooby-assets-uglify/pom.xml b/modules/jooby-assets-uglify/pom.xml index 96234e93fd..bad7b01764 100644 --- a/modules/jooby-assets-uglify/pom.xml +++ b/modules/jooby-assets-uglify/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-assets-yui-compressor/README.md b/modules/jooby-assets-yui-compressor/README.md index c0417c35bf..a283bd1a5a 100644 --- a/modules/jooby-assets-yui-compressor/README.md +++ b/modules/jooby-assets-yui-compressor/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-yui-compressor/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-yui-compressor/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-yui-compressor.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-yui-compressor/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-yui-compressor/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-yui-compressor/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-yui-compressor.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-yui-compressor/1.6.0) [![jooby-assets-yui-compressor website](https://img.shields.io/badge/jooby-assets-yui-compressor-brightgreen.svg)](http://jooby.org/doc/assets-yui-compressor) # yui-css @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-yui-compressor - 1.5.1 + 1.6.0 provided ``` diff --git a/modules/jooby-assets-yui-compressor/pom.xml b/modules/jooby-assets-yui-compressor/pom.xml index e3ccabd5e4..05055d651c 100644 --- a/modules/jooby-assets-yui-compressor/pom.xml +++ b/modules/jooby-assets-yui-compressor/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-assets/README.md b/modules/jooby-assets/README.md index 0a91e890eb..b0554d8ad6 100644 --- a/modules/jooby-assets/README.md +++ b/modules/jooby-assets/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets.svg)](https://javadoc.io/doc/org.jooby/jooby-assets/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets.svg)](https://javadoc.io/doc/org.jooby/jooby-assets/1.6.0) [![jooby-assets website](https://img.shields.io/badge/jooby-assets-brightgreen.svg)](http://jooby.org/doc/assets) # assets @@ -13,7 +13,7 @@ A variety of processors are available: ([jshint](https://github.com/jooby-projec org.jooby jooby-assets - 1.5.1 + 1.6.0 ``` diff --git a/modules/jooby-assets/pom.xml b/modules/jooby-assets/pom.xml index 069b0b7c08..531e17c033 100644 --- a/modules/jooby-assets/pom.xml +++ b/modules/jooby-assets/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-aws/README.md b/modules/jooby-aws/README.md index 53ee0c1f05..091d6c5178 100644 --- a/modules/jooby-aws/README.md +++ b/modules/jooby-aws/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-aws/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-aws/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-aws.svg)](https://javadoc.io/doc/org.jooby/jooby-aws/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-aws/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-aws/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-aws.svg)](https://javadoc.io/doc/org.jooby/jooby-aws/1.6.0) [![jooby-aws website](https://img.shields.io/badge/jooby-aws-brightgreen.svg)](http://jooby.org/doc/aws) # aws @@ -15,7 +15,7 @@ Small utility module that exports ```AmazonWebServiceClient``` services. org.jooby jooby-aws - 1.5.1 + 1.6.0 ``` diff --git a/modules/jooby-aws/pom.xml b/modules/jooby-aws/pom.xml index d1d79b8344..31b2097f7d 100644 --- a/modules/jooby-aws/pom.xml +++ b/modules/jooby-aws/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-banner/README.md b/modules/jooby-banner/README.md index a6cf7b1553..67446de432 100644 --- a/modules/jooby-banner/README.md +++ b/modules/jooby-banner/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-banner/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-banner/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-banner.svg)](https://javadoc.io/doc/org.jooby/jooby-banner/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-banner/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-banner/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-banner.svg)](https://javadoc.io/doc/org.jooby/jooby-banner/1.6.0) [![jooby-banner website](https://img.shields.io/badge/jooby-banner-brightgreen.svg)](http://jooby.org/doc/banner) # banner @@ -11,7 +11,7 @@ Prints out an ASCII art banner on startup using org.jooby jooby-caffeine - 1.5.1 + 1.6.0 ``` diff --git a/modules/jooby-caffeine/pom.xml b/modules/jooby-caffeine/pom.xml index bd55ba5913..c689b73e6c 100644 --- a/modules/jooby-caffeine/pom.xml +++ b/modules/jooby-caffeine/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-camel/README.md b/modules/jooby-camel/README.md index 1c86963aef..dfe0cc6fe9 100644 --- a/modules/jooby-camel/README.md +++ b/modules/jooby-camel/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-camel/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-camel/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-camel.svg)](https://javadoc.io/doc/org.jooby/jooby-camel/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-camel/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-camel/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-camel.svg)](https://javadoc.io/doc/org.jooby/jooby-camel/1.6.0) [![jooby-camel website](https://img.shields.io/badge/jooby-camel-brightgreen.svg)](http://jooby.org/doc/camel) # camel @@ -26,7 +26,7 @@ depend on [camel-guice](http://camel.apache.org/guice.html), but it provides sim org.jooby jooby-camel - 1.5.1 + 1.6.0 ``` diff --git a/modules/jooby-camel/pom.xml b/modules/jooby-camel/pom.xml index cda8b6f586..874b3c7552 100644 --- a/modules/jooby-camel/pom.xml +++ b/modules/jooby-camel/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-cassandra/README.md b/modules/jooby-cassandra/README.md index 673d1510a5..43f7b9cab1 100644 --- a/modules/jooby-cassandra/README.md +++ b/modules/jooby-cassandra/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-cassandra/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-cassandra/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-cassandra.svg)](https://javadoc.io/doc/org.jooby/jooby-cassandra/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-cassandra/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-cassandra/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-cassandra.svg)](https://javadoc.io/doc/org.jooby/jooby-cassandra/1.6.0) [![jooby-cassandra website](https://img.shields.io/badge/jooby-cassandra-brightgreen.svg)](http://jooby.org/doc/cassandra) # cassandra @@ -13,7 +13,7 @@ This module offers cassandra database org.jooby jooby-cassandra - 1.5.1 + 1.6.0 ``` @@ -211,7 +211,7 @@ A [Session.Store](/apidocs/org/jooby/cassandra/CassandraSessionStore.html) power org.jooby jooby-cassandra - 1.5.1 + 1.6.0 ``` diff --git a/modules/jooby-cassandra/pom.xml b/modules/jooby-cassandra/pom.xml index 9135f97007..cb8b31ba08 100644 --- a/modules/jooby-cassandra/pom.xml +++ b/modules/jooby-cassandra/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-commons-email/README.md b/modules/jooby-commons-email/README.md index 1574fe52e2..e42aa774d2 100644 --- a/modules/jooby-commons-email/README.md +++ b/modules/jooby-commons-email/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-commons-email/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-commons-email/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-commons-email.svg)](https://javadoc.io/doc/org.jooby/jooby-commons-email/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-commons-email/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-commons-email/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-commons-email.svg)](https://javadoc.io/doc/org.jooby/jooby-commons-email/1.6.0) [![jooby-commons-email website](https://img.shields.io/badge/jooby-commons-email-brightgreen.svg)](http://jooby.org/doc/commons-email) # commons-email @@ -12,7 +12,6 @@ Small but helpful module that provides access to ```Email``` instances. * ```SimpleEmail``` * ```MultiPartEmail``` * ```HtmlEmail``` -* ```ImageHtmlEmail``` ## dependency @@ -20,7 +19,7 @@ Small but helpful module that provides access to ```Email``` instances. org.jooby jooby-commons-email - 1.5.1 + 1.6.0 ``` diff --git a/modules/jooby-commons-email/pom.xml b/modules/jooby-commons-email/pom.xml index 0202d2ed53..2da198a218 100644 --- a/modules/jooby-commons-email/pom.xml +++ b/modules/jooby-commons-email/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-consul/README.md b/modules/jooby-consul/README.md index cd34afbd76..5862e1c9d1 100644 --- a/modules/jooby-consul/README.md +++ b/modules/jooby-consul/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-consul/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-consul/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-consul.svg)](https://javadoc.io/doc/org.jooby/jooby-consul/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-consul/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-consul/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-consul.svg)](https://javadoc.io/doc/org.jooby/jooby-consul/1.6.0) [![jooby-consul website](https://img.shields.io/badge/jooby-consul-brightgreen.svg)](http://jooby.org/doc/consul) # consul @@ -15,7 +15,7 @@ Also register the application as a service and setup a health check. org.jooby jooby-consul - 1.5.1 + 1.6.0 ``` diff --git a/modules/jooby-consul/pom.xml b/modules/jooby-consul/pom.xml index 188f322e67..d8331a12e7 100644 --- a/modules/jooby-consul/pom.xml +++ b/modules/jooby-consul/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-couchbase/README.md b/modules/jooby-couchbase/README.md index 5d72a84e1d..d3d197715b 100644 --- a/modules/jooby-couchbase/README.md +++ b/modules/jooby-couchbase/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-couchbase/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-couchbase/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-couchbase.svg)](https://javadoc.io/doc/org.jooby/jooby-couchbase/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-couchbase/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-couchbase/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-couchbase.svg)](https://javadoc.io/doc/org.jooby/jooby-couchbase/1.6.0) [![jooby-couchbase website](https://img.shields.io/badge/jooby-couchbase-brightgreen.svg)](http://jooby.org/doc/couchbase) # couchbase @@ -13,7 +13,7 @@ This module provides couchbase access via org.jooby jooby-couchbase - 1.5.1 + 1.6.0 ``` @@ -307,7 +307,7 @@ A [Session.Store](/apidocs/org/jooby/couchbase/CouchbaseSessionStore) powered by org.jooby jooby-couchbase - 1.5.1 + 1.6.0 ``` diff --git a/modules/jooby-couchbase/pom.xml b/modules/jooby-couchbase/pom.xml index 7118b2ee58..a63d1cf272 100644 --- a/modules/jooby-couchbase/pom.xml +++ b/modules/jooby-couchbase/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-crash/README.md b/modules/jooby-crash/README.md index d514ddbc5f..62acf2dad6 100644 --- a/modules/jooby-crash/README.md +++ b/modules/jooby-crash/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-crash/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-crash/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-crash.svg)](https://javadoc.io/doc/org.jooby/jooby-crash/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-crash/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-crash/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-crash.svg)](https://javadoc.io/doc/org.jooby/jooby-crash/1.6.0) [![jooby-crash website](https://img.shields.io/badge/jooby-crash-brightgreen.svg)](http://jooby.org/doc/crash) # crash @@ -11,7 +11,7 @@ org.jooby jooby-crash - 1.5.1 + 1.6.0 ``` diff --git a/modules/jooby-crash/pom.xml b/modules/jooby-crash/pom.xml index b1025ea5d5..537cfdc235 100644 --- a/modules/jooby-crash/pom.xml +++ b/modules/jooby-crash/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-csl/README.md b/modules/jooby-csl/README.md index 7dd5b0957d..741eb729a3 100644 --- a/modules/jooby-csl/README.md +++ b/modules/jooby-csl/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-csl/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-csl/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-csl.svg)](https://javadoc.io/doc/org.jooby/jooby-csl/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-csl/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-csl/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-csl.svg)](https://javadoc.io/doc/org.jooby/jooby-csl/1.6.0) [![jooby-csl website](https://img.shields.io/badge/jooby-csl-brightgreen.svg)](http://jooby.org/doc/csl) # csl @@ -11,7 +11,7 @@ org.jooby jooby-csl - 1.5.1 + 1.6.0 ``` diff --git a/modules/jooby-csl/pom.xml b/modules/jooby-csl/pom.xml index f15dc0a97b..d61222b06b 100644 --- a/modules/jooby-csl/pom.xml +++ b/modules/jooby-csl/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-dist/pom.xml b/modules/jooby-dist/pom.xml index 19c4ea71da..f74115d47c 100644 --- a/modules/jooby-dist/pom.xml +++ b/modules/jooby-dist/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-ebean/README.md b/modules/jooby-ebean/README.md index 1a9fab79e7..99b9b039a5 100644 --- a/modules/jooby-ebean/README.md +++ b/modules/jooby-ebean/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-ebean/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-ebean/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-ebean.svg)](https://javadoc.io/doc/org.jooby/jooby-ebean/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-ebean/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-ebean/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-ebean.svg)](https://javadoc.io/doc/org.jooby/jooby-ebean/1.6.0) [![jooby-ebean website](https://img.shields.io/badge/jooby-ebean-brightgreen.svg)](http://jooby.org/doc/ebean) # ebean @@ -17,7 +17,7 @@ Object-Relational-Mapping via [Ebean ORM](http://ebean-orm.github.io). It config org.jooby jooby-ebean - 1.5.1 + 1.6.0 ``` diff --git a/modules/jooby-ebean/pom.xml b/modules/jooby-ebean/pom.xml index 8d9ff4f9af..fd69fbad29 100644 --- a/modules/jooby-ebean/pom.xml +++ b/modules/jooby-ebean/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-ehcache/README.md b/modules/jooby-ehcache/README.md index 064d9aa50e..21ca590385 100644 --- a/modules/jooby-ehcache/README.md +++ b/modules/jooby-ehcache/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-ehcache/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-ehcache/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-ehcache.svg)](https://javadoc.io/doc/org.jooby/jooby-ehcache/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-ehcache/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-ehcache/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-ehcache.svg)](https://javadoc.io/doc/org.jooby/jooby-ehcache/1.6.0) [![jooby-ehcache website](https://img.shields.io/badge/jooby-ehcache-brightgreen.svg)](http://jooby.org/doc/ehcache) # ehcache @@ -16,7 +16,7 @@ Provides advanced cache features via [Ehcache](http://ehcache.org) org.jooby jooby-ehcache - 1.5.1 + 1.6.0 ``` @@ -120,7 +120,7 @@ Please note the ```default``` cache works as a template and isn't a real/usable org.jooby jooby-ehcache - 1.5.1 + 1.6.0 ``` diff --git a/modules/jooby-ehcache/pom.xml b/modules/jooby-ehcache/pom.xml index ca552bad5b..8b30455b74 100644 --- a/modules/jooby-ehcache/pom.xml +++ b/modules/jooby-ehcache/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-elasticsearch/README.md b/modules/jooby-elasticsearch/README.md index 804dfd4aab..2d90db5a1f 100644 --- a/modules/jooby-elasticsearch/README.md +++ b/modules/jooby-elasticsearch/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-elasticsearch/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-elasticsearch/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-elasticsearch.svg)](https://javadoc.io/doc/org.jooby/jooby-elasticsearch/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-elasticsearch/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-elasticsearch/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-elasticsearch.svg)](https://javadoc.io/doc/org.jooby/jooby-elasticsearch/1.6.0) [![jooby-elasticsearch website](https://img.shields.io/badge/jooby-elasticsearch-brightgreen.svg)](http://jooby.org/doc/elasticsearch) # elasticsearch @@ -15,7 +15,7 @@ Open Source, Distributed, RESTful Search Engine via [Elastic Search](https://git org.jooby jooby-elasticsearch - 1.5.1 + 1.6.0 ``` diff --git a/modules/jooby-elasticsearch/pom.xml b/modules/jooby-elasticsearch/pom.xml index 65207af385..f5d9d63b48 100644 --- a/modules/jooby-elasticsearch/pom.xml +++ b/modules/jooby-elasticsearch/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-eventbus/README.md b/modules/jooby-eventbus/README.md index 95016c0d6e..1de5941219 100644 --- a/modules/jooby-eventbus/README.md +++ b/modules/jooby-eventbus/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-eventbus/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-eventbus/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-eventbus.svg)](https://javadoc.io/doc/org.jooby/jooby-eventbus/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-eventbus/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-eventbus/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-eventbus.svg)](https://javadoc.io/doc/org.jooby/jooby-eventbus/1.6.0) [![jooby-eventbus website](https://img.shields.io/badge/jooby-eventbus-brightgreen.svg)](http://jooby.org/doc/eventbus) # EventBus @@ -15,7 +15,7 @@ org.jooby jooby-eventbus - 1.5.1 + 1.6.0 ``` diff --git a/modules/jooby-eventbus/pom.xml b/modules/jooby-eventbus/pom.xml index c8eddb55d3..d7138339b6 100644 --- a/modules/jooby-eventbus/pom.xml +++ b/modules/jooby-eventbus/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-executor/README.md b/modules/jooby-executor/README.md index cda5f367af..f77f812097 100644 --- a/modules/jooby-executor/README.md +++ b/modules/jooby-executor/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-executor/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-executor/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-executor.svg)](https://javadoc.io/doc/org.jooby/jooby-executor/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-executor/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-executor/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-executor.svg)](https://javadoc.io/doc/org.jooby/jooby-executor/1.6.0) [![jooby-executor website](https://img.shields.io/badge/jooby-executor-brightgreen.svg)](http://jooby.org/doc/executor) # executor @@ -15,7 +15,7 @@ Manage the life cycle of {@link ExecutorService} and build async apps, schedule org.jooby jooby-executor - 1.5.1 + 1.6.0 ``` diff --git a/modules/jooby-executor/pom.xml b/modules/jooby-executor/pom.xml index 07ae9411c8..4dd035485c 100644 --- a/modules/jooby-executor/pom.xml +++ b/modules/jooby-executor/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-exposed/README.md b/modules/jooby-exposed/README.md new file mode 100644 index 0000000000..d8fe16c560 --- /dev/null +++ b/modules/jooby-exposed/README.md @@ -0,0 +1,52 @@ +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-exposed/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-exposed/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-exposed.svg)](https://javadoc.io/doc/org.jooby/jooby-exposed/1.6.0) +[![jooby-exposed website](https://img.shields.io/badge/jooby-exposed-brightgreen.svg)](http://jooby.org/doc/exposed) +# exposed + + Exposed is a prototype for a lightweight SQL library written over JDBC driver for Kotlin language + +> NOTE: This module depends on [jdbc](https://github.com/jooby-project/jooby/tree/master/jooby-jdbc) module. + +## exports + +* Database object + +## usage + +```java +{ + use(Jdbc()) + use(Exposed()) + + get("/db") { + val db = require(Database::class) + transaction (db) { + // Work with db... + } + } + } +``` + +## multiple databases + +```java +{ + use(Jdbc("db1")) + + use(Jdbc("db2")) + + use(Exposed("db1")) + + use(Exposed("db2")) + + get("/db") { + val db1 = require("db1", Database::class) + // Work with db1... + + val db2 = require("db2", Database::class) + // Work with db2... + } +} +``` + +That's all! Happy coding!!! diff --git a/modules/jooby-exposed/pom.xml b/modules/jooby-exposed/pom.xml index 55f57d2c95..39ab860ee0 100644 --- a/modules/jooby-exposed/pom.xml +++ b/modules/jooby-exposed/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 @@ -73,6 +73,39 @@ + + org.apache.maven.plugins + maven-source-plugin + + + verify + + jar + + + + **/*.java + **/*.kt + + + + + + + + org.jetbrains.dokka + dokka-maven-plugin + ${dokka-maven-plugin.version} + + + verify + + javadocJar + + + + + org.apache.maven.plugins @@ -177,4 +210,12 @@ + + + jcenter + JCenter + https://jcenter.bintray.com/ + + + diff --git a/modules/jooby-filewatcher/README.md b/modules/jooby-filewatcher/README.md index d7eac1254a..cd4fe7ae62 100644 --- a/modules/jooby-filewatcher/README.md +++ b/modules/jooby-filewatcher/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-filewatcher/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-filewatcher/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-filewatcher.svg)](https://javadoc.io/doc/org.jooby/jooby-filewatcher/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-filewatcher/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-filewatcher/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-filewatcher.svg)](https://javadoc.io/doc/org.jooby/jooby-filewatcher/1.6.0) [![jooby-filewatcher website](https://img.shields.io/badge/jooby-filewatcher-brightgreen.svg)](http://jooby.org/doc/filewatcher) # file watcher @@ -11,7 +11,7 @@ Watches for file system changes or event. It uses a watch service to monitor a d org.jooby jooby-file watcher - 1.5.1 + 1.6.0 ``` diff --git a/modules/jooby-filewatcher/pom.xml b/modules/jooby-filewatcher/pom.xml index 55ebe24df0..0720e1f9e6 100644 --- a/modules/jooby-filewatcher/pom.xml +++ b/modules/jooby-filewatcher/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-flyway/README.md b/modules/jooby-flyway/README.md index 48eaeb417a..7379a0ebf5 100644 --- a/modules/jooby-flyway/README.md +++ b/modules/jooby-flyway/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-flyway/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-flyway/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-flyway.svg)](https://javadoc.io/doc/org.jooby/jooby-flyway/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-flyway/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-flyway/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-flyway.svg)](https://javadoc.io/doc/org.jooby/jooby-flyway/1.6.0) [![jooby-flyway website](https://img.shields.io/badge/jooby-flyway-brightgreen.svg)](http://jooby.org/doc/flyway) # flyway @@ -15,7 +15,7 @@ This module run [Flyway](http://flywaydb.org) on startup and apply database migr org.jooby jooby-flyway - 1.5.1 + 1.6.0 ``` diff --git a/modules/jooby-flyway/pom.xml b/modules/jooby-flyway/pom.xml index e0d84053d4..e98a120884 100644 --- a/modules/jooby-flyway/pom.xml +++ b/modules/jooby-flyway/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-frontend/README.md b/modules/jooby-frontend/README.md index 71d3e1c4ee..62816c7628 100644 --- a/modules/jooby-frontend/README.md +++ b/modules/jooby-frontend/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-frontend/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-frontend/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-frontend.svg)](https://javadoc.io/doc/org.jooby/jooby-frontend/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-frontend/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-frontend/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-frontend.svg)](https://javadoc.io/doc/org.jooby/jooby-frontend/1.6.0) [![jooby-frontend website](https://img.shields.io/badge/jooby-frontend-brightgreen.svg)](http://jooby.org/doc/frontend) # frontend @@ -12,7 +12,7 @@ runs npm, w org.jooby jooby-frontend - 1.5.1 + 1.6.0 ``` diff --git a/modules/jooby-frontend/pom.xml b/modules/jooby-frontend/pom.xml index f762f61358..862237e729 100644 --- a/modules/jooby-frontend/pom.xml +++ b/modules/jooby-frontend/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-ftl/README.md b/modules/jooby-ftl/README.md index 0efa34a4fb..eca21edb90 100644 --- a/modules/jooby-ftl/README.md +++ b/modules/jooby-ftl/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-ftl/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-ftl/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-ftl.svg)](https://javadoc.io/doc/org.jooby/jooby-ftl/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-ftl/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-ftl/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-ftl.svg)](https://javadoc.io/doc/org.jooby/jooby-ftl/1.6.0) [![jooby-ftl website](https://img.shields.io/badge/jooby-ftl-brightgreen.svg)](http://jooby.org/doc/ftl) # freemarker @@ -16,7 +16,7 @@ org.jooby jooby-ftl - 1.5.1 + 1.6.0 ``` diff --git a/modules/jooby-ftl/pom.xml b/modules/jooby-ftl/pom.xml index 2e0e2d7ad9..06b663cdd8 100644 --- a/modules/jooby-ftl/pom.xml +++ b/modules/jooby-ftl/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-gradle-plugin/README.md b/modules/jooby-gradle-plugin/README.md index bec5f71980..52fe1138a4 100644 --- a/modules/jooby-gradle-plugin/README.md +++ b/modules/jooby-gradle-plugin/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-gradle-plugin/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-gradle-plugin/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-gradle-plugin.svg)](https://javadoc.io/doc/org.jooby/jooby-gradle-plugin/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-gradle-plugin/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-gradle-plugin/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-gradle-plugin.svg)](https://javadoc.io/doc/org.jooby/jooby-gradle-plugin/1.6.0) [![jooby-gradle-plugin website](https://img.shields.io/badge/jooby-gradle-plugin-brightgreen.svg)](http://jooby.org/doc/gradle-plugin) # gradle plugin @@ -21,7 +21,7 @@ buildscript { dependencies { /** joobyRun */ - classpath group: 'org.jooby', name: 'jooby-gradle-plugin', version: '1.5.1' + classpath group: 'org.jooby', name: 'jooby-gradle-plugin', version: '1.6.0' } } diff --git a/modules/jooby-gradle-plugin/pom.xml b/modules/jooby-gradle-plugin/pom.xml index 9cc6d8b4fd..b0e7df8783 100644 --- a/modules/jooby-gradle-plugin/pom.xml +++ b/modules/jooby-gradle-plugin/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-gson/README.md b/modules/jooby-gson/README.md index 5fa460b263..17b46abeb6 100644 --- a/modules/jooby-gson/README.md +++ b/modules/jooby-gson/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-gson/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-gson/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-gson.svg)](https://javadoc.io/doc/org.jooby/jooby-gson/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-gson/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-gson/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-gson.svg)](https://javadoc.io/doc/org.jooby/jooby-gson/1.6.0) [![jooby-gson website](https://img.shields.io/badge/jooby-gson-brightgreen.svg)](http://jooby.org/doc/gson) # gson @@ -17,7 +17,7 @@ JSON support via [Gson](https://github.com/google/gson) library. org.jooby jooby-gson - 1.5.1 + 1.6.0 ``` diff --git a/modules/jooby-gson/pom.xml b/modules/jooby-gson/pom.xml index 37fedf1e92..fba788a84d 100644 --- a/modules/jooby-gson/pom.xml +++ b/modules/jooby-gson/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-guava-cache/README.md b/modules/jooby-guava-cache/README.md index 68a84fd05a..e4749ee25e 100644 --- a/modules/jooby-guava-cache/README.md +++ b/modules/jooby-guava-cache/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-guava-cache/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-guava-cache/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-guava-cache.svg)](https://javadoc.io/doc/org.jooby/jooby-guava-cache/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-guava-cache/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-guava-cache/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-guava-cache.svg)](https://javadoc.io/doc/org.jooby/jooby-guava-cache/1.6.0) [![jooby-guava-cache website](https://img.shields.io/badge/jooby-guava-cache-brightgreen.svg)](http://jooby.org/doc/guava-cache) # guava-cache @@ -15,7 +15,7 @@ Provides cache solution and session storage via: Hibernate ORM org.jooby jooby-hbm - 1.5.1 + 1.6.0 ``` diff --git a/modules/jooby-hbm/pom.xml b/modules/jooby-hbm/pom.xml index bfebd1e929..ce3b0d2857 100644 --- a/modules/jooby-hbm/pom.xml +++ b/modules/jooby-hbm/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-hbs/README.md b/modules/jooby-hbs/README.md index 0fae09a14f..205424eee2 100644 --- a/modules/jooby-hbs/README.md +++ b/modules/jooby-hbs/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-hbs/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-hbs/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-hbs.svg)](https://javadoc.io/doc/org.jooby/jooby-hbs/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-hbs/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-hbs/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-hbs.svg)](https://javadoc.io/doc/org.jooby/jooby-hbs/1.6.0) [![jooby-hbs website](https://img.shields.io/badge/jooby-hbs-brightgreen.svg)](http://jooby.org/doc/hbs) # handlebars @@ -16,7 +16,7 @@ Logic-less and semantic templates via [Handlebars.java](https://github.com/jknac org.jooby jooby-hbs - 1.5.1 + 1.6.0 ``` diff --git a/modules/jooby-hbs/pom.xml b/modules/jooby-hbs/pom.xml index 797557bfd9..d111bb972e 100644 --- a/modules/jooby-hbs/pom.xml +++ b/modules/jooby-hbs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-hbv/README.md b/modules/jooby-hbv/README.md index cb077db971..1296b9722d 100644 --- a/modules/jooby-hbv/README.md +++ b/modules/jooby-hbv/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-hbv/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-hbv/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-hbv.svg)](https://javadoc.io/doc/org.jooby/jooby-hbv/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-hbv/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-hbv/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-hbv.svg)](https://javadoc.io/doc/org.jooby/jooby-hbv/1.6.0) [![jooby-hbv website](https://img.shields.io/badge/jooby-hbv-brightgreen.svg)](http://jooby.org/doc/hbv) # hibernate validator @@ -17,7 +17,7 @@ Bean validation via [Hibernate Validator](hibernate.org/validator). org.jooby jooby-hbv - 1.5.1 + 1.6.0 ``` diff --git a/modules/jooby-hbv/pom.xml b/modules/jooby-hbv/pom.xml index e07bf68d08..d3402b98ed 100644 --- a/modules/jooby-hbv/pom.xml +++ b/modules/jooby-hbv/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-jackson/README.md b/modules/jooby-jackson/README.md index 1182650c32..798dc5f6be 100644 --- a/modules/jooby-jackson/README.md +++ b/modules/jooby-jackson/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jackson/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jackson/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jackson.svg)](https://javadoc.io/doc/org.jooby/jooby-jackson/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jackson/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jackson/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jackson.svg)](https://javadoc.io/doc/org.jooby/jooby-jackson/1.6.0) [![jooby-jackson website](https://img.shields.io/badge/jooby-jackson-brightgreen.svg)](http://jooby.org/doc/jackson) # jackson @@ -17,7 +17,7 @@ JSON support from the excellent [Jackson](https://github.com/FasterXML/jackson) org.jooby jooby-jackson - 1.5.1 + 1.6.0 ``` diff --git a/modules/jooby-jackson/pom.xml b/modules/jooby-jackson/pom.xml index c91d74e259..af39c8dc49 100644 --- a/modules/jooby-jackson/pom.xml +++ b/modules/jooby-jackson/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-jade/README.md b/modules/jooby-jade/README.md index 6247c81c63..66207e8d9e 100644 --- a/modules/jooby-jade/README.md +++ b/modules/jooby-jade/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jade/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jade/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jade.svg)](https://javadoc.io/doc/org.jooby/jooby-jade/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jade/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jade/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jade.svg)](https://javadoc.io/doc/org.jooby/jooby-jade/1.6.0) [![jooby-jade website](https://img.shields.io/badge/jooby-jade-brightgreen.svg)](http://jooby.org/doc/jade) # jade @@ -16,7 +16,7 @@ org.jooby jooby-jade - 1.5.1 + 1.6.0 ``` diff --git a/modules/jooby-jade/pom.xml b/modules/jooby-jade/pom.xml index ab75340b27..a1322bd57e 100644 --- a/modules/jooby-jade/pom.xml +++ b/modules/jooby-jade/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-jdbc/README.md b/modules/jooby-jdbc/README.md index 5cb0c579f0..179f604e6a 100644 --- a/modules/jooby-jdbc/README.md +++ b/modules/jooby-jdbc/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jdbc/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jdbc/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jdbc.svg)](https://javadoc.io/doc/org.jooby/jooby-jdbc/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jdbc/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jdbc/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jdbc.svg)](https://javadoc.io/doc/org.jooby/jooby-jdbc/1.6.0) [![jooby-jdbc website](https://img.shields.io/badge/jooby-jdbc-brightgreen.svg)](http://jooby.org/doc/jdbc) # jdbc @@ -15,7 +15,7 @@ Production-ready jdbc data source, powered by the [HikariCP](https://github.com/ org.jooby jooby-jdbc - 1.5.1 + 1.6.0 ``` diff --git a/modules/jooby-jdbc/pom.xml b/modules/jooby-jdbc/pom.xml index b012af0f25..16ddcdf802 100644 --- a/modules/jooby-jdbc/pom.xml +++ b/modules/jooby-jdbc/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-jdbi/README.md b/modules/jooby-jdbi/README.md index 0033746c6d..21e9649dfe 100644 --- a/modules/jooby-jdbi/README.md +++ b/modules/jooby-jdbi/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jdbi/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jdbi/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jdbi.svg)](https://javadoc.io/doc/org.jooby/jooby-jdbi/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jdbi/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jdbi/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jdbi.svg)](https://javadoc.io/doc/org.jooby/jooby-jdbi/1.6.0) [![jooby-jdbi website](https://img.shields.io/badge/jooby-jdbi-brightgreen.svg)](http://jooby.org/doc/jdbi) # jdbi @@ -21,7 +21,7 @@ org.jooby jooby-jdbi - 1.5.1 + 1.6.0 ``` diff --git a/modules/jooby-jdbi/pom.xml b/modules/jooby-jdbi/pom.xml index def22bcc91..68ac046a0d 100644 --- a/modules/jooby-jdbi/pom.xml +++ b/modules/jooby-jdbi/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-jdbi3/README.md b/modules/jooby-jdbi3/README.md index 78c91ec975..de95d55296 100644 --- a/modules/jooby-jdbi3/README.md +++ b/modules/jooby-jdbi3/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jdbi3/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jdbi3/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jdbi3.svg)](https://javadoc.io/doc/org.jooby/jooby-jdbi3/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jdbi3/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jdbi3/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jdbi3.svg)](https://javadoc.io/doc/org.jooby/jooby-jdbi3/1.6.0) [![jooby-jdbi3 website](https://img.shields.io/badge/jooby-jdbi3-brightgreen.svg)](http://jooby.org/doc/jdbi3) # jdbi @@ -17,7 +17,7 @@ org.jooby jooby-jdbi3 - 1.5.1 + 1.6.0 ``` diff --git a/modules/jooby-jdbi3/pom.xml b/modules/jooby-jdbi3/pom.xml index e2f3389e2d..ebcdd3747d 100644 --- a/modules/jooby-jdbi3/pom.xml +++ b/modules/jooby-jdbi3/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-jedis/README.md b/modules/jooby-jedis/README.md index 3def1d7434..589ea5fe1d 100644 --- a/modules/jooby-jedis/README.md +++ b/modules/jooby-jedis/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jedis/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jedis/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jedis.svg)](https://javadoc.io/doc/org.jooby/jooby-jedis/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jedis/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jedis/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jedis.svg)](https://javadoc.io/doc/org.jooby/jooby-jedis/1.6.0) [![jooby-jedis website](https://img.shields.io/badge/jooby-jedis-brightgreen.svg)](http://jooby.org/doc/jedis) # jedis @@ -11,7 +11,7 @@ org.jooby jooby-jedis - 1.5.1 + 1.6.0 ``` @@ -99,7 +99,7 @@ For more information about [Jedis](https://github.com/xetorthio/jedis) checkout org.jooby jooby-jedis - 1.5.1 + 1.6.0 ``` @@ -202,4 +202,10 @@ jedis.pool.jmxNamePrefix = redis-pool jedis.session.prefix = sessions jedis.session.timeout = ${session.timeout} + +jedis.sentinel.hosts = [] + +jedis.sentinel.master = "master" + +jedis.password = "" ``` diff --git a/modules/jooby-jedis/pom.xml b/modules/jooby-jedis/pom.xml index 69965a2c08..9cbbacc262 100644 --- a/modules/jooby-jedis/pom.xml +++ b/modules/jooby-jedis/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-jedis/src/main/java/org/jooby/jedis/RedisSentinel.java b/modules/jooby-jedis/src/main/java/org/jooby/jedis/RedisSentinel.java index 21a7b47321..6228daeab7 100644 --- a/modules/jooby-jedis/src/main/java/org/jooby/jedis/RedisSentinel.java +++ b/modules/jooby-jedis/src/main/java/org/jooby/jedis/RedisSentinel.java @@ -217,7 +217,7 @@ /** * Created by * - * @Author: lis, Luganski Igor + * @author: lis, Luganski Igor * @since 1.5.0 */ public class RedisSentinel extends Redis { diff --git a/modules/jooby-jetty/README.md b/modules/jooby-jetty/README.md index 7040b7620e..6f4b46f2d4 100644 --- a/modules/jooby-jetty/README.md +++ b/modules/jooby-jetty/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jetty/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jetty/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jetty.svg)](https://javadoc.io/doc/org.jooby/jooby-jetty/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jetty/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jetty/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jetty.svg)](https://javadoc.io/doc/org.jooby/jooby-jetty/1.6.0) [![jooby-jetty website](https://img.shields.io/badge/jooby-jetty-brightgreen.svg)](http://jooby.org/doc/jetty) # jetty @@ -15,7 +15,7 @@ org.jooby jooby-jetty - 1.5.1 + 1.6.0 ``` @@ -84,10 +84,6 @@ jetty { AcceptQueueSize = 0 - # Use -1 to disable - - SoLingerTime = -1 - StopTimeout = 30000 # Sets the maximum Idle time for a connection, which roughly translates to the Socket#setSoTimeout(int) diff --git a/modules/jooby-jetty/pom.xml b/modules/jooby-jetty/pom.xml index d09f3601d7..49e4c4513d 100644 --- a/modules/jooby-jetty/pom.xml +++ b/modules/jooby-jetty/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-jongo/README.md b/modules/jooby-jongo/README.md index 57fd02ce58..3a172531ff 100644 --- a/modules/jooby-jongo/README.md +++ b/modules/jooby-jongo/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jongo/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jongo/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jongo.svg)](https://javadoc.io/doc/org.jooby/jooby-jongo/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jongo/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jongo/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jongo.svg)](https://javadoc.io/doc/org.jooby/jooby-jongo/1.6.0) [![jooby-jongo website](https://img.shields.io/badge/jooby-jongo-brightgreen.svg)](http://jooby.org/doc/jongo) # jongo @@ -17,7 +17,7 @@ org.jooby jooby-jongo - 1.5.1 + 1.6.0 ``` diff --git a/modules/jooby-jongo/pom.xml b/modules/jooby-jongo/pom.xml index db5f3af72e..8e5d9bd68b 100644 --- a/modules/jooby-jongo/pom.xml +++ b/modules/jooby-jongo/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-jooq/README.md b/modules/jooby-jooq/README.md index 3157edda2e..08f4955198 100644 --- a/modules/jooby-jooq/README.md +++ b/modules/jooby-jooq/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jooq/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jooq/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jooq.svg)](https://javadoc.io/doc/org.jooby/jooby-jooq/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jooq/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jooq/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jooq.svg)](https://javadoc.io/doc/org.jooby/jooby-jooq/1.6.0) [![jooby-jooq website](https://img.shields.io/badge/jooby-jooq-brightgreen.svg)](http://jooby.org/doc/jooq) # jOOQ @@ -17,7 +17,7 @@ org.jooby jooby-jooq - 1.5.1 + 1.6.0 ``` diff --git a/modules/jooby-jooq/pom.xml b/modules/jooby-jooq/pom.xml index bfeb4f9083..9ae95415c3 100644 --- a/modules/jooby-jooq/pom.xml +++ b/modules/jooby-jooq/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-lang-kotlin/README.md b/modules/jooby-lang-kotlin/README.md index 44fb367635..5836db3a00 100644 --- a/modules/jooby-lang-kotlin/README.md +++ b/modules/jooby-lang-kotlin/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-lang-kotlin/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-lang-kotlin/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-lang-kotlin.svg)](https://javadoc.io/doc/org.jooby/jooby-lang-kotlin/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-lang-kotlin/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-lang-kotlin/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-lang-kotlin.svg)](https://javadoc.io/doc/org.jooby/jooby-lang-kotlin/1.6.0) [![jooby-lang-kotlin website](https://img.shields.io/badge/jooby-lang-kotlin-brightgreen.svg)](http://jooby.org/doc/lang-kotlin) # kotlin @@ -11,7 +11,7 @@ A tiny module that makes a Jooby application more Kotlin idiomatic. org.jooby jooby-lang-kotlin - 1.5.1 + 1.6.0 ``` diff --git a/modules/jooby-lang-kotlin/pom.xml b/modules/jooby-lang-kotlin/pom.xml index 9f6b31d389..44ba1b0eef 100644 --- a/modules/jooby-lang-kotlin/pom.xml +++ b/modules/jooby-lang-kotlin/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-livereload/README.md b/modules/jooby-livereload/README.md index 5fbd5918e6..91863f744f 100644 --- a/modules/jooby-livereload/README.md +++ b/modules/jooby-livereload/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-livereload/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-livereload/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-livereload.svg)](https://javadoc.io/doc/org.jooby/jooby-livereload/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-livereload/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-livereload/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-livereload.svg)](https://javadoc.io/doc/org.jooby/jooby-livereload/1.6.0) [![jooby-livereload website](https://img.shields.io/badge/jooby-livereload-brightgreen.svg)](http://jooby.org/doc/livereload) # liveReload @@ -18,7 +18,7 @@ Even cooler, when you change a CSS file or an image, the browser is updated inst org.jooby jooby-livereload - 1.5.1 + 1.6.0 ``` diff --git a/modules/jooby-livereload/pom.xml b/modules/jooby-livereload/pom.xml index 3db0ee85bc..13abac8f97 100644 --- a/modules/jooby-livereload/pom.xml +++ b/modules/jooby-livereload/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 jooby-livereload jooby-livereload diff --git a/modules/jooby-maven-plugin/README.md b/modules/jooby-maven-plugin/README.md index 3e12146f74..e099853aae 100644 --- a/modules/jooby-maven-plugin/README.md +++ b/modules/jooby-maven-plugin/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-maven-plugin/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-maven-plugin/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-maven-plugin.svg)](https://javadoc.io/doc/org.jooby/jooby-maven-plugin/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-maven-plugin/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-maven-plugin/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-maven-plugin.svg)](https://javadoc.io/doc/org.jooby/jooby-maven-plugin/1.6.0) [![jooby-maven-plugin website](https://img.shields.io/badge/jooby-maven-plugin-brightgreen.svg)](http://jooby.org/doc/maven-plugin) # maven @@ -43,7 +43,7 @@ It's worth to mention that dynamic reload of classes is done via [JBoss Modules] org.jooby jooby-maven-plugin - 1.5.1 + 1.6.0 ${application.class} @@ -117,7 +117,7 @@ List of commands to execute before starting the ```application```. Useful for [n org.jooby jooby-maven-plugin - 1.5.1 + 1.6.0 ${application.class} @@ -138,7 +138,7 @@ Set one or more ```JVM args```: org.jooby jooby-maven-plugin - 1.5.1 + 1.6.0 ${application.class} true diff --git a/modules/jooby-maven-plugin/pom.xml b/modules/jooby-maven-plugin/pom.xml index 9088b0d422..4347842133 100644 --- a/modules/jooby-maven-plugin/pom.xml +++ b/modules/jooby-maven-plugin/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-metrics/README.md b/modules/jooby-metrics/README.md index 72ce2cc0e2..f53a9a5228 100644 --- a/modules/jooby-metrics/README.md +++ b/modules/jooby-metrics/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-metrics/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-metrics/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-metrics.svg)](https://javadoc.io/doc/org.jooby/jooby-metrics/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-metrics/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-metrics/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-metrics.svg)](https://javadoc.io/doc/org.jooby/jooby-metrics/1.6.0) [![jooby-metrics website](https://img.shields.io/badge/jooby-metrics-brightgreen.svg)](http://jooby.org/doc/metrics) # metrics @@ -11,7 +11,7 @@ org.jooby jooby-metrics - 1.5.1 + 1.6.0 ``` diff --git a/modules/jooby-metrics/pom.xml b/modules/jooby-metrics/pom.xml index 57303f029d..658c7dd449 100644 --- a/modules/jooby-metrics/pom.xml +++ b/modules/jooby-metrics/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-micrometer/README.md b/modules/jooby-micrometer/README.md index 558284adbd..ba68243a66 100644 --- a/modules/jooby-micrometer/README.md +++ b/modules/jooby-micrometer/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-micrometer/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-micrometer/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-micrometer.svg)](https://javadoc.io/doc/org.jooby/jooby-micrometer/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-micrometer/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-micrometer/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-micrometer.svg)](https://javadoc.io/doc/org.jooby/jooby-micrometer/1.6.0) [![jooby-micrometer website](https://img.shields.io/badge/jooby-micrometer-brightgreen.svg)](http://jooby.org/doc/micrometer) # micrometer @@ -11,7 +11,7 @@ org.jooby jooby-micrometer - 1.5.1 + 1.6.0 ``` diff --git a/modules/jooby-micrometer/pom.xml b/modules/jooby-micrometer/pom.xml index da4ca47e82..463d6cd250 100644 --- a/modules/jooby-micrometer/pom.xml +++ b/modules/jooby-micrometer/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-mongodb-rx/README.md b/modules/jooby-mongodb-rx/README.md index 573351b6ee..4d08f083d5 100644 --- a/modules/jooby-mongodb-rx/README.md +++ b/modules/jooby-mongodb-rx/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-mongodb-rx/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-mongodb-rx/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-mongodb-rx.svg)](https://javadoc.io/doc/org.jooby/jooby-mongodb-rx/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-mongodb-rx/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-mongodb-rx/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-mongodb-rx.svg)](https://javadoc.io/doc/org.jooby/jooby-mongodb-rx/1.6.0) [![jooby-mongodb-rx website](https://img.shields.io/badge/jooby-mongodb-rx-brightgreen.svg)](http://jooby.org/doc/mongodb-rx) # mongodb-rx @@ -16,7 +16,7 @@ A MongoDB based driver providing support for React org.jooby jooby-mongodb-rx - 1.5.1 + 1.6.0 ``` diff --git a/modules/jooby-mongodb-rx/pom.xml b/modules/jooby-mongodb-rx/pom.xml index 3944e618be..ae25c8d4e0 100644 --- a/modules/jooby-mongodb-rx/pom.xml +++ b/modules/jooby-mongodb-rx/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-mongodb/README.md b/modules/jooby-mongodb/README.md index 39fb0f42de..5a539ac9af 100644 --- a/modules/jooby-mongodb/README.md +++ b/modules/jooby-mongodb/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-mongodb/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-mongodb/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-mongodb.svg)](https://javadoc.io/doc/org.jooby/jooby-mongodb/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-mongodb/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-mongodb/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-mongodb.svg)](https://javadoc.io/doc/org.jooby/jooby-mongodb/1.6.0) [![jooby-mongodb website](https://img.shields.io/badge/jooby-mongodb-brightgreen.svg)](http://jooby.org/doc/mongodb) # mongodb driver @@ -17,7 +17,7 @@ org.jooby jooby-mongodb - 1.5.1 + 1.6.0 ``` @@ -117,7 +117,7 @@ Use [named](/apidocs/org/jooby/mongodb/Mongodb.html#-named) when you need two or org.jooby jooby-mongodb - 1.5.1 + 1.6.0 ``` diff --git a/modules/jooby-mongodb/pom.xml b/modules/jooby-mongodb/pom.xml index 2090fc18e6..2c3448ccaa 100644 --- a/modules/jooby-mongodb/pom.xml +++ b/modules/jooby-mongodb/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-morphia/README.md b/modules/jooby-morphia/README.md index 4805dd53c4..390d864e5c 100644 --- a/modules/jooby-morphia/README.md +++ b/modules/jooby-morphia/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-morphia/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-morphia/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-morphia.svg)](https://javadoc.io/doc/org.jooby/jooby-morphia/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-morphia/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-morphia/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-morphia.svg)](https://javadoc.io/doc/org.jooby/jooby-morphia/1.6.0) [![jooby-morphia website](https://img.shields.io/badge/jooby-morphia-brightgreen.svg)](http://jooby.org/doc/morphia) # morphia @@ -16,7 +16,7 @@ Extends the [mongodb](https://github.com/jooby-project/jooby/tree/master/jooby-m org.jooby jooby-morphia - 1.5.1 + 1.6.0 ``` diff --git a/modules/jooby-morphia/pom.xml b/modules/jooby-morphia/pom.xml index 39ee5665b6..c188b6e325 100644 --- a/modules/jooby-morphia/pom.xml +++ b/modules/jooby-morphia/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-neo4j/README.md b/modules/jooby-neo4j/README.md index 3b6038afd0..540cca197c 100644 --- a/modules/jooby-neo4j/README.md +++ b/modules/jooby-neo4j/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-neo4j/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-neo4j/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-neo4j.svg)](https://javadoc.io/doc/org.jooby/jooby-neo4j/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-neo4j/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-neo4j/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-neo4j.svg)](https://javadoc.io/doc/org.jooby/jooby-neo4j/1.6.0) [![jooby-neo4j website](https://img.shields.io/badge/jooby-neo4j-brightgreen.svg)](http://jooby.org/doc/neo4j) # neo4j @@ -13,7 +13,7 @@ This module give you access to neo4j and org.jooby jooby-neo4j - 1.5.1 + 1.6.0 ``` @@ -176,7 +176,7 @@ A [Session.Store](/apidocs/org/jooby/neo4j/Neo4jSessionStore) powered by org.jooby jooby-neo4j - 1.5.1 + 1.6.0 ``` diff --git a/modules/jooby-neo4j/pom.xml b/modules/jooby-neo4j/pom.xml index aa5862afe8..fc04c49a74 100644 --- a/modules/jooby-neo4j/pom.xml +++ b/modules/jooby-neo4j/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-netty/README.md b/modules/jooby-netty/README.md index 5a1c070bd6..b9a7f1f9ec 100644 --- a/modules/jooby-netty/README.md +++ b/modules/jooby-netty/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-netty/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-netty/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-netty.svg)](https://javadoc.io/doc/org.jooby/jooby-netty/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-netty/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-netty/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-netty.svg)](https://javadoc.io/doc/org.jooby/jooby-netty/1.6.0) [![jooby-netty website](https://img.shields.io/badge/jooby-netty-brightgreen.svg)](http://jooby.org/doc/netty) # netty @@ -15,7 +15,7 @@ org.jooby jooby-netty - 1.5.1 + 1.6.0 ``` diff --git a/modules/jooby-netty/pom.xml b/modules/jooby-netty/pom.xml index 3801968171..e0b996e472 100644 --- a/modules/jooby-netty/pom.xml +++ b/modules/jooby-netty/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-pac4j/README.md b/modules/jooby-pac4j/README.md index 650a870e70..933c25685a 100644 --- a/modules/jooby-pac4j/README.md +++ b/modules/jooby-pac4j/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-pac4j/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-pac4j/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-pac4j.svg)](https://javadoc.io/doc/org.jooby/jooby-pac4j/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-pac4j/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-pac4j/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-pac4j.svg)](https://javadoc.io/doc/org.jooby/jooby-pac4j/1.6.0) [![jooby-pac4j website](https://img.shields.io/badge/jooby-pac4j-brightgreen.svg)](http://jooby.org/doc/pac4j) # pac4j @@ -22,7 +22,7 @@ Authentication module via: [Pac4j 1.x](https://github.com/pac4j/pac4j). org.jooby jooby-pac4j - 1.5.1 + 1.6.0 ``` diff --git a/modules/jooby-pac4j/pom.xml b/modules/jooby-pac4j/pom.xml index da28f7a3d3..f8776bd333 100644 --- a/modules/jooby-pac4j/pom.xml +++ b/modules/jooby-pac4j/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-pac4j2/README.md b/modules/jooby-pac4j2/README.md index 809b6c9204..a1cb85a02d 100644 --- a/modules/jooby-pac4j2/README.md +++ b/modules/jooby-pac4j2/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-pac4j2/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-pac4j2/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-pac4j2.svg)](https://javadoc.io/doc/org.jooby/jooby-pac4j2/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-pac4j2/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-pac4j2/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-pac4j2.svg)](https://javadoc.io/doc/org.jooby/jooby-pac4j2/1.6.0) [![jooby-pac4j2 website](https://img.shields.io/badge/jooby-pac4j2-brightgreen.svg)](http://jooby.org/doc/pac4j2) # pac4j module @@ -19,7 +19,7 @@ Authentication module via: Pac4j 2.x org.jooby jooby-pac4j2 - 1.5.1 + 1.6.0 ``` diff --git a/modules/jooby-pac4j2/pom.xml b/modules/jooby-pac4j2/pom.xml index b867ada9fd..9df3daaca3 100644 --- a/modules/jooby-pac4j2/pom.xml +++ b/modules/jooby-pac4j2/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-pebble/README.md b/modules/jooby-pebble/README.md index 403037414d..4f657d315e 100644 --- a/modules/jooby-pebble/README.md +++ b/modules/jooby-pebble/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-pebble/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-pebble/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-pebble.svg)](https://javadoc.io/doc/org.jooby/jooby-pebble/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-pebble/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-pebble/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-pebble.svg)](https://javadoc.io/doc/org.jooby/jooby-pebble/1.6.0) [![jooby-pebble website](https://img.shields.io/badge/jooby-pebble-brightgreen.svg)](http://jooby.org/doc/pebble) # pebble @@ -16,7 +16,7 @@ org.jooby jooby-pebble - 1.5.1 + 1.6.0 ``` diff --git a/modules/jooby-pebble/pom.xml b/modules/jooby-pebble/pom.xml index 1b257fc7d2..42cea3a1c1 100644 --- a/modules/jooby-pebble/pom.xml +++ b/modules/jooby-pebble/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-quartz/README.md b/modules/jooby-quartz/README.md index d7c4cbc8f4..2a9b88d00a 100644 --- a/modules/jooby-quartz/README.md +++ b/modules/jooby-quartz/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-quartz/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-quartz/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-quartz.svg)](https://javadoc.io/doc/org.jooby/jooby-quartz/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-quartz/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-quartz/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-quartz.svg)](https://javadoc.io/doc/org.jooby/jooby-quartz/1.6.0) [![jooby-quartz website](https://img.shields.io/badge/jooby-quartz-brightgreen.svg)](http://jooby.org/doc/quartz) # quartz @@ -11,7 +11,7 @@ Cron triggers, job scheduling and async processing via [Quartz](http://quartz-sc org.jooby jooby-quartz - 1.5.1 + 1.6.0 ``` diff --git a/modules/jooby-quartz/pom.xml b/modules/jooby-quartz/pom.xml index 025b054f38..b2a6601337 100644 --- a/modules/jooby-quartz/pom.xml +++ b/modules/jooby-quartz/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-querydsl/README.md b/modules/jooby-querydsl/README.md index 445523414c..9f7b46024e 100644 --- a/modules/jooby-querydsl/README.md +++ b/modules/jooby-querydsl/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-querydsl/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-querydsl/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-querydsl.svg)](https://javadoc.io/doc/org.jooby/jooby-querydsl/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-querydsl/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-querydsl/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-querydsl.svg)](https://javadoc.io/doc/org.jooby/jooby-querydsl/1.6.0) [![jooby-querydsl website](https://img.shields.io/badge/jooby-querydsl-brightgreen.svg)](http://jooby.org/doc/querydsl) # queryDSL @@ -17,7 +17,7 @@ SQL abstraction provided by QueryDSL using org.jooby jooby-querydsl - 1.5.1 + 1.6.0 ``` diff --git a/modules/jooby-querydsl/pom.xml b/modules/jooby-querydsl/pom.xml index b10cd403aa..73514f575b 100644 --- a/modules/jooby-querydsl/pom.xml +++ b/modules/jooby-querydsl/pom.xml @@ -4,7 +4,7 @@ modules org.jooby - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-reactor/README.md b/modules/jooby-reactor/README.md index ca724934b0..fc4b94fbd7 100644 --- a/modules/jooby-reactor/README.md +++ b/modules/jooby-reactor/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-reactor/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-reactor/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-reactor.svg)](https://javadoc.io/doc/org.jooby/jooby-reactor/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-reactor/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-reactor/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-reactor.svg)](https://javadoc.io/doc/org.jooby/jooby-reactor/1.6.0) [![jooby-reactor website](https://img.shields.io/badge/jooby-reactor-brightgreen.svg)](http://jooby.org/doc/reactor) # reactor @@ -11,7 +11,7 @@ org.jooby jooby-reactor - 1.5.1 + 1.6.0 ``` diff --git a/modules/jooby-reactor/pom.xml b/modules/jooby-reactor/pom.xml index 23c0807702..9112e410ca 100644 --- a/modules/jooby-reactor/pom.xml +++ b/modules/jooby-reactor/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-requery/README.md b/modules/jooby-requery/README.md index 8e81e6b4b5..937f6ede2a 100644 --- a/modules/jooby-requery/README.md +++ b/modules/jooby-requery/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-requery/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-requery/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-requery.svg)](https://javadoc.io/doc/org.jooby/jooby-requery/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-requery/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-requery/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-requery.svg)](https://javadoc.io/doc/org.jooby/jooby-requery/1.6.0) [![jooby-requery website](https://img.shields.io/badge/jooby-requery-brightgreen.svg)](http://jooby.org/doc/requery) # requery @@ -15,7 +15,7 @@ Safe, clean and efficient database access via Reactive Ext org.jooby jooby-rxjava - 1.5.1 + 1.6.0 ``` diff --git a/modules/jooby-rxjava/pom.xml b/modules/jooby-rxjava/pom.xml index 1863719fc3..8e0f56940a 100644 --- a/modules/jooby-rxjava/pom.xml +++ b/modules/jooby-rxjava/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-scanner/README.md b/modules/jooby-scanner/README.md index ab5545b8fc..e902d7e798 100644 --- a/modules/jooby-scanner/README.md +++ b/modules/jooby-scanner/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-scanner/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-scanner/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-scanner.svg)](https://javadoc.io/doc/org.jooby/jooby-scanner/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-scanner/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-scanner/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-scanner.svg)](https://javadoc.io/doc/org.jooby/jooby-scanner/1.6.0) [![jooby-scanner website](https://img.shields.io/badge/jooby-scanner-brightgreen.svg)](http://jooby.org/doc/scanner) # scanner @@ -13,7 +13,7 @@ This module provides `class-path` scanning services for `MVC routes`, `services` org.jooby jooby-scanner - 1.5.1 + 1.6.0 ``` diff --git a/modules/jooby-scanner/pom.xml b/modules/jooby-scanner/pom.xml index 7580c1df33..bfa33b1427 100644 --- a/modules/jooby-scanner/pom.xml +++ b/modules/jooby-scanner/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-servlet/README.md b/modules/jooby-servlet/README.md index 4a5f0f8668..8e3ea0b9d9 100644 --- a/modules/jooby-servlet/README.md +++ b/modules/jooby-servlet/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-servlet/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-servlet/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-servlet.svg)](https://javadoc.io/doc/org.jooby/jooby-servlet/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-servlet/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-servlet/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-servlet.svg)](https://javadoc.io/doc/org.jooby/jooby-servlet/1.6.0) [![jooby-servlet website](https://img.shields.io/badge/jooby-servlet-brightgreen.svg)](http://jooby.org/doc/servlet) # servlets diff --git a/modules/jooby-servlet/pom.xml b/modules/jooby-servlet/pom.xml index 7ea7273cba..a735f9f2af 100644 --- a/modules/jooby-servlet/pom.xml +++ b/modules/jooby-servlet/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-sitemap/README.md b/modules/jooby-sitemap/README.md index 1feebf4c3a..7ea5027742 100644 --- a/modules/jooby-sitemap/README.md +++ b/modules/jooby-sitemap/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-sitemap/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-sitemap/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-sitemap.svg)](https://javadoc.io/doc/org.jooby/jooby-sitemap/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-sitemap/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-sitemap/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-sitemap.svg)](https://javadoc.io/doc/org.jooby/jooby-sitemap/1.6.0) [![jooby-sitemap website](https://img.shields.io/badge/jooby-sitemap-brightgreen.svg)](http://jooby.org/doc/sitemap) # sitemap @@ -15,7 +15,7 @@ Generate sitemap.xml files org.jooby jooby-sitemap - 1.5.1 + 1.6.0 ``` diff --git a/modules/jooby-sitemap/pom.xml b/modules/jooby-sitemap/pom.xml index cec4cd5b4a..dd8e56f10d 100644 --- a/modules/jooby-sitemap/pom.xml +++ b/modules/jooby-sitemap/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-spymemcached/README.md b/modules/jooby-spymemcached/README.md index 448d84bb65..a4102d7f87 100644 --- a/modules/jooby-spymemcached/README.md +++ b/modules/jooby-spymemcached/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-spymemcached/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-spymemcached/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-spymemcached.svg)](https://javadoc.io/doc/org.jooby/jooby-spymemcached/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-spymemcached/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-spymemcached/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-spymemcached.svg)](https://javadoc.io/doc/org.jooby/jooby-spymemcached/1.6.0) [![jooby-spymemcached website](https://img.shields.io/badge/jooby-spymemcached-brightgreen.svg)](http://jooby.org/doc/spymemcached) # spymemcached @@ -15,7 +15,7 @@ Provides memcached access via [SpyMemcached](https://github.com/dustin/java-memc org.jooby jooby-spymemcached - 1.5.1 + 1.6.0 ``` @@ -65,7 +65,7 @@ or programmatically: org.jooby jooby-spymemcached - 1.5.1 + 1.6.0 ``` diff --git a/modules/jooby-spymemcached/pom.xml b/modules/jooby-spymemcached/pom.xml index cbd9be19cb..3cde812327 100644 --- a/modules/jooby-spymemcached/pom.xml +++ b/modules/jooby-spymemcached/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-thymeleaf/README.md b/modules/jooby-thymeleaf/README.md index c6ba09c120..5e253c2acc 100644 --- a/modules/jooby-thymeleaf/README.md +++ b/modules/jooby-thymeleaf/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-thymeleaf/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-thymeleaf/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-thymeleaf.svg)](https://javadoc.io/doc/org.jooby/jooby-thymeleaf/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-thymeleaf/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-thymeleaf/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-thymeleaf.svg)](https://javadoc.io/doc/org.jooby/jooby-thymeleaf/1.6.0) [![jooby-thymeleaf website](https://img.shields.io/badge/jooby-thymeleaf-brightgreen.svg)](http://jooby.org/doc/thymeleaf) # thymeleaf @@ -11,7 +11,7 @@ org.jooby jooby-thymeleaf - 1.5.1 + 1.6.0 ``` diff --git a/modules/jooby-thymeleaf/pom.xml b/modules/jooby-thymeleaf/pom.xml index e942a4f101..9eda588038 100644 --- a/modules/jooby-thymeleaf/pom.xml +++ b/modules/jooby-thymeleaf/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-unbescape/README.md b/modules/jooby-unbescape/README.md index 84d059c9cc..05c0f506f4 100644 --- a/modules/jooby-unbescape/README.md +++ b/modules/jooby-unbescape/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-unbescape/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-unbescape/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-unbescape.svg)](https://javadoc.io/doc/org.jooby/jooby-unbescape/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-unbescape/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-unbescape/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-unbescape.svg)](https://javadoc.io/doc/org.jooby/jooby-unbescape/1.6.0) [![jooby-unbescape website](https://img.shields.io/badge/jooby-unbescape-brightgreen.svg)](http://jooby.org/doc/unbescape) # unbescape @@ -11,7 +11,7 @@ org.jooby jooby-unbescape - 1.5.1 + 1.6.0 ``` diff --git a/modules/jooby-unbescape/pom.xml b/modules/jooby-unbescape/pom.xml index 1a17c43d92..a2f5a5b6a6 100644 --- a/modules/jooby-unbescape/pom.xml +++ b/modules/jooby-unbescape/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-undertow/README.md b/modules/jooby-undertow/README.md index b93f82c9cf..5b724f32c9 100644 --- a/modules/jooby-undertow/README.md +++ b/modules/jooby-undertow/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-undertow/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-undertow/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-undertow.svg)](https://javadoc.io/doc/org.jooby/jooby-undertow/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-undertow/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-undertow/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-undertow.svg)](https://javadoc.io/doc/org.jooby/jooby-undertow/1.6.0) [![jooby-undertow website](https://img.shields.io/badge/jooby-undertow-brightgreen.svg)](http://jooby.org/doc/undertow) # undertow @@ -15,7 +15,7 @@ org.jooby jooby-undertow - 1.5.1 + 1.6.0 ``` diff --git a/modules/jooby-undertow/pom.xml b/modules/jooby-undertow/pom.xml index 5978b82b62..db48c68ff5 100644 --- a/modules/jooby-undertow/pom.xml +++ b/modules/jooby-undertow/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-whoops/README.md b/modules/jooby-whoops/README.md index 3cfc8a8643..63c3ce83c6 100644 --- a/modules/jooby-whoops/README.md +++ b/modules/jooby-whoops/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-whoops/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-whoops/1.5.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-whoops.svg)](https://javadoc.io/doc/org.jooby/jooby-whoops/1.5.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-whoops/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-whoops/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-whoops.svg)](https://javadoc.io/doc/org.jooby/jooby-whoops/1.6.0) [![jooby-whoops website](https://img.shields.io/badge/jooby-whoops-brightgreen.svg)](http://jooby.org/doc/whoops) # whoops @@ -15,7 +15,7 @@ Pretty error page that helps you debug your web application. org.jooby jooby-whoops - 1.5.1 + 1.6.0 ``` diff --git a/modules/jooby-whoops/pom.xml b/modules/jooby-whoops/pom.xml index 9eed521021..502aabeb27 100644 --- a/modules/jooby-whoops/pom.xml +++ b/modules/jooby-whoops/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/jooby-yasson/README.md b/modules/jooby-yasson/README.md new file mode 100644 index 0000000000..c0b7ba60fb --- /dev/null +++ b/modules/jooby-yasson/README.md @@ -0,0 +1,60 @@ +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-yasson/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-yasson/1.6.0) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-yasson.svg)](https://javadoc.io/doc/org.jooby/jooby-yasson/1.6.0) +[![jooby-yasson website](https://img.shields.io/badge/jooby-yasson-brightgreen.svg)](http://jooby.org/doc/yasson) +# yasson + +JSON support via [yasson](https://github.com/eclipse-ee4j/yasson) library. + +## exports + +* [json-b](http://json-b.net/users-guide.html) +* [Parser](/apidocs/org/jooby/Parser.html) +* [Renderer](/apidocs/org/jooby/Renderer.html) + +## dependency + +```xml + + org.jooby + jooby-yasson + 1.6.0 + +``` + +## usage + +```java +import org.jooby.json.Yasson; + +{ + use(new Yasson()); + + // sending + get("/my-api", req -> new MyObject()); + + // receiving a json body + post("/my-api", req -> { + MyObject obj = req.body(MyObject.class); + return obj; + }); + + // direct access to Jsonb + get("/access", req -> { + Jsonb jsonb = require(Jsonb.class); + // ... + }); +} +``` + +### configuration + +If you need a special setting or configuration for your [json-b](http://json-b.net/users-guide.html): + +```java +{ + use(new Yasson().doWith(builder -> { + builder.withFormatting(true); + // ... + }); +} +``` diff --git a/modules/jooby-yasson/pom.xml b/modules/jooby-yasson/pom.xml index ec530d6721..c9541f758a 100644 --- a/modules/jooby-yasson/pom.xml +++ b/modules/jooby-yasson/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0-SNAPSHOT + 1.6.0 4.0.0 diff --git a/modules/pom.xml b/modules/pom.xml index a64fc3f91a..b1544f0457 100644 --- a/modules/pom.xml +++ b/modules/pom.xml @@ -6,7 +6,7 @@ org.jooby jooby-project - 1.6.0-SNAPSHOT + 1.6.0 modules diff --git a/pom.xml b/pom.xml index 1cd146a955..523c3a382d 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ 4.0.0 org.jooby jooby-project - 1.6.0-SNAPSHOT + 1.6.0 pom jooby-project From b8705f8336e20e21b7d5cb54002683092eaf0443 Mon Sep 17 00:00:00 2001 From: Daniel Dias Date: Tue, 12 Feb 2019 12:27:03 -0200 Subject: [PATCH 36/93] change name --- doc/doc/parser-and-renderer/parser-and-renderer.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/doc/parser-and-renderer/parser-and-renderer.md b/doc/doc/parser-and-renderer/parser-and-renderer.md index 011c6593d7..e909fd8ab5 100644 --- a/doc/doc/parser-and-renderer/parser-and-renderer.md +++ b/doc/doc/parser-and-renderer/parser-and-renderer.md @@ -38,6 +38,6 @@ JSON support via [jackson](/doc/jackson). JSON support via [gson](/doc/gson). -## yassom +## yasson JSON support via [yasson](/doc/yasson). From a466e7b09365dfc87eeddf3561b44c3a0435b6f6 Mon Sep 17 00:00:00 2001 From: Edgar Espina Date: Sun, 17 Feb 2019 18:22:33 -0300 Subject: [PATCH 37/93] prepare for next development cycle --- jooby/pom.xml | 2 +- modules/coverage-report/pom.xml | 2 +- modules/jooby-akka/pom.xml | 2 +- modules/jooby-apitool/pom.xml | 2 +- modules/jooby-archetype/pom.xml | 2 +- modules/jooby-assets-autoprefixer/pom.xml | 2 +- modules/jooby-assets-babel/pom.xml | 2 +- modules/jooby-assets-clean-css/pom.xml | 2 +- modules/jooby-assets-closure-compiler/pom.xml | 2 +- modules/jooby-assets-csslint/pom.xml | 2 +- modules/jooby-assets-j2v8/pom.xml | 2 +- modules/jooby-assets-jscs/pom.xml | 2 +- modules/jooby-assets-jshint/pom.xml | 2 +- modules/jooby-assets-less/pom.xml | 2 +- modules/jooby-assets-less4j/pom.xml | 2 +- modules/jooby-assets-ng-annotate/pom.xml | 2 +- modules/jooby-assets-nodejs/pom.xml | 2 +- modules/jooby-assets-requirejs/pom.xml | 2 +- modules/jooby-assets-rollup/pom.xml | 2 +- modules/jooby-assets-sass/pom.xml | 2 +- modules/jooby-assets-svg-sprites/pom.xml | 2 +- modules/jooby-assets-svg-symbol/pom.xml | 2 +- modules/jooby-assets-uglify/pom.xml | 2 +- modules/jooby-assets-yui-compressor/pom.xml | 2 +- modules/jooby-assets/pom.xml | 2 +- modules/jooby-aws/pom.xml | 2 +- modules/jooby-banner/pom.xml | 2 +- modules/jooby-caffeine/pom.xml | 2 +- modules/jooby-camel/pom.xml | 2 +- modules/jooby-cassandra/pom.xml | 2 +- modules/jooby-commons-email/pom.xml | 2 +- modules/jooby-consul/pom.xml | 2 +- modules/jooby-couchbase/pom.xml | 2 +- modules/jooby-crash/pom.xml | 2 +- modules/jooby-csl/pom.xml | 2 +- modules/jooby-dist/pom.xml | 2 +- modules/jooby-ebean/pom.xml | 2 +- modules/jooby-ehcache/pom.xml | 2 +- modules/jooby-elasticsearch/pom.xml | 2 +- modules/jooby-eventbus/pom.xml | 2 +- modules/jooby-executor/pom.xml | 2 +- modules/jooby-exposed/pom.xml | 2 +- modules/jooby-filewatcher/pom.xml | 2 +- modules/jooby-flyway/pom.xml | 2 +- modules/jooby-frontend/pom.xml | 2 +- modules/jooby-ftl/pom.xml | 2 +- modules/jooby-gradle-plugin/pom.xml | 2 +- modules/jooby-gson/pom.xml | 2 +- modules/jooby-guava-cache/pom.xml | 2 +- modules/jooby-hazelcast/pom.xml | 2 +- modules/jooby-hbm/pom.xml | 2 +- modules/jooby-hbs/pom.xml | 2 +- modules/jooby-hbv/pom.xml | 2 +- modules/jooby-jackson/pom.xml | 2 +- modules/jooby-jade/pom.xml | 2 +- modules/jooby-jdbc/pom.xml | 2 +- modules/jooby-jdbi/pom.xml | 2 +- modules/jooby-jdbi3/pom.xml | 2 +- modules/jooby-jedis/pom.xml | 2 +- modules/jooby-jetty/pom.xml | 2 +- modules/jooby-jongo/pom.xml | 2 +- modules/jooby-jooq/pom.xml | 2 +- modules/jooby-lang-kotlin/pom.xml | 2 +- modules/jooby-livereload/pom.xml | 2 +- modules/jooby-maven-plugin/pom.xml | 2 +- modules/jooby-metrics/pom.xml | 2 +- modules/jooby-micrometer/pom.xml | 2 +- modules/jooby-mongodb-rx/pom.xml | 2 +- modules/jooby-mongodb/pom.xml | 2 +- modules/jooby-morphia/pom.xml | 2 +- modules/jooby-neo4j/pom.xml | 2 +- modules/jooby-netty/pom.xml | 2 +- modules/jooby-pac4j/pom.xml | 2 +- modules/jooby-pac4j2/pom.xml | 2 +- modules/jooby-pebble/pom.xml | 2 +- modules/jooby-quartz/pom.xml | 2 +- modules/jooby-querydsl/pom.xml | 2 +- modules/jooby-reactor/pom.xml | 2 +- modules/jooby-requery/pom.xml | 2 +- modules/jooby-rocker/pom.xml | 2 +- modules/jooby-run/pom.xml | 2 +- modules/jooby-rxjava-jdbc/pom.xml | 2 +- modules/jooby-rxjava/pom.xml | 2 +- modules/jooby-scanner/pom.xml | 2 +- modules/jooby-servlet/pom.xml | 2 +- modules/jooby-sitemap/pom.xml | 2 +- modules/jooby-spymemcached/pom.xml | 2 +- modules/jooby-thymeleaf/pom.xml | 2 +- modules/jooby-unbescape/pom.xml | 2 +- modules/jooby-undertow/pom.xml | 2 +- modules/jooby-whoops/pom.xml | 2 +- modules/jooby-yasson/pom.xml | 2 +- modules/pom.xml | 2 +- pom.xml | 2 +- 94 files changed, 94 insertions(+), 94 deletions(-) diff --git a/jooby/pom.xml b/jooby/pom.xml index 0343f6ed84..659700918a 100644 --- a/jooby/pom.xml +++ b/jooby/pom.xml @@ -6,7 +6,7 @@ org.jooby jooby-project - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/coverage-report/pom.xml b/modules/coverage-report/pom.xml index 41889aef3f..6e63d737bd 100644 --- a/modules/coverage-report/pom.xml +++ b/modules/coverage-report/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-akka/pom.xml b/modules/jooby-akka/pom.xml index 7df8ba2031..d30cb52af2 100644 --- a/modules/jooby-akka/pom.xml +++ b/modules/jooby-akka/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-apitool/pom.xml b/modules/jooby-apitool/pom.xml index 4d1620fa51..bfcef58d1a 100644 --- a/modules/jooby-apitool/pom.xml +++ b/modules/jooby-apitool/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-archetype/pom.xml b/modules/jooby-archetype/pom.xml index cac50188d4..dafdf9fb08 100644 --- a/modules/jooby-archetype/pom.xml +++ b/modules/jooby-archetype/pom.xml @@ -7,7 +7,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT jooby-archetype diff --git a/modules/jooby-assets-autoprefixer/pom.xml b/modules/jooby-assets-autoprefixer/pom.xml index dc42c3a2e2..2c5fa8f913 100644 --- a/modules/jooby-assets-autoprefixer/pom.xml +++ b/modules/jooby-assets-autoprefixer/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-babel/pom.xml b/modules/jooby-assets-babel/pom.xml index 973d3f0ffc..baee575330 100644 --- a/modules/jooby-assets-babel/pom.xml +++ b/modules/jooby-assets-babel/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-clean-css/pom.xml b/modules/jooby-assets-clean-css/pom.xml index 3601461e03..6f5f166019 100644 --- a/modules/jooby-assets-clean-css/pom.xml +++ b/modules/jooby-assets-clean-css/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-closure-compiler/pom.xml b/modules/jooby-assets-closure-compiler/pom.xml index 370609023a..45b38b2071 100644 --- a/modules/jooby-assets-closure-compiler/pom.xml +++ b/modules/jooby-assets-closure-compiler/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-csslint/pom.xml b/modules/jooby-assets-csslint/pom.xml index 4954129e48..c4ac1727a9 100644 --- a/modules/jooby-assets-csslint/pom.xml +++ b/modules/jooby-assets-csslint/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-j2v8/pom.xml b/modules/jooby-assets-j2v8/pom.xml index b452ab212d..a0f98857a1 100644 --- a/modules/jooby-assets-j2v8/pom.xml +++ b/modules/jooby-assets-j2v8/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-jscs/pom.xml b/modules/jooby-assets-jscs/pom.xml index 80f355fcb9..7c53a919df 100644 --- a/modules/jooby-assets-jscs/pom.xml +++ b/modules/jooby-assets-jscs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-jshint/pom.xml b/modules/jooby-assets-jshint/pom.xml index ba87ad7cb3..e448727277 100644 --- a/modules/jooby-assets-jshint/pom.xml +++ b/modules/jooby-assets-jshint/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-less/pom.xml b/modules/jooby-assets-less/pom.xml index 034c5ab150..0b5822e2ea 100644 --- a/modules/jooby-assets-less/pom.xml +++ b/modules/jooby-assets-less/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-less4j/pom.xml b/modules/jooby-assets-less4j/pom.xml index 9d8698e4c8..3cf1f3b32f 100644 --- a/modules/jooby-assets-less4j/pom.xml +++ b/modules/jooby-assets-less4j/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-ng-annotate/pom.xml b/modules/jooby-assets-ng-annotate/pom.xml index c17dfb992d..769649f547 100644 --- a/modules/jooby-assets-ng-annotate/pom.xml +++ b/modules/jooby-assets-ng-annotate/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-nodejs/pom.xml b/modules/jooby-assets-nodejs/pom.xml index ff5a9a6f61..b0c3cb533d 100644 --- a/modules/jooby-assets-nodejs/pom.xml +++ b/modules/jooby-assets-nodejs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-requirejs/pom.xml b/modules/jooby-assets-requirejs/pom.xml index ea8b4a4c16..74c17db0e8 100644 --- a/modules/jooby-assets-requirejs/pom.xml +++ b/modules/jooby-assets-requirejs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-rollup/pom.xml b/modules/jooby-assets-rollup/pom.xml index 6b3c785e7b..22b4e20951 100644 --- a/modules/jooby-assets-rollup/pom.xml +++ b/modules/jooby-assets-rollup/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-sass/pom.xml b/modules/jooby-assets-sass/pom.xml index a54802a5a3..e25d83045e 100644 --- a/modules/jooby-assets-sass/pom.xml +++ b/modules/jooby-assets-sass/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-svg-sprites/pom.xml b/modules/jooby-assets-svg-sprites/pom.xml index 5bfdce3d2d..d13d72b5e9 100644 --- a/modules/jooby-assets-svg-sprites/pom.xml +++ b/modules/jooby-assets-svg-sprites/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-svg-symbol/pom.xml b/modules/jooby-assets-svg-symbol/pom.xml index ec1affddac..f995a412c9 100644 --- a/modules/jooby-assets-svg-symbol/pom.xml +++ b/modules/jooby-assets-svg-symbol/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-uglify/pom.xml b/modules/jooby-assets-uglify/pom.xml index bad7b01764..3df4da3627 100644 --- a/modules/jooby-assets-uglify/pom.xml +++ b/modules/jooby-assets-uglify/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-yui-compressor/pom.xml b/modules/jooby-assets-yui-compressor/pom.xml index 05055d651c..8cd1bf3063 100644 --- a/modules/jooby-assets-yui-compressor/pom.xml +++ b/modules/jooby-assets-yui-compressor/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets/pom.xml b/modules/jooby-assets/pom.xml index 531e17c033..4e17cca01b 100644 --- a/modules/jooby-assets/pom.xml +++ b/modules/jooby-assets/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-aws/pom.xml b/modules/jooby-aws/pom.xml index 31b2097f7d..c7287d37c5 100644 --- a/modules/jooby-aws/pom.xml +++ b/modules/jooby-aws/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-banner/pom.xml b/modules/jooby-banner/pom.xml index e12243fac5..d0315f9d1d 100644 --- a/modules/jooby-banner/pom.xml +++ b/modules/jooby-banner/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-caffeine/pom.xml b/modules/jooby-caffeine/pom.xml index c689b73e6c..7f780f75cd 100644 --- a/modules/jooby-caffeine/pom.xml +++ b/modules/jooby-caffeine/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-camel/pom.xml b/modules/jooby-camel/pom.xml index 874b3c7552..2c16d9136a 100644 --- a/modules/jooby-camel/pom.xml +++ b/modules/jooby-camel/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-cassandra/pom.xml b/modules/jooby-cassandra/pom.xml index cb8b31ba08..2c0c73cab5 100644 --- a/modules/jooby-cassandra/pom.xml +++ b/modules/jooby-cassandra/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-commons-email/pom.xml b/modules/jooby-commons-email/pom.xml index 2da198a218..07c8223c4f 100644 --- a/modules/jooby-commons-email/pom.xml +++ b/modules/jooby-commons-email/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-consul/pom.xml b/modules/jooby-consul/pom.xml index d8331a12e7..a8d48054af 100644 --- a/modules/jooby-consul/pom.xml +++ b/modules/jooby-consul/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-couchbase/pom.xml b/modules/jooby-couchbase/pom.xml index a63d1cf272..b51610c83f 100644 --- a/modules/jooby-couchbase/pom.xml +++ b/modules/jooby-couchbase/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-crash/pom.xml b/modules/jooby-crash/pom.xml index 537cfdc235..a562fb8ca0 100644 --- a/modules/jooby-crash/pom.xml +++ b/modules/jooby-crash/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-csl/pom.xml b/modules/jooby-csl/pom.xml index d61222b06b..65fd1d8922 100644 --- a/modules/jooby-csl/pom.xml +++ b/modules/jooby-csl/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-dist/pom.xml b/modules/jooby-dist/pom.xml index f74115d47c..4f075bdec7 100644 --- a/modules/jooby-dist/pom.xml +++ b/modules/jooby-dist/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-ebean/pom.xml b/modules/jooby-ebean/pom.xml index fd69fbad29..c072dddde1 100644 --- a/modules/jooby-ebean/pom.xml +++ b/modules/jooby-ebean/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-ehcache/pom.xml b/modules/jooby-ehcache/pom.xml index 8b30455b74..2156dce2a3 100644 --- a/modules/jooby-ehcache/pom.xml +++ b/modules/jooby-ehcache/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-elasticsearch/pom.xml b/modules/jooby-elasticsearch/pom.xml index f5d9d63b48..dcba782f75 100644 --- a/modules/jooby-elasticsearch/pom.xml +++ b/modules/jooby-elasticsearch/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-eventbus/pom.xml b/modules/jooby-eventbus/pom.xml index d7138339b6..bb5514f72a 100644 --- a/modules/jooby-eventbus/pom.xml +++ b/modules/jooby-eventbus/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-executor/pom.xml b/modules/jooby-executor/pom.xml index 4dd035485c..4da4e31185 100644 --- a/modules/jooby-executor/pom.xml +++ b/modules/jooby-executor/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-exposed/pom.xml b/modules/jooby-exposed/pom.xml index 39ab860ee0..98b03a674c 100644 --- a/modules/jooby-exposed/pom.xml +++ b/modules/jooby-exposed/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-filewatcher/pom.xml b/modules/jooby-filewatcher/pom.xml index 0720e1f9e6..20d2c867e4 100644 --- a/modules/jooby-filewatcher/pom.xml +++ b/modules/jooby-filewatcher/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-flyway/pom.xml b/modules/jooby-flyway/pom.xml index e98a120884..6b1ebf2933 100644 --- a/modules/jooby-flyway/pom.xml +++ b/modules/jooby-flyway/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-frontend/pom.xml b/modules/jooby-frontend/pom.xml index 862237e729..44598870ae 100644 --- a/modules/jooby-frontend/pom.xml +++ b/modules/jooby-frontend/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-ftl/pom.xml b/modules/jooby-ftl/pom.xml index 06b663cdd8..a5edd4689b 100644 --- a/modules/jooby-ftl/pom.xml +++ b/modules/jooby-ftl/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-gradle-plugin/pom.xml b/modules/jooby-gradle-plugin/pom.xml index b0e7df8783..11cebe4fbb 100644 --- a/modules/jooby-gradle-plugin/pom.xml +++ b/modules/jooby-gradle-plugin/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-gson/pom.xml b/modules/jooby-gson/pom.xml index fba788a84d..e10dc7f731 100644 --- a/modules/jooby-gson/pom.xml +++ b/modules/jooby-gson/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-guava-cache/pom.xml b/modules/jooby-guava-cache/pom.xml index a5734d5e6b..141d158eac 100644 --- a/modules/jooby-guava-cache/pom.xml +++ b/modules/jooby-guava-cache/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-hazelcast/pom.xml b/modules/jooby-hazelcast/pom.xml index 1886140eb5..3484f23288 100644 --- a/modules/jooby-hazelcast/pom.xml +++ b/modules/jooby-hazelcast/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-hbm/pom.xml b/modules/jooby-hbm/pom.xml index ce3b0d2857..1f4515a97b 100644 --- a/modules/jooby-hbm/pom.xml +++ b/modules/jooby-hbm/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-hbs/pom.xml b/modules/jooby-hbs/pom.xml index d111bb972e..f6fe581234 100644 --- a/modules/jooby-hbs/pom.xml +++ b/modules/jooby-hbs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-hbv/pom.xml b/modules/jooby-hbv/pom.xml index d3402b98ed..3e055fbbce 100644 --- a/modules/jooby-hbv/pom.xml +++ b/modules/jooby-hbv/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-jackson/pom.xml b/modules/jooby-jackson/pom.xml index af39c8dc49..c3ba8630ac 100644 --- a/modules/jooby-jackson/pom.xml +++ b/modules/jooby-jackson/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-jade/pom.xml b/modules/jooby-jade/pom.xml index a1322bd57e..430ab0947c 100644 --- a/modules/jooby-jade/pom.xml +++ b/modules/jooby-jade/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-jdbc/pom.xml b/modules/jooby-jdbc/pom.xml index 16ddcdf802..750cbac7e4 100644 --- a/modules/jooby-jdbc/pom.xml +++ b/modules/jooby-jdbc/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-jdbi/pom.xml b/modules/jooby-jdbi/pom.xml index 68ac046a0d..340246de18 100644 --- a/modules/jooby-jdbi/pom.xml +++ b/modules/jooby-jdbi/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-jdbi3/pom.xml b/modules/jooby-jdbi3/pom.xml index ebcdd3747d..db7f504d1b 100644 --- a/modules/jooby-jdbi3/pom.xml +++ b/modules/jooby-jdbi3/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-jedis/pom.xml b/modules/jooby-jedis/pom.xml index 9cbbacc262..7e9a386e79 100644 --- a/modules/jooby-jedis/pom.xml +++ b/modules/jooby-jedis/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-jetty/pom.xml b/modules/jooby-jetty/pom.xml index 49e4c4513d..65b48aefb8 100644 --- a/modules/jooby-jetty/pom.xml +++ b/modules/jooby-jetty/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-jongo/pom.xml b/modules/jooby-jongo/pom.xml index 8e5d9bd68b..7b4ae3b129 100644 --- a/modules/jooby-jongo/pom.xml +++ b/modules/jooby-jongo/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-jooq/pom.xml b/modules/jooby-jooq/pom.xml index 9ae95415c3..c337a0b6bb 100644 --- a/modules/jooby-jooq/pom.xml +++ b/modules/jooby-jooq/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-lang-kotlin/pom.xml b/modules/jooby-lang-kotlin/pom.xml index 44ba1b0eef..4ba15239a6 100644 --- a/modules/jooby-lang-kotlin/pom.xml +++ b/modules/jooby-lang-kotlin/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-livereload/pom.xml b/modules/jooby-livereload/pom.xml index 13abac8f97..5d48a01dd0 100644 --- a/modules/jooby-livereload/pom.xml +++ b/modules/jooby-livereload/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT jooby-livereload jooby-livereload diff --git a/modules/jooby-maven-plugin/pom.xml b/modules/jooby-maven-plugin/pom.xml index 4347842133..a9588ecff5 100644 --- a/modules/jooby-maven-plugin/pom.xml +++ b/modules/jooby-maven-plugin/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-metrics/pom.xml b/modules/jooby-metrics/pom.xml index 658c7dd449..72fa09d87e 100644 --- a/modules/jooby-metrics/pom.xml +++ b/modules/jooby-metrics/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-micrometer/pom.xml b/modules/jooby-micrometer/pom.xml index 463d6cd250..49a74e8e83 100644 --- a/modules/jooby-micrometer/pom.xml +++ b/modules/jooby-micrometer/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-mongodb-rx/pom.xml b/modules/jooby-mongodb-rx/pom.xml index ae25c8d4e0..06dce771fc 100644 --- a/modules/jooby-mongodb-rx/pom.xml +++ b/modules/jooby-mongodb-rx/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-mongodb/pom.xml b/modules/jooby-mongodb/pom.xml index 2c3448ccaa..31192c3966 100644 --- a/modules/jooby-mongodb/pom.xml +++ b/modules/jooby-mongodb/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-morphia/pom.xml b/modules/jooby-morphia/pom.xml index c188b6e325..62d5d08482 100644 --- a/modules/jooby-morphia/pom.xml +++ b/modules/jooby-morphia/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-neo4j/pom.xml b/modules/jooby-neo4j/pom.xml index fc04c49a74..b3972237b4 100644 --- a/modules/jooby-neo4j/pom.xml +++ b/modules/jooby-neo4j/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-netty/pom.xml b/modules/jooby-netty/pom.xml index e0b996e472..ffa43027b4 100644 --- a/modules/jooby-netty/pom.xml +++ b/modules/jooby-netty/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-pac4j/pom.xml b/modules/jooby-pac4j/pom.xml index f8776bd333..d7d3c39242 100644 --- a/modules/jooby-pac4j/pom.xml +++ b/modules/jooby-pac4j/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-pac4j2/pom.xml b/modules/jooby-pac4j2/pom.xml index 9df3daaca3..6dc4f8c90a 100644 --- a/modules/jooby-pac4j2/pom.xml +++ b/modules/jooby-pac4j2/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-pebble/pom.xml b/modules/jooby-pebble/pom.xml index 42cea3a1c1..7e5b3ca089 100644 --- a/modules/jooby-pebble/pom.xml +++ b/modules/jooby-pebble/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-quartz/pom.xml b/modules/jooby-quartz/pom.xml index b2a6601337..db1341b219 100644 --- a/modules/jooby-quartz/pom.xml +++ b/modules/jooby-quartz/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-querydsl/pom.xml b/modules/jooby-querydsl/pom.xml index 73514f575b..88cf981c71 100644 --- a/modules/jooby-querydsl/pom.xml +++ b/modules/jooby-querydsl/pom.xml @@ -4,7 +4,7 @@ modules org.jooby - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-reactor/pom.xml b/modules/jooby-reactor/pom.xml index 9112e410ca..506aef0260 100644 --- a/modules/jooby-reactor/pom.xml +++ b/modules/jooby-reactor/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-requery/pom.xml b/modules/jooby-requery/pom.xml index 45f0a02cf9..84e68aa37a 100644 --- a/modules/jooby-requery/pom.xml +++ b/modules/jooby-requery/pom.xml @@ -4,7 +4,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT jooby-requery requery module diff --git a/modules/jooby-rocker/pom.xml b/modules/jooby-rocker/pom.xml index 7de1e59eb3..42275e2303 100644 --- a/modules/jooby-rocker/pom.xml +++ b/modules/jooby-rocker/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT jooby-rocker jooby-rocker diff --git a/modules/jooby-run/pom.xml b/modules/jooby-run/pom.xml index 6c3680e93e..a9813f425f 100644 --- a/modules/jooby-run/pom.xml +++ b/modules/jooby-run/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-rxjava-jdbc/pom.xml b/modules/jooby-rxjava-jdbc/pom.xml index 695264cd67..e884238581 100644 --- a/modules/jooby-rxjava-jdbc/pom.xml +++ b/modules/jooby-rxjava-jdbc/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-rxjava/pom.xml b/modules/jooby-rxjava/pom.xml index 8e0f56940a..6bd1078fb3 100644 --- a/modules/jooby-rxjava/pom.xml +++ b/modules/jooby-rxjava/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-scanner/pom.xml b/modules/jooby-scanner/pom.xml index bfa33b1427..1d94c5fa11 100644 --- a/modules/jooby-scanner/pom.xml +++ b/modules/jooby-scanner/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-servlet/pom.xml b/modules/jooby-servlet/pom.xml index a735f9f2af..60624b3e99 100644 --- a/modules/jooby-servlet/pom.xml +++ b/modules/jooby-servlet/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-sitemap/pom.xml b/modules/jooby-sitemap/pom.xml index dd8e56f10d..554019c3d6 100644 --- a/modules/jooby-sitemap/pom.xml +++ b/modules/jooby-sitemap/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-spymemcached/pom.xml b/modules/jooby-spymemcached/pom.xml index 3cde812327..9e261927a2 100644 --- a/modules/jooby-spymemcached/pom.xml +++ b/modules/jooby-spymemcached/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-thymeleaf/pom.xml b/modules/jooby-thymeleaf/pom.xml index 9eda588038..650445d00d 100644 --- a/modules/jooby-thymeleaf/pom.xml +++ b/modules/jooby-thymeleaf/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-unbescape/pom.xml b/modules/jooby-unbescape/pom.xml index a2f5a5b6a6..12c09150a0 100644 --- a/modules/jooby-unbescape/pom.xml +++ b/modules/jooby-unbescape/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-undertow/pom.xml b/modules/jooby-undertow/pom.xml index db48c68ff5..b8775f6d58 100644 --- a/modules/jooby-undertow/pom.xml +++ b/modules/jooby-undertow/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-whoops/pom.xml b/modules/jooby-whoops/pom.xml index 502aabeb27..03ee674847 100644 --- a/modules/jooby-whoops/pom.xml +++ b/modules/jooby-whoops/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/jooby-yasson/pom.xml b/modules/jooby-yasson/pom.xml index c9541f758a..9556f46257 100644 --- a/modules/jooby-yasson/pom.xml +++ b/modules/jooby-yasson/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.0 + 1.6.1-SNAPSHOT 4.0.0 diff --git a/modules/pom.xml b/modules/pom.xml index b1544f0457..d501b4eb02 100644 --- a/modules/pom.xml +++ b/modules/pom.xml @@ -6,7 +6,7 @@ org.jooby jooby-project - 1.6.0 + 1.6.1-SNAPSHOT modules diff --git a/pom.xml b/pom.xml index 523c3a382d..713ba78aeb 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ 4.0.0 org.jooby jooby-project - 1.6.0 + 1.6.1-SNAPSHOT pom jooby-project From 878a88b0c7d2945bb70abf9c3974e29ba31461f8 Mon Sep 17 00:00:00 2001 From: Istvan Meszaros Date: Thu, 21 Mar 2019 15:34:09 +0100 Subject: [PATCH 38/93] Bump hibernate version number, and add CDI Api explicitly. See https://hibernate.atlassian.net/browse/HHH-11370 --- modules/jooby-hbm/pom.xml | 8 +++++++- pom.xml | 12 ++++++++++-- 2 files changed, 17 insertions(+), 3 deletions(-) diff --git a/modules/jooby-hbm/pom.xml b/modules/jooby-hbm/pom.xml index 1f4515a97b..c33314d710 100644 --- a/modules/jooby-hbm/pom.xml +++ b/modules/jooby-hbm/pom.xml @@ -37,10 +37,16 @@ ${project.version} + + + javax.enterprise + cdi-api + + org.hibernate - hibernate-entitymanager + hibernate-core diff --git a/pom.xml b/pom.xml index 713ba78aeb..84d4c83627 100644 --- a/pom.xml +++ b/pom.xml @@ -1118,10 +1118,17 @@ ${elasticsearch} + + + javax.enterprise + cdi-api + ${cdi-api.version} + + org.hibernate - hibernate-entitymanager + hibernate-core ${hibernate.version} @@ -3150,6 +3157,7 @@ org.eclipse.jdt.apt.processorOptions/defaultOverwrite=true 2.0.20.Final 2.9.2 2.6.2 + 1.1 2.18.3 3.2.6 v20180610 @@ -3182,7 +3190,7 @@ org.eclipse.jdt.apt.processorOptions/defaultOverwrite=true 4.1.0 3.11 5.1.3.Final - 5.2.1.Final + 5.3.9.Final 3.2.0 4.5.5 4.6.0 From 137e99f0b150cdbd64c58f849409e804045002c4 Mon Sep 17 00:00:00 2001 From: Istvan Meszaros Date: Thu, 21 Mar 2019 15:51:19 +0100 Subject: [PATCH 39/93] JpaIntegrator was removed in Hibernate 5.3.x; See https://hibernate.atlassian.net/browse/HHH-11264 --- modules/jooby-hbm/src/main/java/org/jooby/hbm/Hbm.java | 2 -- .../jooby-hbm/src/test/java/org/jooby/hbm/HbmTest.java | 8 +------- 2 files changed, 1 insertion(+), 9 deletions(-) diff --git a/modules/jooby-hbm/src/main/java/org/jooby/hbm/Hbm.java b/modules/jooby-hbm/src/main/java/org/jooby/hbm/Hbm.java index d97f43a045..f003ffd353 100644 --- a/modules/jooby-hbm/src/main/java/org/jooby/hbm/Hbm.java +++ b/modules/jooby-hbm/src/main/java/org/jooby/hbm/Hbm.java @@ -222,7 +222,6 @@ import org.hibernate.engine.spi.SessionFactoryImplementor; import org.hibernate.event.service.spi.EventListenerRegistry; import org.hibernate.event.spi.EventType; -import org.hibernate.jpa.event.spi.JpaIntegrator; import org.hibernate.service.spi.ServiceRegistryImplementor; import org.jooby.Env; import org.jooby.Env.ServiceKey; @@ -752,7 +751,6 @@ public void configure(final Env env, final Config conf, final Binder binder) { .orElseThrow(() -> new NoSuchElementException("DataSource missing: " + dskey)); BootstrapServiceRegistryBuilder bsrb = new BootstrapServiceRegistryBuilder(); - bsrb.applyIntegrator(new JpaIntegrator()); this.bsrb.accept(bsrb, conf); diff --git a/modules/jooby-hbm/src/test/java/org/jooby/hbm/HbmTest.java b/modules/jooby-hbm/src/test/java/org/jooby/hbm/HbmTest.java index ddc4f4c5ca..54de0aab2f 100644 --- a/modules/jooby-hbm/src/test/java/org/jooby/hbm/HbmTest.java +++ b/modules/jooby-hbm/src/test/java/org/jooby/hbm/HbmTest.java @@ -32,7 +32,6 @@ import org.hibernate.event.spi.EventType; import org.hibernate.event.spi.PostLoadEventListener; import org.hibernate.integrator.spi.Integrator; -import org.hibernate.jpa.event.spi.JpaIntegrator; import org.hibernate.service.spi.ServiceRegistryImplementor; import org.jooby.Env; import org.jooby.Env.ServiceKey; @@ -67,7 +66,7 @@ import java.util.stream.Collectors; @RunWith(PowerMockRunner.class) -@PrepareForTest({Hbm.class, BootstrapServiceRegistryBuilder.class, JpaIntegrator.class, +@PrepareForTest({Hbm.class, BootstrapServiceRegistryBuilder.class, MetadataSources.class, CompletableFuture.class, GuiceBeanManager.class, SessionProvider.class, OpenSessionInView.class}) public class HbmTest { @@ -77,11 +76,6 @@ public class HbmTest { .build(); unit.registerMock(BootstrapServiceRegistryBuilder.class, bsrb); - JpaIntegrator jpa = unit.constructor(JpaIntegrator.class) - .build(); - - expect(bsrb.applyIntegrator(jpa)).andReturn(bsrb); - BootstrapServiceRegistry bsr = unit.mock(BootstrapServiceRegistry.class); unit.registerMock(BootstrapServiceRegistry.class, bsr); From 69f2b8315c0fdcf71fe1caee4434ee117cec1df6 Mon Sep 17 00:00:00 2001 From: Istvan Meszaros Date: Fri, 22 Mar 2019 11:11:38 +0100 Subject: [PATCH 40/93] BeanManager must be registered early at bootstrap: https://docs.jboss.org/hibernate/orm/5.3/javadocs/org/hibernate/cfg/AvailableSettings.html#CDI_BEAN_MANAGER http://in.relation.to/2019/01/23/testing-cdi-beans-and-persistence-layer-under-java-se/ --- .../jooby-hbm/src/main/java/org/jooby/hbm/Hbm.java | 8 ++++---- .../src/test/java/org/jooby/hbm/HbmTest.java | 11 +++++++---- 2 files changed, 11 insertions(+), 8 deletions(-) diff --git a/modules/jooby-hbm/src/main/java/org/jooby/hbm/Hbm.java b/modules/jooby-hbm/src/main/java/org/jooby/hbm/Hbm.java index f003ffd353..ab1d21063b 100644 --- a/modules/jooby-hbm/src/main/java/org/jooby/hbm/Hbm.java +++ b/modules/jooby-hbm/src/main/java/org/jooby/hbm/Hbm.java @@ -765,7 +765,10 @@ public void configure(final Env env, final Config conf, final Binder binder) { this.ssrb.accept(ssrb, conf); ssrb.applySetting(AvailableSettings.DATASOURCE, ds); - ssrb.applySetting(org.hibernate.jpa.AvailableSettings.DELAY_CDI_ACCESS, true); + ssrb.applySetting(org.hibernate.cfg.AvailableSettings.DELAY_CDI_ACCESS, true); + + CompletableFuture registry = new CompletableFuture<>(); + ssrb.applySetting(org.hibernate.cfg.AvailableSettings.CDI_BEAN_MANAGER, GuiceBeanManager.beanManager(registry)); StandardServiceRegistry serviceRegistry = ssrb.build(); @@ -788,9 +791,6 @@ public void configure(final Env env, final Config conf, final Binder binder) { this.sfb.accept(sfb, conf); sfb.applyName(name); - CompletableFuture registry = new CompletableFuture<>(); - sfb.applyBeanManager(GuiceBeanManager.beanManager(registry)); - SessionFactory sessionFactory = sfb.build(); this.sf.accept(sessionFactory, conf); diff --git a/modules/jooby-hbm/src/test/java/org/jooby/hbm/HbmTest.java b/modules/jooby-hbm/src/test/java/org/jooby/hbm/HbmTest.java index 54de0aab2f..6879ca5104 100644 --- a/modules/jooby-hbm/src/test/java/org/jooby/hbm/HbmTest.java +++ b/modules/jooby-hbm/src/test/java/org/jooby/hbm/HbmTest.java @@ -912,13 +912,18 @@ private Block beanManager() { return unit -> { unit.mockStatic(GuiceBeanManager.class); + StandardServiceRegistryBuilder ssrb = unit.get(StandardServiceRegistryBuilder.class); + + expect(ssrb.applySetting(org.hibernate.cfg.AvailableSettings.DELAY_CDI_ACCESS, true)) + .andReturn(ssrb); + BeanManager bm = unit.mock(BeanManager.class); unit.registerMock(BeanManager.class, bm); expect(GuiceBeanManager.beanManager(unit.capture(CompletableFuture.class))).andReturn(bm); - SessionFactoryBuilder sfb = unit.get(SessionFactoryBuilder.class); - expect(sfb.applyBeanManager(bm)).andReturn(sfb); + expect(ssrb.applySetting(org.hibernate.cfg.AvailableSettings.CDI_BEAN_MANAGER, bm)) + .andReturn(ssrb); }; } @@ -1002,8 +1007,6 @@ private Block applySettins(final Map settings) { return unit -> { StandardServiceRegistryBuilder ssrb = unit.get(StandardServiceRegistryBuilder.class); expect(ssrb.applySettings(settings)).andReturn(ssrb); - expect(ssrb.applySetting(org.hibernate.jpa.AvailableSettings.DELAY_CDI_ACCESS, true)) - .andReturn(ssrb); }; } From d519c0c0011e3841391a1c08c4f3eb6ae0514971 Mon Sep 17 00:00:00 2001 From: Andrei Hurynovich Date: Tue, 26 Mar 2019 19:05:40 -0500 Subject: [PATCH 41/93] #1306 Websocket: Fragmented Text Frames are not reassembled - partial data passed to user code --- .../jooby/internal/netty/NettyWebSocket.java | 50 ++++++++++++++++--- 1 file changed, 42 insertions(+), 8 deletions(-) diff --git a/modules/jooby-netty/src/main/java/org/jooby/internal/netty/NettyWebSocket.java b/modules/jooby-netty/src/main/java/org/jooby/internal/netty/NettyWebSocket.java index c2c4b6cbff..070ede05cb 100644 --- a/modules/jooby-netty/src/main/java/org/jooby/internal/netty/NettyWebSocket.java +++ b/modules/jooby-netty/src/main/java/org/jooby/internal/netty/NettyWebSocket.java @@ -208,11 +208,13 @@ import java.io.IOException; import java.nio.ByteBuffer; +import java.nio.charset.StandardCharsets; import java.util.Optional; import java.util.concurrent.CountDownLatch; import java.util.function.BiConsumer; import java.util.function.Consumer; +import io.netty.handler.codec.http.websocketx.*; import org.jooby.WebSocket; import org.jooby.WebSocket.OnError; import org.jooby.WebSocket.SuccessCallback; @@ -224,10 +226,6 @@ import io.netty.buffer.Unpooled; import io.netty.channel.ChannelConfig; import io.netty.channel.ChannelHandlerContext; -import io.netty.handler.codec.http.websocketx.BinaryWebSocketFrame; -import io.netty.handler.codec.http.websocketx.CloseWebSocketFrame; -import io.netty.handler.codec.http.websocketx.TextWebSocketFrame; -import io.netty.handler.codec.http.websocketx.WebSocketServerHandshaker; import io.netty.util.Attribute; import io.netty.util.AttributeKey; import io.netty.util.concurrent.Future; @@ -259,6 +257,10 @@ public class NettyWebSocket implements NativeWebSocket { private final CountDownLatch ready = new CountDownLatch(1); + private ByteBuf buffer = null; + + private boolean bufferIsText = false; + public NettyWebSocket(final ChannelHandlerContext ctx, final WebSocketServerHandshaker handshaker, final Consumer handshake) { this.ctx = ctx; @@ -369,10 +371,8 @@ public void hankshake() { public void handle(final Object msg) { ready(); - if (msg instanceof TextWebSocketFrame) { - onTextCallback.accept(((TextWebSocketFrame) msg).text()); - } else if (msg instanceof BinaryWebSocketFrame) { - onBinaryCallback.accept(((BinaryWebSocketFrame) msg).content().nioBuffer()); + if (msg instanceof TextWebSocketFrame || msg instanceof BinaryWebSocketFrame || msg instanceof ContinuationWebSocketFrame){ + handleWebsocketMessage((WebSocketFrame) msg); } else if (msg instanceof CloseWebSocketFrame) { CloseWebSocketFrame closeFrame = ((CloseWebSocketFrame) msg).retain(); int statusCode = closeFrame.statusCode(); @@ -384,6 +384,40 @@ public void handle(final Object msg) { } } + private void handleWebsocketMessage(WebSocketFrame webSocketMessage) { + if (!webSocketMessage.isFinalFragment()) { + if (this.buffer == null) { + if (webSocketMessage instanceof ContinuationWebSocketFrame){ + throw new IllegalStateException("Received ContinuationWebSocketFrame as a first frame of a message."); + } + this.buffer = Unpooled.copiedBuffer(webSocketMessage.content()); + this.bufferIsText = webSocketMessage instanceof TextWebSocketFrame; + } else { + this.buffer.writeBytes(webSocketMessage.content()); + } + } else { + if (this.buffer != null) { + this.buffer.writeBytes(webSocketMessage.content()); + try{ + if (this.bufferIsText) { + onTextCallback.accept(this.buffer.toString(StandardCharsets.UTF_8)); + } else { + onBinaryCallback.accept(this.buffer.nioBuffer()); + } + } finally { + this.buffer = null; + } + } else { + // shortcut to avoid allocating unnecessary copiedBuffers + if (webSocketMessage instanceof TextWebSocketFrame) { + onTextCallback.accept(((TextWebSocketFrame) webSocketMessage).text()); + } else if (webSocketMessage instanceof BinaryWebSocketFrame) { + onBinaryCallback.accept(webSocketMessage.content().nioBuffer()); + } + } + } + } + /** * Make sure hankshake/connect is set. */ From 473221c844a624c541b93a3ae433e7976cdb1739 Mon Sep 17 00:00:00 2001 From: Andrei Hurynovich Date: Wed, 27 Mar 2019 19:08:49 -0500 Subject: [PATCH 42/93] Fixed tests --- .../test/java/org/jooby/internal/netty/NettyWebSocketTest.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/jooby-netty/src/test/java/org/jooby/internal/netty/NettyWebSocketTest.java b/modules/jooby-netty/src/test/java/org/jooby/internal/netty/NettyWebSocketTest.java index 8cbc4f1d10..dbd5a05df0 100644 --- a/modules/jooby-netty/src/test/java/org/jooby/internal/netty/NettyWebSocketTest.java +++ b/modules/jooby-netty/src/test/java/org/jooby/internal/netty/NettyWebSocketTest.java @@ -486,6 +486,7 @@ public void handleTextFrame() throws Exception { ready.await(); TextWebSocketFrame frame = unit.get(TextWebSocketFrame.class); + expect(frame.isFinalFragment()).andReturn(true); expect(frame.text()).andReturn("text"); Consumer callback = unit.get(Consumer.class); @@ -517,6 +518,7 @@ public void handleBinaryFrame() throws Exception { expect(buff.nioBuffer()).andReturn(nioBuff); BinaryWebSocketFrame frame = unit.get(BinaryWebSocketFrame.class); + expect(frame.isFinalFragment()).andReturn(true); expect(frame.content()).andReturn(buff); Consumer callback = unit.get(Consumer.class); From cfa09d683ada31297ae3bc7127df6134471e0e34 Mon Sep 17 00:00:00 2001 From: Mustafa Motiwala Date: Fri, 5 Apr 2019 13:59:11 +0800 Subject: [PATCH 43/93] Refactored request handler to throw a better exception --- .../internal/undertow/UndertowRequest.java | 38 ++++++++----------- 1 file changed, 16 insertions(+), 22 deletions(-) diff --git a/modules/jooby-undertow/src/main/java/org/jooby/internal/undertow/UndertowRequest.java b/modules/jooby-undertow/src/main/java/org/jooby/internal/undertow/UndertowRequest.java index 86f4262131..2f86d06b2f 100644 --- a/modules/jooby-undertow/src/main/java/org/jooby/internal/undertow/UndertowRequest.java +++ b/modules/jooby-undertow/src/main/java/org/jooby/internal/undertow/UndertowRequest.java @@ -215,7 +215,7 @@ import java.util.concurrent.Executor; import java.util.stream.Collectors; -import io.undertow.server.handlers.form.FormDataParser; +import io.undertow.server.handlers.form.*; import org.jooby.Cookie; import org.jooby.MediaType; import org.jooby.Router; @@ -233,10 +233,7 @@ import io.undertow.server.BlockingHttpExchange; import io.undertow.server.HttpServerExchange; -import io.undertow.server.handlers.form.FormData; import io.undertow.server.handlers.form.FormData.FormValue; -import io.undertow.server.handlers.form.FormEncodedDataDefinition; -import io.undertow.server.handlers.form.MultiPartParserDefinition; import io.undertow.util.AttachmentKey; import io.undertow.util.HeaderValues; import io.undertow.util.HttpString; @@ -410,25 +407,22 @@ private FormData parseForm() { try { String tmpdir = conf.getString("application.tmpdir"); String charset = conf.getString("application.charset"); - String value = exchange.getRequestHeaders().getFirst("Content-Type"); - if (value != null) { - MediaType type = MediaType.valueOf(value); - if (MediaType.form.name().equals(type.name())) { - blocking.get(); - form = new FormEncodedDataDefinition() - .setDefaultEncoding(charset) - .create(exchange) - .parseBlocking(); - } else if (MediaType.multipart.name().equals(type.name())) { - blocking.get(); - form = new MultiPartParserDefinition() + + FormEncodedDataDefinition encodedParser = new FormEncodedDataDefinition().setDefaultEncoding(charset); + MultiPartParserDefinition multiPartParser = new MultiPartParserDefinition() .setTempFileLocation(new File(tmpdir).toPath()) - .setDefaultEncoding(charset) - .create(exchange) - .parseBlocking(); - } - } - } catch (IOException x) { + .setDefaultEncoding(charset); + blocking.get(); + FormDataParser parser = FormParserFactory + .builder(false) + .addParser(encodedParser) + .addParser(multiPartParser) + .build() + .createParser(exchange); + + form = parser != null ? parser.parseBlocking() : NO_FORM; + } catch (IOException iox) { + throw new IllegalArgumentException("Bad Request...", iox); } } return form; From 0eed792d07f4d6fbfb50b8bf649b2c0af9667a0f Mon Sep 17 00:00:00 2001 From: Mustafa Motiwala Date: Fri, 5 Apr 2019 23:21:21 +0800 Subject: [PATCH 44/93] Added support to extract all files/uploads on the request --- jooby/src/main/java/org/jooby/Request.java | 18 +++++++++- .../java/org/jooby/internal/RequestImpl.java | 36 +++++++------------ .../java/org/jooby/spi/NativeRequest.java | 8 +++++ .../src/test/java/org/jooby/RequestTest.java | 7 ++++ .../jooby/internal/netty/NettyRequest.java | 6 ++++ .../jooby/servlet/ServletServletRequest.java | 14 ++++++++ .../internal/undertow/UndertowRequest.java | 21 ++++++++--- 7 files changed, 81 insertions(+), 29 deletions(-) diff --git a/jooby/src/main/java/org/jooby/Request.java b/jooby/src/main/java/org/jooby/Request.java index 7232bb2521..7d166f8686 100644 --- a/jooby/src/main/java/org/jooby/Request.java +++ b/jooby/src/main/java/org/jooby/Request.java @@ -440,7 +440,13 @@ public List files(final String name) throws IOException { return req.files(name); } - @Override + @Nonnull + @Override + public List files() throws IOException { + return req.files(); + } + + @Override public Mutant header(final String name) { return req.header(name); } @@ -1085,6 +1091,16 @@ default Optional ifFile(final String name) throws IOException { @Nonnull List files(final String name) throws IOException; + /** + * Get a list of files {@link Upload} that were uploaded in the request. The request must be a POST with + * multipart/form-data content-type. + * + * @return A list of {@link Upload}. + * @throws IOException + */ + @Nonnull + List files() throws IOException; + /** * Get a HTTP header. * diff --git a/jooby/src/main/java/org/jooby/internal/RequestImpl.java b/jooby/src/main/java/org/jooby/internal/RequestImpl.java index c501b7e15f..4a4ed35425 100644 --- a/jooby/src/main/java/org/jooby/internal/RequestImpl.java +++ b/jooby/src/main/java/org/jooby/internal/RequestImpl.java @@ -207,19 +207,7 @@ import com.google.inject.Injector; import com.google.inject.Key; import com.typesafe.config.Config; -import static java.util.Objects.requireNonNull; -import org.jooby.Cookie; -import org.jooby.Env; -import org.jooby.Err; -import org.jooby.MediaType; -import org.jooby.Mutant; -import org.jooby.Parser; -import org.jooby.Request; -import org.jooby.Response; -import org.jooby.Route; -import org.jooby.Session; -import org.jooby.Status; -import org.jooby.Upload; +import org.jooby.*; import org.jooby.funzy.Try; import org.jooby.internal.parser.ParserExecutor; import org.jooby.spi.NativeRequest; @@ -228,20 +216,15 @@ import java.io.File; import java.io.IOException; import java.nio.charset.Charset; -import java.util.ArrayList; -import java.util.Collections; -import java.util.HashMap; -import java.util.LinkedHashMap; -import java.util.List; -import java.util.Locale; +import java.util.*; import java.util.Locale.LanguageRange; -import java.util.Map; -import java.util.Optional; import java.util.function.BiFunction; import java.util.function.Function; import java.util.function.Supplier; import java.util.stream.Collectors; +import static java.util.Objects.requireNonNull; + public class RequestImpl implements Request { private final Map params = new HashMap<>(); @@ -399,6 +382,13 @@ public List files(final String name) throws IOException { return uploads; } + public List files() throws IOException { + return req.files() + .stream() + .map(upload -> new UploadImpl(injector, upload)) + .collect(Collectors.toList()); + } + private Mutant _param(final String name, final Function xss) { Mutant param = this.params.get(name); if (param == null) { @@ -469,8 +459,7 @@ public Mutant body() throws Exception { Integer.toHexString(System.identityHashCode(this))); files.add(fbody); int bufferSize = conf.getBytes("server.http.RequestBufferSize").intValue(); - Parser.BodyReference body = new BodyReferenceImpl(length, charset(), fbody, req.in(), - bufferSize); + Parser.BodyReference body = new BodyReferenceImpl(length, charset(), fbody, req.in(), bufferSize); return new MutantImpl(require(ParserExecutor.class), type, body); } return new MutantImpl(require(ParserExecutor.class), type, new EmptyBodyReference()); @@ -670,5 +659,4 @@ private Session setSession(final SessionManager sm, final Response rsp, final Se private void destroySession() { this.reqSession = Optional.empty(); } - } diff --git a/jooby/src/main/java/org/jooby/spi/NativeRequest.java b/jooby/src/main/java/org/jooby/spi/NativeRequest.java index d1e8d36ede..4fdc7b523b 100644 --- a/jooby/src/main/java/org/jooby/spi/NativeRequest.java +++ b/jooby/src/main/java/org/jooby/spi/NativeRequest.java @@ -300,6 +300,14 @@ default Map attributes() { */ List files(String name) throws IOException; + /** + * Get all the files or an empty list. + * + * @return All the files or an empty list. + * @throws IOException If file parsing fails. + */ + List files() throws IOException; + /** * Input stream that represent the body. * diff --git a/jooby/src/test/java/org/jooby/RequestTest.java b/jooby/src/test/java/org/jooby/RequestTest.java index f8493197bb..81d53d892b 100644 --- a/jooby/src/test/java/org/jooby/RequestTest.java +++ b/jooby/src/test/java/org/jooby/RequestTest.java @@ -22,6 +22,8 @@ import com.google.inject.Key; import com.google.inject.TypeLiteral; +import javax.annotation.Nonnull; + public class RequestTest { public class RequestMock implements Request { @@ -241,6 +243,11 @@ public List files(final String name) throws IOException { throw new UnsupportedOperationException(); } + @Nonnull + @Override + public List files() throws IOException { + throw new UnsupportedOperationException(); + } } @Test diff --git a/modules/jooby-netty/src/main/java/org/jooby/internal/netty/NettyRequest.java b/modules/jooby-netty/src/main/java/org/jooby/internal/netty/NettyRequest.java index 341820d0d3..939040adac 100644 --- a/modules/jooby-netty/src/main/java/org/jooby/internal/netty/NettyRequest.java +++ b/modules/jooby-netty/src/main/java/org/jooby/internal/netty/NettyRequest.java @@ -370,6 +370,12 @@ public List files(final String name) throws IOException { return ImmutableList.copyOf(this.files.get(name)); } + @Override + public List files() throws IOException { + decodeParams(); + return ImmutableList.copyOf(this.files.values()); + } + @Override public InputStream in() { ByteBuf content = ((HttpContent) req).content(); diff --git a/modules/jooby-servlet/src/main/java/org/jooby/servlet/ServletServletRequest.java b/modules/jooby-servlet/src/main/java/org/jooby/servlet/ServletServletRequest.java index c4943bee11..cea546e372 100644 --- a/modules/jooby-servlet/src/main/java/org/jooby/servlet/ServletServletRequest.java +++ b/modules/jooby-servlet/src/main/java/org/jooby/servlet/ServletServletRequest.java @@ -369,6 +369,20 @@ public List files(final String name) throws IOException { } } + @Override + public List files() throws IOException { + try { + if (multipart) { + return req.getParts().stream() + .map(part -> new ServletUpload(part, tmpdir)) + .collect(Collectors.toList()); + } + return Collections.emptyList(); + } catch (ServletException ex) { + throw new IOException("Unable to get files", ex); + } + } + @Override public InputStream in() throws IOException { return req.getInputStream(); diff --git a/modules/jooby-undertow/src/main/java/org/jooby/internal/undertow/UndertowRequest.java b/modules/jooby-undertow/src/main/java/org/jooby/internal/undertow/UndertowRequest.java index 2f86d06b2f..0416c868db 100644 --- a/modules/jooby-undertow/src/main/java/org/jooby/internal/undertow/UndertowRequest.java +++ b/modules/jooby-undertow/src/main/java/org/jooby/internal/undertow/UndertowRequest.java @@ -208,12 +208,10 @@ import java.io.InputStream; import java.net.InetAddress; import java.net.URLDecoder; -import java.util.Collections; -import java.util.Deque; -import java.util.List; -import java.util.Optional; +import java.util.*; import java.util.concurrent.Executor; import java.util.stream.Collectors; +import java.util.stream.StreamSupport; import io.undertow.server.handlers.form.*; import org.jooby.Cookie; @@ -354,6 +352,21 @@ public List files(final String name) { return builder.build(); } + @Override + public List files() throws IOException { + FormData formData = parseForm(); + Iterator keyIterator = formData.iterator(); + Iterable iterableKeys = () -> keyIterator; + List retVal = StreamSupport.stream(iterableKeys.spliterator(), true) + .map(formData::get) + .filter(formValues -> formValues.peekFirst().isFileItem()) + .flatMap(Collection::stream) + .map(UndertowUpload::new) + .collect(Collectors.toList()); + + return Collections.unmodifiableList(retVal); + } + @Override public InputStream in() { blocking.get(); From d68f9617b722c76cc2200e86acccaf733e9fddb7 Mon Sep 17 00:00:00 2001 From: Andrei Hurynovich Date: Wed, 10 Apr 2019 20:49:38 -0500 Subject: [PATCH 45/93] Fix build issue with JDK9 due to outdated dokka-maven-plugin --- modules/jooby-bom/pom.xml | 2 +- pom.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/jooby-bom/pom.xml b/modules/jooby-bom/pom.xml index 60dd7f723f..a7222439b8 100644 --- a/modules/jooby-bom/pom.xml +++ b/modules/jooby-bom/pom.xml @@ -156,7 +156,7 @@ 3.1.0 2.1.1 0.4.13 - 0.9.13 + 0.9.18 1.2.1 1.6.0 ${jacoco.version} diff --git a/pom.xml b/pom.xml index 84d4c83627..84c25ee1f8 100644 --- a/pom.xml +++ b/pom.xml @@ -3309,7 +3309,7 @@ org.eclipse.jdt.apt.processorOptions/defaultOverwrite=true 3.1.0 2.1.1 0.4.13 - 0.9.13 + 0.9.18 1.2.1 1.6.0 ${jacoco.version} From cf9101226c02fc8f0cea8a0c49f02337bb7d15e4 Mon Sep 17 00:00:00 2001 From: Andrei Hurynovich Date: Wed, 10 Apr 2019 20:53:01 -0500 Subject: [PATCH 46/93] Added explicit dependency on crsh-cli to fix maven compilation problem --- modules/jooby-crash/pom.xml | 5 +++++ pom.xml | 8 +++++++- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/modules/jooby-crash/pom.xml b/modules/jooby-crash/pom.xml index a562fb8ca0..a8e670db99 100644 --- a/modules/jooby-crash/pom.xml +++ b/modules/jooby-crash/pom.xml @@ -87,6 +87,11 @@ crash.shell + + org.crashub + crash.cli + + org.jooby diff --git a/pom.xml b/pom.xml index 84d4c83627..fa19889f16 100644 --- a/pom.xml +++ b/pom.xml @@ -911,7 +911,7 @@ ${gson.version} - + org.eclipse yasson @@ -1644,6 +1644,12 @@ + + org.crashub + crash.cli + ${crash.version} + + org.crashub crash.connectors.telnet From 1bac53a630e0a6bcba9d7e3585e6c56aa7f57041 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcel=20St=C3=B6r?= Date: Fri, 3 May 2019 23:59:40 +0200 Subject: [PATCH 47/93] Add note about import order Follow-up to https://gitter.im/jooby-project/jooby?at=5ccaa8a8a4ef09747135de87 --- doc/doc/hbv/hbv.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/doc/doc/hbv/hbv.md b/doc/doc/hbv/hbv.md index 8664f1675e..8f1d512c05 100644 --- a/doc/doc/hbv/hbv.md +++ b/doc/doc/hbv/hbv.md @@ -35,6 +35,19 @@ Bean validation via [Hibernate Validator](hibernate.org/validator). }); } ``` +### in combination with JSON parser +Jooby does not have a validation API or a validation API for HTTP bodies. Instead, this validator _wraps_ existing body parsers as they simply return the first deserialized object. Consequently, this module must be imported _before_ you import any parser! +If you were to use the [Jackson JSON parser module](../jackson/jackson.md) it would look like this: + +```java +{ + // must be imported before any body parser + use(new Hbv()); + use(new Jackson()); + + // routes go here +} +``` ## automatic validations of HTTP params and body From 4cc4660189b70acf3ec806b66d63613e14383f78 Mon Sep 17 00:00:00 2001 From: vokl0313 Date: Sun, 26 May 2019 22:17:31 +0300 Subject: [PATCH 48/93] apitool parser support response with wildcard types --- .../apitool/TypeJsonDeserializer.java | 34 ++++++++++- .../internal/apitool/WildcardTypesTest.java | 59 +++++++++++++++++++ 2 files changed, 91 insertions(+), 2 deletions(-) create mode 100644 modules/jooby-apitool/src/test/java/org/jooby/internal/apitool/WildcardTypesTest.java diff --git a/modules/jooby-apitool/src/main/java/org/jooby/internal/apitool/TypeJsonDeserializer.java b/modules/jooby-apitool/src/main/java/org/jooby/internal/apitool/TypeJsonDeserializer.java index c91664042a..3159d7ce97 100644 --- a/modules/jooby-apitool/src/main/java/org/jooby/internal/apitool/TypeJsonDeserializer.java +++ b/modules/jooby-apitool/src/main/java/org/jooby/internal/apitool/TypeJsonDeserializer.java @@ -244,14 +244,19 @@ private static List parse(final ClassLoader loader, final String type, fin Type owner = BytecodeRouteParser.loadType(loader, singleType.toString()); List parameters = parse(loader, type, i + 1); return Arrays.asList( - Types.newParameterizedType(owner, parameters.toArray(new Type[parameters.size()]))); + Types.newParameterizedType(owner, parameters.toArray(new Type[parameters.size()]))); } else if (ch == ',') { Type element = BytecodeRouteParser.loadType(loader, singleType.toString()); types.add(element); singleType.setLength(0); } else if (ch == '>') { if (singleType.length() > 0) { - Type element = BytecodeRouteParser.loadType(loader, singleType.toString()); + Type element; + if (singleType.charAt(0) == '?') { + element = parseWildcardType(singleType, loader); + } else { + element = BytecodeRouteParser.loadType(loader, singleType.toString()); + } types.add(element); singleType.setLength(0); } @@ -272,4 +277,29 @@ private static List parse(final ClassLoader loader, final String type, fin } return types; } + + private static Type parseWildcardType(final StringBuilder singleType, final ClassLoader loader) { + if(singleType.length() == 1) { + // Collection + return new MoreTypes.WildcardTypeImpl(new Type[]{Object.class}, MoreTypes.EMPTY_TYPE_ARRAY); + } + + Type type; + String typeStr; + switch (singleType.charAt(1)) { + case 'e': + // Collection> + typeStr = singleType.substring(8); + type = Types.subtypeOf(BytecodeRouteParser.loadType(loader, typeStr)); + break; + case 's': + // Collection> + typeStr = singleType.substring(6); + type = Types.supertypeOf(BytecodeRouteParser.loadType(loader, typeStr)); + break; + default: + throw new UnsupportedOperationException("Unsupported wildcard type"); + } + return type; + } } diff --git a/modules/jooby-apitool/src/test/java/org/jooby/internal/apitool/WildcardTypesTest.java b/modules/jooby-apitool/src/test/java/org/jooby/internal/apitool/WildcardTypesTest.java new file mode 100644 index 0000000000..c057a2c61a --- /dev/null +++ b/modules/jooby-apitool/src/test/java/org/jooby/internal/apitool/WildcardTypesTest.java @@ -0,0 +1,59 @@ +package org.jooby.internal.apitool; + +import com.fasterxml.jackson.databind.ObjectMapper; +import com.google.inject.internal.MoreTypes; +import com.google.inject.util.Types; +import org.junit.Test; + +import java.lang.reflect.ParameterizedType; +import java.lang.reflect.Type; + +import static org.junit.Assert.assertEquals; + +public class WildcardTypesTest { + + public static class TypeWrapper { + private Type type; + + public Type getType() { + return type; + } + + public void setType(Type type) { + this.type = type; + } + } + + @Test + public void shouldDeserializeSubtypeProperly() throws Exception { + ObjectMapper mapper = BytecodeRouteParser.mapper; + TypeWrapper expected = new TypeWrapper(); + ParameterizedType type = Types.listOf(Types.subtypeOf(Integer.class)); + expected.setType(type); + String json = mapper.writeValueAsString(expected); + TypeWrapper actual = mapper.readValue(json, TypeWrapper.class); + assertEquals(expected.getType(), actual.getType()); + } + + @Test + public void shouldDeserializeSuperTypeProperly() throws Exception { + ObjectMapper mapper = BytecodeRouteParser.mapper; + TypeWrapper expected = new TypeWrapper(); + ParameterizedType type = Types.listOf(Types.supertypeOf(Integer.class)); + expected.setType(type); + String json = mapper.writeValueAsString(expected); + TypeWrapper actual = mapper.readValue(json, TypeWrapper.class); + assertEquals(expected.getType(), actual.getType()); + } + + @Test + public void shouldDeserializeUnknownTypeProperly() throws Exception { + ObjectMapper mapper = BytecodeRouteParser.mapper; + TypeWrapper expected = new TypeWrapper(); + ParameterizedType type = Types.listOf(new MoreTypes.WildcardTypeImpl(new Type[]{Object.class}, MoreTypes.EMPTY_TYPE_ARRAY)); + expected.setType(type); + String json = mapper.writeValueAsString(expected); + TypeWrapper actual = mapper.readValue(json, TypeWrapper.class); + assertEquals(expected.getType(), actual.getType()); + } +} From aa4947888d892165ed151bec5e03ed9b4d6e3464 Mon Sep 17 00:00:00 2001 From: Edgar Espina Date: Sun, 2 Jun 2019 15:19:36 -0300 Subject: [PATCH 49/93] Example for parsing nested param values #1312 --- .../test/java/org/jooby/issues/Issue1312.java | 44 +++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 modules/coverage-report/src/test/java/org/jooby/issues/Issue1312.java diff --git a/modules/coverage-report/src/test/java/org/jooby/issues/Issue1312.java b/modules/coverage-report/src/test/java/org/jooby/issues/Issue1312.java new file mode 100644 index 0000000000..7827cca3c1 --- /dev/null +++ b/modules/coverage-report/src/test/java/org/jooby/issues/Issue1312.java @@ -0,0 +1,44 @@ +package org.jooby.issues; + +import org.jooby.test.ServerFeature; +import org.junit.Test; + +import java.util.ArrayList; +import java.util.List; +import java.util.Optional; + +public class Issue1312 extends ServerFeature { + + public static class Person { + String name; + + String country; + + Person child; + + + @Override + public String toString() { + String data = name + " " + country; + if (child!=null) { + data += "; child {" + child.toString() + "}"; + } + return data; + } + } + + { + get("/", req -> { + return req.params(Person.class); + }); + + } + + @Test + public void rootList() throws Exception { + request() + .get("/?name=P&country=AR&child.name=X&child.country=UY") + .expect("[Pedro PicaPiedra]"); + } + +} From 016c153de03eb922e0d22345d4eedd2ea8038287 Mon Sep 17 00:00:00 2001 From: Edgar Espina Date: Sun, 2 Jun 2019 15:37:32 -0300 Subject: [PATCH 50/93] better error message when `assets.conf` is missing #1324 --- .../src/main/java/org/jooby/assets/Assets.java | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/modules/jooby-assets/src/main/java/org/jooby/assets/Assets.java b/modules/jooby-assets/src/main/java/org/jooby/assets/Assets.java index c1e25326d0..e2751833c4 100644 --- a/modules/jooby-assets/src/main/java/org/jooby/assets/Assets.java +++ b/modules/jooby-assets/src/main/java/org/jooby/assets/Assets.java @@ -219,6 +219,8 @@ import org.slf4j.LoggerFactory; import java.io.File; +import java.io.FileNotFoundException; +import java.io.IOException; import java.nio.file.Path; import java.nio.file.Paths; import java.util.List; @@ -568,10 +570,10 @@ public void configure(final Env env, final Config config, final Binder binder) t return ConfigFactory.parseResources(getClass(), "assets.conf"); } - private Config conf(final boolean dev, final ClassLoader loader, final Config conf) { - final Config[] confs; + private Config conf(final boolean dev, final ClassLoader loader, final Config conf) throws + IOException { if (!dev) { - confs = new Config[]{ + Config[] confs = { ConfigFactory.parseResources(loader, "assets." + conf.getString("application.env").toLowerCase() + ".conf"), ConfigFactory.parseResources(loader, "assets.dist.conf"), @@ -582,6 +584,9 @@ private Config conf(final boolean dev, final ClassLoader loader, final Config co } } } + if (loader.getResource("assets.conf") == null) { + throw new FileNotFoundException("assets.conf"); + } return ConfigFactory.parseResources(loader, "assets.conf").withFallback(conf).resolve(); } From 89afcfa830e10a1c7327a4f045e301fd7a9b9d75 Mon Sep 17 00:00:00 2001 From: Edgar Espina Date: Sun, 2 Jun 2019 15:51:21 -0300 Subject: [PATCH 51/93] Chrome sends large websocket packets that jooby-netty cannot decode with default settings #1322 --- jooby/src/main/resources/org/jooby/jooby.conf | 4 ++-- .../src/main/java/org/jooby/assets/Bitwise.java | 7 +++++++ 2 files changed, 9 insertions(+), 2 deletions(-) create mode 100644 modules/jooby-assets/src/main/java/org/jooby/assets/Bitwise.java diff --git a/jooby/src/main/resources/org/jooby/jooby.conf b/jooby/src/main/resources/org/jooby/jooby.conf index 6b9a869c8e..293ef122e8 100644 --- a/jooby/src/main/resources/org/jooby/jooby.conf +++ b/jooby/src/main/resources/org/jooby/jooby.conf @@ -151,10 +151,10 @@ server { ws { # The maximum size of a text message. - MaxTextMessageSize = 16k + MaxTextMessageSize = 131072 # The maximum size of a binary message. - MaxBinaryMessageSize = 16k + MaxBinaryMessageSize = 131072 # The time in ms (milliseconds) that a websocket may be idle before closing. IdleTimeout = 5minutes diff --git a/modules/jooby-assets/src/main/java/org/jooby/assets/Bitwise.java b/modules/jooby-assets/src/main/java/org/jooby/assets/Bitwise.java new file mode 100644 index 0000000000..5a06de30fc --- /dev/null +++ b/modules/jooby-assets/src/main/java/org/jooby/assets/Bitwise.java @@ -0,0 +1,7 @@ +package org.jooby.assets; + +public class Bitwise { + public static void main(String[] args) { + System.out.println(1<<17); + } +} From dc45c8f6ca0d8d0817ec4e6890b1b20f9ee7c220 Mon Sep 17 00:00:00 2001 From: Edgar Espina Date: Sun, 2 Jun 2019 17:40:22 -0300 Subject: [PATCH 52/93] netty, undertow and jetty upgrade + fix asset tests --- modules/jooby-assets/src/test/resources/assets.conf | 1 + pom.xml | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) create mode 100644 modules/jooby-assets/src/test/resources/assets.conf diff --git a/modules/jooby-assets/src/test/resources/assets.conf b/modules/jooby-assets/src/test/resources/assets.conf new file mode 100644 index 0000000000..fa81adaff6 --- /dev/null +++ b/modules/jooby-assets/src/test/resources/assets.conf @@ -0,0 +1 @@ +# empty file diff --git a/pom.xml b/pom.xml index bec5f85a2e..278ef01339 100644 --- a/pom.xml +++ b/pom.xml @@ -3213,7 +3213,7 @@ org.eclipse.jdt.apt.processorOptions/defaultOverwrite=true 3.3.0 2.9.0 1.19.4 - 9.4.14.v20181114 + 9.4.18.v20190429 1.4.0 1.11.3 2.1.3 @@ -3236,7 +3236,7 @@ org.eclipse.jdt.apt.processorOptions/defaultOverwrite=true 3.4.0.52.4 3.4.0.52 3.3.2 - 4.1.33.Final + 4.1.36.Final 1.9.9 2.3.1 2.4.0 @@ -3262,7 +3262,7 @@ org.eclipse.jdt.apt.processorOptions/defaultOverwrite=true 3.17.1 1.5.20 3.0.10.RELEASE - 2.0.17.Final + 2.0.21.Final 2.1 2.4.8 0.12.1 From 9e052483d4fb6ad64848b2436c7bb5171f2c2374 Mon Sep 17 00:00:00 2001 From: Edgar Espina Date: Sun, 2 Jun 2019 17:47:59 -0300 Subject: [PATCH 53/93] version bump: jackson + hikari --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 278ef01339..2185666ede 100644 --- a/pom.xml +++ b/pom.xml @@ -3197,10 +3197,10 @@ org.eclipse.jdt.apt.processorOptions/defaultOverwrite=true 3.11 5.1.3.Final 5.3.9.Final - 3.2.0 + 3.3.1 4.5.5 4.6.0 - 2.9.8 + 2.9.9 1.2.7 3.22.0-GA 3.0.1-b06 From 1211823f0c83e526eae6c36d36feaeb92cec3aa8 Mon Sep 17 00:00:00 2001 From: Edgar Espina Date: Sun, 2 Jun 2019 18:25:21 -0300 Subject: [PATCH 54/93] v1.6.1 --- README.md | 4 +- jooby/pom.xml | 2 +- modules/coverage-report/pom.xml | 2 +- modules/jooby-akka/README.md | 6 +- modules/jooby-akka/pom.xml | 2 +- modules/jooby-apitool/README.md | 8 +- modules/jooby-apitool/pom.xml | 2 +- modules/jooby-archetype/pom.xml | 2 +- modules/jooby-assets-autoprefixer/README.md | 6 +- modules/jooby-assets-autoprefixer/pom.xml | 2 +- modules/jooby-assets-babel/README.md | 8 +- modules/jooby-assets-babel/pom.xml | 2 +- modules/jooby-assets-clean-css/README.md | 6 +- modules/jooby-assets-clean-css/pom.xml | 2 +- .../jooby-assets-closure-compiler/README.md | 6 +- modules/jooby-assets-closure-compiler/pom.xml | 2 +- modules/jooby-assets-csslint/README.md | 6 +- modules/jooby-assets-csslint/pom.xml | 2 +- modules/jooby-assets-j2v8/pom.xml | 2 +- modules/jooby-assets-jscs/README.md | 6 +- modules/jooby-assets-jscs/pom.xml | 2 +- modules/jooby-assets-jshint/README.md | 6 +- modules/jooby-assets-jshint/pom.xml | 2 +- modules/jooby-assets-less/README.md | 6 +- modules/jooby-assets-less/pom.xml | 2 +- modules/jooby-assets-less4j/README.md | 6 +- modules/jooby-assets-less4j/pom.xml | 2 +- modules/jooby-assets-ng-annotate/README.md | 6 +- modules/jooby-assets-ng-annotate/pom.xml | 2 +- modules/jooby-assets-nodejs/pom.xml | 2 +- modules/jooby-assets-requirejs/README.md | 6 +- modules/jooby-assets-requirejs/pom.xml | 2 +- modules/jooby-assets-rollup/README.md | 6 +- modules/jooby-assets-rollup/pom.xml | 2 +- modules/jooby-assets-sass/README.md | 6 +- modules/jooby-assets-sass/pom.xml | 2 +- modules/jooby-assets-svg-sprites/README.md | 6 +- modules/jooby-assets-svg-sprites/pom.xml | 2 +- modules/jooby-assets-svg-symbol/README.md | 6 +- modules/jooby-assets-svg-symbol/pom.xml | 2 +- modules/jooby-assets-uglify/README.md | 6 +- modules/jooby-assets-uglify/pom.xml | 2 +- modules/jooby-assets-yui-compressor/README.md | 6 +- modules/jooby-assets-yui-compressor/pom.xml | 2 +- modules/jooby-assets/README.md | 6 +- modules/jooby-assets/pom.xml | 2 +- .../main/java/org/jooby/assets/Bitwise.java | 203 ++++++++++++++++++ modules/jooby-aws/README.md | 6 +- modules/jooby-aws/pom.xml | 2 +- modules/jooby-banner/README.md | 6 +- modules/jooby-banner/pom.xml | 2 +- modules/jooby-bom/pom.xml | 17 +- modules/jooby-caffeine/README.md | 6 +- modules/jooby-caffeine/pom.xml | 2 +- modules/jooby-camel/README.md | 6 +- modules/jooby-camel/pom.xml | 2 +- modules/jooby-cassandra/README.md | 8 +- modules/jooby-cassandra/pom.xml | 2 +- modules/jooby-commons-email/README.md | 6 +- modules/jooby-commons-email/pom.xml | 2 +- modules/jooby-consul/README.md | 6 +- modules/jooby-consul/pom.xml | 2 +- modules/jooby-couchbase/README.md | 8 +- modules/jooby-couchbase/pom.xml | 2 +- modules/jooby-crash/README.md | 6 +- modules/jooby-crash/pom.xml | 2 +- modules/jooby-csl/README.md | 6 +- modules/jooby-csl/pom.xml | 2 +- modules/jooby-dist/pom.xml | 2 +- modules/jooby-ebean/README.md | 6 +- modules/jooby-ebean/pom.xml | 2 +- modules/jooby-ehcache/README.md | 8 +- modules/jooby-ehcache/pom.xml | 2 +- modules/jooby-elasticsearch/README.md | 6 +- modules/jooby-elasticsearch/pom.xml | 2 +- modules/jooby-eventbus/README.md | 6 +- modules/jooby-eventbus/pom.xml | 2 +- modules/jooby-executor/README.md | 6 +- modules/jooby-executor/pom.xml | 2 +- modules/jooby-exposed/README.md | 4 +- modules/jooby-exposed/pom.xml | 2 +- modules/jooby-filewatcher/README.md | 6 +- modules/jooby-filewatcher/pom.xml | 2 +- modules/jooby-flyway/README.md | 6 +- modules/jooby-flyway/pom.xml | 2 +- modules/jooby-frontend/README.md | 6 +- modules/jooby-frontend/pom.xml | 2 +- modules/jooby-ftl/README.md | 6 +- modules/jooby-ftl/pom.xml | 2 +- modules/jooby-gradle-plugin/README.md | 6 +- modules/jooby-gradle-plugin/pom.xml | 2 +- modules/jooby-gson/README.md | 6 +- modules/jooby-gson/pom.xml | 2 +- modules/jooby-guava-cache/README.md | 8 +- modules/jooby-guava-cache/pom.xml | 2 +- modules/jooby-hazelcast/README.md | 8 +- modules/jooby-hazelcast/pom.xml | 2 +- modules/jooby-hbm/README.md | 6 +- modules/jooby-hbm/pom.xml | 2 +- modules/jooby-hbs/README.md | 6 +- modules/jooby-hbs/pom.xml | 2 +- modules/jooby-hbv/README.md | 6 +- modules/jooby-hbv/pom.xml | 2 +- modules/jooby-jackson/README.md | 6 +- modules/jooby-jackson/pom.xml | 2 +- modules/jooby-jade/README.md | 6 +- modules/jooby-jade/pom.xml | 2 +- modules/jooby-jdbc/README.md | 6 +- modules/jooby-jdbc/pom.xml | 2 +- modules/jooby-jdbi/README.md | 6 +- modules/jooby-jdbi/pom.xml | 2 +- modules/jooby-jdbi3/README.md | 6 +- modules/jooby-jdbi3/pom.xml | 2 +- modules/jooby-jedis/README.md | 8 +- modules/jooby-jedis/pom.xml | 2 +- modules/jooby-jetty/README.md | 6 +- modules/jooby-jetty/pom.xml | 2 +- modules/jooby-jongo/README.md | 6 +- modules/jooby-jongo/pom.xml | 2 +- modules/jooby-jooq/README.md | 6 +- modules/jooby-jooq/pom.xml | 2 +- modules/jooby-lang-kotlin/README.md | 6 +- modules/jooby-lang-kotlin/pom.xml | 2 +- modules/jooby-livereload/README.md | 6 +- modules/jooby-livereload/pom.xml | 2 +- modules/jooby-maven-plugin/README.md | 10 +- modules/jooby-maven-plugin/pom.xml | 2 +- modules/jooby-metrics/README.md | 6 +- modules/jooby-metrics/pom.xml | 2 +- modules/jooby-micrometer/README.md | 6 +- modules/jooby-micrometer/pom.xml | 2 +- modules/jooby-mongodb-rx/README.md | 6 +- modules/jooby-mongodb-rx/pom.xml | 2 +- modules/jooby-mongodb/README.md | 8 +- modules/jooby-mongodb/pom.xml | 2 +- modules/jooby-morphia/README.md | 6 +- modules/jooby-morphia/pom.xml | 2 +- modules/jooby-neo4j/README.md | 8 +- modules/jooby-neo4j/pom.xml | 2 +- modules/jooby-netty/README.md | 6 +- modules/jooby-netty/pom.xml | 2 +- modules/jooby-pac4j/README.md | 6 +- modules/jooby-pac4j/pom.xml | 2 +- modules/jooby-pac4j2/README.md | 6 +- modules/jooby-pac4j2/pom.xml | 2 +- modules/jooby-pebble/README.md | 6 +- modules/jooby-pebble/pom.xml | 2 +- modules/jooby-quartz/README.md | 6 +- modules/jooby-quartz/pom.xml | 2 +- modules/jooby-querydsl/README.md | 6 +- modules/jooby-querydsl/pom.xml | 2 +- modules/jooby-reactor/README.md | 6 +- modules/jooby-reactor/pom.xml | 2 +- modules/jooby-requery/README.md | 6 +- modules/jooby-requery/pom.xml | 2 +- modules/jooby-rocker/README.md | 6 +- modules/jooby-rocker/pom.xml | 2 +- modules/jooby-run/pom.xml | 2 +- modules/jooby-rxjava-jdbc/README.md | 6 +- modules/jooby-rxjava-jdbc/pom.xml | 2 +- modules/jooby-rxjava/README.md | 6 +- modules/jooby-rxjava/pom.xml | 2 +- modules/jooby-scanner/README.md | 6 +- modules/jooby-scanner/pom.xml | 2 +- modules/jooby-servlet/README.md | 4 +- modules/jooby-servlet/pom.xml | 2 +- modules/jooby-sitemap/README.md | 6 +- modules/jooby-sitemap/pom.xml | 2 +- modules/jooby-spymemcached/README.md | 8 +- modules/jooby-spymemcached/pom.xml | 2 +- modules/jooby-thymeleaf/README.md | 6 +- modules/jooby-thymeleaf/pom.xml | 2 +- modules/jooby-unbescape/README.md | 6 +- modules/jooby-unbescape/pom.xml | 2 +- modules/jooby-undertow/README.md | 6 +- modules/jooby-undertow/pom.xml | 2 +- modules/jooby-whoops/README.md | 6 +- modules/jooby-whoops/pom.xml | 2 +- modules/jooby-yasson/README.md | 6 +- modules/jooby-yasson/pom.xml | 2 +- modules/pom.xml | 2 +- pom.xml | 2 +- 182 files changed, 574 insertions(+), 370 deletions(-) diff --git a/README.md b/README.md index c3b185fec4..08f4d840bd 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby.svg)](https://javadoc.io/doc/org.jooby/jooby/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby.svg)](https://javadoc.io/doc/org.jooby/jooby/1.6.1) [![Become a Patreon](https://img.shields.io/badge/patreon-donate-orange.svg)](https://patreon.com/edgarespina) [![Build Status](https://travis-ci.org/jooby-project/jooby.svg?branch=master)](https://travis-ci.org/jooby-project/jooby) [![coveralls.io](https://img.shields.io/coveralls/jooby-project/jooby.svg)](https://coveralls.io/r/jooby-project/jooby?branch=master) diff --git a/jooby/pom.xml b/jooby/pom.xml index 659700918a..957608ab04 100644 --- a/jooby/pom.xml +++ b/jooby/pom.xml @@ -6,7 +6,7 @@ org.jooby jooby-project - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/coverage-report/pom.xml b/modules/coverage-report/pom.xml index 6e63d737bd..e005187c4c 100644 --- a/modules/coverage-report/pom.xml +++ b/modules/coverage-report/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-akka/README.md b/modules/jooby-akka/README.md index f0a6c5b8c4..5f61d18fa4 100644 --- a/modules/jooby-akka/README.md +++ b/modules/jooby-akka/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-akka/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-akka/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-akka.svg)](https://javadoc.io/doc/org.jooby/jooby-akka/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-akka/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-akka/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-akka.svg)](https://javadoc.io/doc/org.jooby/jooby-akka/1.6.1) [![jooby-akka website](https://img.shields.io/badge/jooby-akka-brightgreen.svg)](http://jooby.org/doc/akka) # akka @@ -15,7 +15,7 @@ Small module to build concurrent & distributed applications via [Akka](http://ak org.jooby jooby-akka - 1.6.0 + 1.6.1 ``` diff --git a/modules/jooby-akka/pom.xml b/modules/jooby-akka/pom.xml index d30cb52af2..3683256423 100644 --- a/modules/jooby-akka/pom.xml +++ b/modules/jooby-akka/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-apitool/README.md b/modules/jooby-apitool/README.md index 7ee5c75f98..7bbc0dcedc 100644 --- a/modules/jooby-apitool/README.md +++ b/modules/jooby-apitool/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-apitool/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-apitool/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-apitool.svg)](https://javadoc.io/doc/org.jooby/jooby-apitool/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-apitool/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-apitool/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-apitool.svg)](https://javadoc.io/doc/org.jooby/jooby-apitool/1.6.1) [![jooby-apitool website](https://img.shields.io/badge/jooby-apitool-brightgreen.svg)](http://jooby.org/doc/apitool) # API tool @@ -23,7 +23,7 @@ This module generates live documentation from your HTTP API (source code). org.jooby jooby-apitool - 1.6.0 + 1.6.1 ``` @@ -187,7 +187,7 @@ Go to ```build.gradle``` and add these lines: ```gradke buildscript { dependencies { - classpath group: 'org.jooby', name: 'jooby-gradle-plugin', version: '1.6.0' + classpath group: 'org.jooby', name: 'jooby-gradle-plugin', version: '1.6.1' } } apply plugin: 'jooby' diff --git a/modules/jooby-apitool/pom.xml b/modules/jooby-apitool/pom.xml index bfcef58d1a..2793128b43 100644 --- a/modules/jooby-apitool/pom.xml +++ b/modules/jooby-apitool/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-archetype/pom.xml b/modules/jooby-archetype/pom.xml index dafdf9fb08..58a7be9e44 100644 --- a/modules/jooby-archetype/pom.xml +++ b/modules/jooby-archetype/pom.xml @@ -7,7 +7,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 jooby-archetype diff --git a/modules/jooby-assets-autoprefixer/README.md b/modules/jooby-assets-autoprefixer/README.md index 3fb3850af3..76fba40157 100644 --- a/modules/jooby-assets-autoprefixer/README.md +++ b/modules/jooby-assets-autoprefixer/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-autoprefixer/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-autoprefixer/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-autoprefixer.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-autoprefixer/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-autoprefixer/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-autoprefixer/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-autoprefixer.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-autoprefixer/1.6.1) [![jooby-assets-autoprefixer website](https://img.shields.io/badge/jooby-assets-autoprefixer-brightgreen.svg)](http://jooby.org/doc/assets-autoprefixer) # auto-prefixer @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-autoprefixer - 1.6.0 + 1.6.1 provided ``` diff --git a/modules/jooby-assets-autoprefixer/pom.xml b/modules/jooby-assets-autoprefixer/pom.xml index 2c5fa8f913..50f26fe359 100644 --- a/modules/jooby-assets-autoprefixer/pom.xml +++ b/modules/jooby-assets-autoprefixer/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-assets-babel/README.md b/modules/jooby-assets-babel/README.md index 559416b27c..182b38d9a5 100644 --- a/modules/jooby-assets-babel/README.md +++ b/modules/jooby-assets-babel/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-babel/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-babel/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-babel.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-babel/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-babel/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-babel/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-babel.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-babel/1.6.1) [![jooby-assets-babel website](https://img.shields.io/badge/jooby-assets-babel-brightgreen.svg)](http://jooby.org/doc/assets-babel) # babel @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-babel - 1.6.0 + 1.6.1 provided ``` @@ -38,7 +38,7 @@ assets { org.jooby jooby-assets-babel - 1.6.0 + 1.6.1 provided ``` diff --git a/modules/jooby-assets-babel/pom.xml b/modules/jooby-assets-babel/pom.xml index baee575330..b5d25bece9 100644 --- a/modules/jooby-assets-babel/pom.xml +++ b/modules/jooby-assets-babel/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-assets-clean-css/README.md b/modules/jooby-assets-clean-css/README.md index 26787300ab..9cdbe55254 100644 --- a/modules/jooby-assets-clean-css/README.md +++ b/modules/jooby-assets-clean-css/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-clean-css/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-clean-css/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-clean-css.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-clean-css/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-clean-css/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-clean-css/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-clean-css.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-clean-css/1.6.1) [![jooby-assets-clean-css website](https://img.shields.io/badge/jooby-assets-clean-css-brightgreen.svg)](http://jooby.org/doc/assets-clean-css) # clean-css @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-clean-css - 1.6.0 + 1.6.1 provided ``` diff --git a/modules/jooby-assets-clean-css/pom.xml b/modules/jooby-assets-clean-css/pom.xml index 6f5f166019..b37d94251a 100644 --- a/modules/jooby-assets-clean-css/pom.xml +++ b/modules/jooby-assets-clean-css/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-assets-closure-compiler/README.md b/modules/jooby-assets-closure-compiler/README.md index 7b352016b6..5e87265394 100644 --- a/modules/jooby-assets-closure-compiler/README.md +++ b/modules/jooby-assets-closure-compiler/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-closure-compiler/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-closure-compiler/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-closure-compiler.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-closure-compiler/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-closure-compiler/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-closure-compiler/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-closure-compiler.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-closure-compiler/1.6.1) [![jooby-assets-closure-compiler website](https://img.shields.io/badge/jooby-assets-closure-compiler-brightgreen.svg)](http://jooby.org/doc/assets-closure-compiler) # closure-compiler @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-closure-compiler - 1.6.0 + 1.6.1 provided ``` diff --git a/modules/jooby-assets-closure-compiler/pom.xml b/modules/jooby-assets-closure-compiler/pom.xml index 45b38b2071..268581f141 100644 --- a/modules/jooby-assets-closure-compiler/pom.xml +++ b/modules/jooby-assets-closure-compiler/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-assets-csslint/README.md b/modules/jooby-assets-csslint/README.md index 3e7fb8796a..94408e13ec 100644 --- a/modules/jooby-assets-csslint/README.md +++ b/modules/jooby-assets-csslint/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-csslint/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-csslint/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-csslint.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-csslint/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-csslint/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-csslint/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-csslint.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-csslint/1.6.1) [![jooby-assets-csslint website](https://img.shields.io/badge/jooby-assets-csslint-brightgreen.svg)](http://jooby.org/doc/assets-csslint) # csslint @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-csslint - 1.6.0 + 1.6.1 provided ``` diff --git a/modules/jooby-assets-csslint/pom.xml b/modules/jooby-assets-csslint/pom.xml index c4ac1727a9..a0b4e23573 100644 --- a/modules/jooby-assets-csslint/pom.xml +++ b/modules/jooby-assets-csslint/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-assets-j2v8/pom.xml b/modules/jooby-assets-j2v8/pom.xml index a0f98857a1..8bb2514dfc 100644 --- a/modules/jooby-assets-j2v8/pom.xml +++ b/modules/jooby-assets-j2v8/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-assets-jscs/README.md b/modules/jooby-assets-jscs/README.md index 09df902001..5191444c3b 100644 --- a/modules/jooby-assets-jscs/README.md +++ b/modules/jooby-assets-jscs/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-jscs/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-jscs/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-jscs.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-jscs/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-jscs/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-jscs/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-jscs.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-jscs/1.6.1) [![jooby-assets-jscs website](https://img.shields.io/badge/jooby-assets-jscs-brightgreen.svg)](http://jooby.org/doc/assets-jscs) # jscs @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-jscs - 1.6.0 + 1.6.1 provided ``` diff --git a/modules/jooby-assets-jscs/pom.xml b/modules/jooby-assets-jscs/pom.xml index 7c53a919df..4a2e47d62c 100644 --- a/modules/jooby-assets-jscs/pom.xml +++ b/modules/jooby-assets-jscs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-assets-jshint/README.md b/modules/jooby-assets-jshint/README.md index 81b6c87621..f9c4c77c87 100644 --- a/modules/jooby-assets-jshint/README.md +++ b/modules/jooby-assets-jshint/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-jshint/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-jshint/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-jshint.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-jshint/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-jshint/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-jshint/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-jshint.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-jshint/1.6.1) [![jooby-assets-jshint website](https://img.shields.io/badge/jooby-assets-jshint-brightgreen.svg)](http://jooby.org/doc/assets-jshint) # jshint @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-jshint - 1.6.0 + 1.6.1 provided ``` diff --git a/modules/jooby-assets-jshint/pom.xml b/modules/jooby-assets-jshint/pom.xml index e448727277..8e2fbe9646 100644 --- a/modules/jooby-assets-jshint/pom.xml +++ b/modules/jooby-assets-jshint/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-assets-less/README.md b/modules/jooby-assets-less/README.md index aeb0174944..de400bb3f4 100644 --- a/modules/jooby-assets-less/README.md +++ b/modules/jooby-assets-less/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-less/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-less/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-less.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-less/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-less/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-less/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-less.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-less/1.6.1) [![jooby-assets-less website](https://img.shields.io/badge/jooby-assets-less-brightgreen.svg)](http://jooby.org/doc/assets-less) # less @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-less - 1.6.0 + 1.6.1 provided ``` diff --git a/modules/jooby-assets-less/pom.xml b/modules/jooby-assets-less/pom.xml index 0b5822e2ea..0c354d42b6 100644 --- a/modules/jooby-assets-less/pom.xml +++ b/modules/jooby-assets-less/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-assets-less4j/README.md b/modules/jooby-assets-less4j/README.md index 4708b4459a..d38ca69789 100644 --- a/modules/jooby-assets-less4j/README.md +++ b/modules/jooby-assets-less4j/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-less4j/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-less4j/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-less4j.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-less4j/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-less4j/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-less4j/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-less4j.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-less4j/1.6.1) [![jooby-assets-less4j website](https://img.shields.io/badge/jooby-assets-less4j-brightgreen.svg)](http://jooby.org/doc/assets-less4j) # less4j @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-less4j - 1.6.0 + 1.6.1 provided ``` diff --git a/modules/jooby-assets-less4j/pom.xml b/modules/jooby-assets-less4j/pom.xml index 3cf1f3b32f..a1eb7bb57e 100644 --- a/modules/jooby-assets-less4j/pom.xml +++ b/modules/jooby-assets-less4j/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-assets-ng-annotate/README.md b/modules/jooby-assets-ng-annotate/README.md index 512d44a4cf..847212027c 100644 --- a/modules/jooby-assets-ng-annotate/README.md +++ b/modules/jooby-assets-ng-annotate/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-ng-annotate/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-ng-annotate/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-ng-annotate.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-ng-annotate/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-ng-annotate/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-ng-annotate/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-ng-annotate.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-ng-annotate/1.6.1) [![jooby-assets-ng-annotate website](https://img.shields.io/badge/jooby-assets-ng-annotate-brightgreen.svg)](http://jooby.org/doc/assets-ng-annotate) # ng-annotate @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-ng-annotate - 1.6.0 + 1.6.1 provided ``` diff --git a/modules/jooby-assets-ng-annotate/pom.xml b/modules/jooby-assets-ng-annotate/pom.xml index 769649f547..349f309e0a 100644 --- a/modules/jooby-assets-ng-annotate/pom.xml +++ b/modules/jooby-assets-ng-annotate/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-assets-nodejs/pom.xml b/modules/jooby-assets-nodejs/pom.xml index b0c3cb533d..4afb8d4f00 100644 --- a/modules/jooby-assets-nodejs/pom.xml +++ b/modules/jooby-assets-nodejs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-assets-requirejs/README.md b/modules/jooby-assets-requirejs/README.md index 752712f369..47588a6ff0 100644 --- a/modules/jooby-assets-requirejs/README.md +++ b/modules/jooby-assets-requirejs/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-requirejs/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-requirejs/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-requirejs.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-requirejs/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-requirejs/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-requirejs/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-requirejs.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-requirejs/1.6.1) [![jooby-assets-requirejs website](https://img.shields.io/badge/jooby-assets-requirejs-brightgreen.svg)](http://jooby.org/doc/assets-requirejs) # rjs @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-requirejs - 1.6.0 + 1.6.1 provided ``` diff --git a/modules/jooby-assets-requirejs/pom.xml b/modules/jooby-assets-requirejs/pom.xml index 74c17db0e8..ff5fb2fcc5 100644 --- a/modules/jooby-assets-requirejs/pom.xml +++ b/modules/jooby-assets-requirejs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-assets-rollup/README.md b/modules/jooby-assets-rollup/README.md index 1b634c9b54..87d0497f31 100644 --- a/modules/jooby-assets-rollup/README.md +++ b/modules/jooby-assets-rollup/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-rollup/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-rollup/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-rollup.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-rollup/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-rollup/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-rollup/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-rollup.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-rollup/1.6.1) [![jooby-assets-rollup website](https://img.shields.io/badge/jooby-assets-rollup-brightgreen.svg)](http://jooby.org/doc/assets-rollup) # rollup.js @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-rollup.js - 1.6.0 + 1.6.1 provided ``` diff --git a/modules/jooby-assets-rollup/pom.xml b/modules/jooby-assets-rollup/pom.xml index 22b4e20951..9fa1cd659e 100644 --- a/modules/jooby-assets-rollup/pom.xml +++ b/modules/jooby-assets-rollup/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-assets-sass/README.md b/modules/jooby-assets-sass/README.md index 0b7b9947c7..fe2ade9b95 100644 --- a/modules/jooby-assets-sass/README.md +++ b/modules/jooby-assets-sass/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-sass/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-sass/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-sass.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-sass/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-sass/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-sass/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-sass.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-sass/1.6.1) [![jooby-assets-sass website](https://img.shields.io/badge/jooby-assets-sass-brightgreen.svg)](http://jooby.org/doc/assets-sass) # sass @@ -13,7 +13,7 @@ org.jooby jooby-assets-sass - 1.6.0 + 1.6.1 provided ``` diff --git a/modules/jooby-assets-sass/pom.xml b/modules/jooby-assets-sass/pom.xml index e25d83045e..00e7f9d8d0 100644 --- a/modules/jooby-assets-sass/pom.xml +++ b/modules/jooby-assets-sass/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-assets-svg-sprites/README.md b/modules/jooby-assets-svg-sprites/README.md index db8214b2dc..be90ea6729 100644 --- a/modules/jooby-assets-svg-sprites/README.md +++ b/modules/jooby-assets-svg-sprites/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-svg-sprites/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-svg-sprites/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-svg-sprites.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-svg-sprites/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-svg-sprites/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-svg-sprites/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-svg-sprites.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-svg-sprites/1.6.1) [![jooby-assets-svg-sprites website](https://img.shields.io/badge/jooby-assets-svg-sprites-brightgreen.svg)](http://jooby.org/doc/assets-svg-sprites) # svg-sprites @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-svg-sprites - 1.6.0 + 1.6.1 provided ``` diff --git a/modules/jooby-assets-svg-sprites/pom.xml b/modules/jooby-assets-svg-sprites/pom.xml index d13d72b5e9..65c18dfcda 100644 --- a/modules/jooby-assets-svg-sprites/pom.xml +++ b/modules/jooby-assets-svg-sprites/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-assets-svg-symbol/README.md b/modules/jooby-assets-svg-symbol/README.md index 942274c70d..71d65ef755 100644 --- a/modules/jooby-assets-svg-symbol/README.md +++ b/modules/jooby-assets-svg-symbol/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-svg-symbol/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-svg-symbol/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-svg-symbol.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-svg-symbol/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-svg-symbol/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-svg-symbol/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-svg-symbol.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-svg-symbol/1.6.1) [![jooby-assets-svg-symbol website](https://img.shields.io/badge/jooby-assets-svg-symbol-brightgreen.svg)](http://jooby.org/doc/assets-svg-symbol) # svg-symbol @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-svg-symbol - 1.6.0 + 1.6.1 provided ``` diff --git a/modules/jooby-assets-svg-symbol/pom.xml b/modules/jooby-assets-svg-symbol/pom.xml index f995a412c9..09fd768a86 100644 --- a/modules/jooby-assets-svg-symbol/pom.xml +++ b/modules/jooby-assets-svg-symbol/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-assets-uglify/README.md b/modules/jooby-assets-uglify/README.md index 141b8915c2..1934513332 100644 --- a/modules/jooby-assets-uglify/README.md +++ b/modules/jooby-assets-uglify/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-uglify/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-uglify/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-uglify.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-uglify/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-uglify/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-uglify/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-uglify.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-uglify/1.6.1) [![jooby-assets-uglify website](https://img.shields.io/badge/jooby-assets-uglify-brightgreen.svg)](http://jooby.org/doc/assets-uglify) # uglify @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-uglify - 1.6.0 + 1.6.1 provided ``` diff --git a/modules/jooby-assets-uglify/pom.xml b/modules/jooby-assets-uglify/pom.xml index 3df4da3627..5ce85feb4f 100644 --- a/modules/jooby-assets-uglify/pom.xml +++ b/modules/jooby-assets-uglify/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-assets-yui-compressor/README.md b/modules/jooby-assets-yui-compressor/README.md index a283bd1a5a..c5fd172c61 100644 --- a/modules/jooby-assets-yui-compressor/README.md +++ b/modules/jooby-assets-yui-compressor/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-yui-compressor/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-yui-compressor/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-yui-compressor.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-yui-compressor/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-yui-compressor/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-yui-compressor/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-yui-compressor.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-yui-compressor/1.6.1) [![jooby-assets-yui-compressor website](https://img.shields.io/badge/jooby-assets-yui-compressor-brightgreen.svg)](http://jooby.org/doc/assets-yui-compressor) # yui-css @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-yui-compressor - 1.6.0 + 1.6.1 provided ``` diff --git a/modules/jooby-assets-yui-compressor/pom.xml b/modules/jooby-assets-yui-compressor/pom.xml index 8cd1bf3063..d73b7691a6 100644 --- a/modules/jooby-assets-yui-compressor/pom.xml +++ b/modules/jooby-assets-yui-compressor/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-assets/README.md b/modules/jooby-assets/README.md index b0554d8ad6..491353a61d 100644 --- a/modules/jooby-assets/README.md +++ b/modules/jooby-assets/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets.svg)](https://javadoc.io/doc/org.jooby/jooby-assets/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets.svg)](https://javadoc.io/doc/org.jooby/jooby-assets/1.6.1) [![jooby-assets website](https://img.shields.io/badge/jooby-assets-brightgreen.svg)](http://jooby.org/doc/assets) # assets @@ -13,7 +13,7 @@ A variety of processors are available: ([jshint](https://github.com/jooby-projec org.jooby jooby-assets - 1.6.0 + 1.6.1 ``` diff --git a/modules/jooby-assets/pom.xml b/modules/jooby-assets/pom.xml index 4e17cca01b..e012eb237f 100644 --- a/modules/jooby-assets/pom.xml +++ b/modules/jooby-assets/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-assets/src/main/java/org/jooby/assets/Bitwise.java b/modules/jooby-assets/src/main/java/org/jooby/assets/Bitwise.java index 5a06de30fc..75f2cf7f5d 100644 --- a/modules/jooby-assets/src/main/java/org/jooby/assets/Bitwise.java +++ b/modules/jooby-assets/src/main/java/org/jooby/assets/Bitwise.java @@ -1,3 +1,206 @@ +/** + * Apache License + * Version 2.0, January 2004 + * http://www.apache.org/licenses/ + * + * TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + * + * 1. Definitions. + * + * "License" shall mean the terms and conditions for use, reproduction, + * and distribution as defined by Sections 1 through 9 of this document. + * + * "Licensor" shall mean the copyright owner or entity authorized by + * the copyright owner that is granting the License. + * + * "Legal Entity" shall mean the union of the acting entity and all + * other entities that control, are controlled by, or are under common + * control with that entity. For the purposes of this definition, + * "control" means (i) the power, direct or indirect, to cause the + * direction or management of such entity, whether by contract or + * otherwise, or (ii) ownership of fifty percent (50%) or more of the + * outstanding shares, or (iii) beneficial ownership of such entity. + * + * "You" (or "Your") shall mean an individual or Legal Entity + * exercising permissions granted by this License. + * + * "Source" form shall mean the preferred form for making modifications, + * including but not limited to software source code, documentation + * source, and configuration files. + * + * "Object" form shall mean any form resulting from mechanical + * transformation or translation of a Source form, including but + * not limited to compiled object code, generated documentation, + * and conversions to other media types. + * + * "Work" shall mean the work of authorship, whether in Source or + * Object form, made available under the License, as indicated by a + * copyright notice that is included in or attached to the work + * (an example is provided in the Appendix below). + * + * "Derivative Works" shall mean any work, whether in Source or Object + * form, that is based on (or derived from) the Work and for which the + * editorial revisions, annotations, elaborations, or other modifications + * represent, as a whole, an original work of authorship. For the purposes + * of this License, Derivative Works shall not include works that remain + * separable from, or merely link (or bind by name) to the interfaces of, + * the Work and Derivative Works thereof. + * + * "Contribution" shall mean any work of authorship, including + * the original version of the Work and any modifications or additions + * to that Work or Derivative Works thereof, that is intentionally + * submitted to Licensor for inclusion in the Work by the copyright owner + * or by an individual or Legal Entity authorized to submit on behalf of + * the copyright owner. For the purposes of this definition, "submitted" + * means any form of electronic, verbal, or written communication sent + * to the Licensor or its representatives, including but not limited to + * communication on electronic mailing lists, source code control systems, + * and issue tracking systems that are managed by, or on behalf of, the + * Licensor for the purpose of discussing and improving the Work, but + * excluding communication that is conspicuously marked or otherwise + * designated in writing by the copyright owner as "Not a Contribution." + * + * "Contributor" shall mean Licensor and any individual or Legal Entity + * on behalf of whom a Contribution has been received by Licensor and + * subsequently incorporated within the Work. + * + * 2. Grant of Copyright License. Subject to the terms and conditions of + * this License, each Contributor hereby grants to You a perpetual, + * worldwide, non-exclusive, no-charge, royalty-free, irrevocable + * copyright license to reproduce, prepare Derivative Works of, + * publicly display, publicly perform, sublicense, and distribute the + * Work and such Derivative Works in Source or Object form. + * + * 3. Grant of Patent License. Subject to the terms and conditions of + * this License, each Contributor hereby grants to You a perpetual, + * worldwide, non-exclusive, no-charge, royalty-free, irrevocable + * (except as stated in this section) patent license to make, have made, + * use, offer to sell, sell, import, and otherwise transfer the Work, + * where such license applies only to those patent claims licensable + * by such Contributor that are necessarily infringed by their + * Contribution(s) alone or by combination of their Contribution(s) + * with the Work to which such Contribution(s) was submitted. If You + * institute patent litigation against any entity (including a + * cross-claim or counterclaim in a lawsuit) alleging that the Work + * or a Contribution incorporated within the Work constitutes direct + * or contributory patent infringement, then any patent licenses + * granted to You under this License for that Work shall terminate + * as of the date such litigation is filed. + * + * 4. Redistribution. You may reproduce and distribute copies of the + * Work or Derivative Works thereof in any medium, with or without + * modifications, and in Source or Object form, provided that You + * meet the following conditions: + * + * (a) You must give any other recipients of the Work or + * Derivative Works a copy of this License; and + * + * (b) You must cause any modified files to carry prominent notices + * stating that You changed the files; and + * + * (c) You must retain, in the Source form of any Derivative Works + * that You distribute, all copyright, patent, trademark, and + * attribution notices from the Source form of the Work, + * excluding those notices that do not pertain to any part of + * the Derivative Works; and + * + * (d) If the Work includes a "NOTICE" text file as part of its + * distribution, then any Derivative Works that You distribute must + * include a readable copy of the attribution notices contained + * within such NOTICE file, excluding those notices that do not + * pertain to any part of the Derivative Works, in at least one + * of the following places: within a NOTICE text file distributed + * as part of the Derivative Works; within the Source form or + * documentation, if provided along with the Derivative Works; or, + * within a display generated by the Derivative Works, if and + * wherever such third-party notices normally appear. The contents + * of the NOTICE file are for informational purposes only and + * do not modify the License. You may add Your own attribution + * notices within Derivative Works that You distribute, alongside + * or as an addendum to the NOTICE text from the Work, provided + * that such additional attribution notices cannot be construed + * as modifying the License. + * + * You may add Your own copyright statement to Your modifications and + * may provide additional or different license terms and conditions + * for use, reproduction, or distribution of Your modifications, or + * for any such Derivative Works as a whole, provided Your use, + * reproduction, and distribution of the Work otherwise complies with + * the conditions stated in this License. + * + * 5. Submission of Contributions. Unless You explicitly state otherwise, + * any Contribution intentionally submitted for inclusion in the Work + * by You to the Licensor shall be under the terms and conditions of + * this License, without any additional terms or conditions. + * Notwithstanding the above, nothing herein shall supersede or modify + * the terms of any separate license agreement you may have executed + * with Licensor regarding such Contributions. + * + * 6. Trademarks. This License does not grant permission to use the trade + * names, trademarks, service marks, or product names of the Licensor, + * except as required for reasonable and customary use in describing the + * origin of the Work and reproducing the content of the NOTICE file. + * + * 7. Disclaimer of Warranty. Unless required by applicable law or + * agreed to in writing, Licensor provides the Work (and each + * Contributor provides its Contributions) on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + * implied, including, without limitation, any warranties or conditions + * of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + * PARTICULAR PURPOSE. You are solely responsible for determining the + * appropriateness of using or redistributing the Work and assume any + * risks associated with Your exercise of permissions under this License. + * + * 8. Limitation of Liability. In no event and under no legal theory, + * whether in tort (including negligence), contract, or otherwise, + * unless required by applicable law (such as deliberate and grossly + * negligent acts) or agreed to in writing, shall any Contributor be + * liable to You for damages, including any direct, indirect, special, + * incidental, or consequential damages of any character arising as a + * result of this License or out of the use or inability to use the + * Work (including but not limited to damages for loss of goodwill, + * work stoppage, computer failure or malfunction, or any and all + * other commercial damages or losses), even if such Contributor + * has been advised of the possibility of such damages. + * + * 9. Accepting Warranty or Additional Liability. While redistributing + * the Work or Derivative Works thereof, You may choose to offer, + * and charge a fee for, acceptance of support, warranty, indemnity, + * or other liability obligations and/or rights consistent with this + * License. However, in accepting such obligations, You may act only + * on Your own behalf and on Your sole responsibility, not on behalf + * of any other Contributor, and only if You agree to indemnify, + * defend, and hold each Contributor harmless for any liability + * incurred by, or claims asserted against, such Contributor by reason + * of your accepting any such warranty or additional liability. + * + * END OF TERMS AND CONDITIONS + * + * APPENDIX: How to apply the Apache License to your work. + * + * To apply the Apache License to your work, attach the following + * boilerplate notice, with the fields enclosed by brackets "{}" + * replaced with your own identifying information. (Don't include + * the brackets!) The text should be enclosed in the appropriate + * comment syntax for the file format. We also recommend that a + * file or class name and description of purpose be included on the + * same "printed page" as the copyright notice for easier + * identification within third-party archives. + * + * Copyright 2014 Edgar Espina + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package org.jooby.assets; public class Bitwise { diff --git a/modules/jooby-aws/README.md b/modules/jooby-aws/README.md index 091d6c5178..1db2a3c4fe 100644 --- a/modules/jooby-aws/README.md +++ b/modules/jooby-aws/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-aws/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-aws/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-aws.svg)](https://javadoc.io/doc/org.jooby/jooby-aws/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-aws/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-aws/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-aws.svg)](https://javadoc.io/doc/org.jooby/jooby-aws/1.6.1) [![jooby-aws website](https://img.shields.io/badge/jooby-aws-brightgreen.svg)](http://jooby.org/doc/aws) # aws @@ -15,7 +15,7 @@ Small utility module that exports ```AmazonWebServiceClient``` services. org.jooby jooby-aws - 1.6.0 + 1.6.1 ``` diff --git a/modules/jooby-aws/pom.xml b/modules/jooby-aws/pom.xml index c7287d37c5..175468b570 100644 --- a/modules/jooby-aws/pom.xml +++ b/modules/jooby-aws/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-banner/README.md b/modules/jooby-banner/README.md index 67446de432..5b6d1ea016 100644 --- a/modules/jooby-banner/README.md +++ b/modules/jooby-banner/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-banner/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-banner/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-banner.svg)](https://javadoc.io/doc/org.jooby/jooby-banner/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-banner/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-banner/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-banner.svg)](https://javadoc.io/doc/org.jooby/jooby-banner/1.6.1) [![jooby-banner website](https://img.shields.io/badge/jooby-banner-brightgreen.svg)](http://jooby.org/doc/banner) # banner @@ -11,7 +11,7 @@ Prints out an ASCII art banner on startup using org.jooby jooby-caffeine - 1.6.0 + 1.6.1 ``` diff --git a/modules/jooby-caffeine/pom.xml b/modules/jooby-caffeine/pom.xml index 7f780f75cd..f539387383 100644 --- a/modules/jooby-caffeine/pom.xml +++ b/modules/jooby-caffeine/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-camel/README.md b/modules/jooby-camel/README.md index dfe0cc6fe9..8c1d9bdad8 100644 --- a/modules/jooby-camel/README.md +++ b/modules/jooby-camel/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-camel/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-camel/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-camel.svg)](https://javadoc.io/doc/org.jooby/jooby-camel/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-camel/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-camel/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-camel.svg)](https://javadoc.io/doc/org.jooby/jooby-camel/1.6.1) [![jooby-camel website](https://img.shields.io/badge/jooby-camel-brightgreen.svg)](http://jooby.org/doc/camel) # camel @@ -26,7 +26,7 @@ depend on [camel-guice](http://camel.apache.org/guice.html), but it provides sim org.jooby jooby-camel - 1.6.0 + 1.6.1 ``` diff --git a/modules/jooby-camel/pom.xml b/modules/jooby-camel/pom.xml index 2c16d9136a..5e1001b2b8 100644 --- a/modules/jooby-camel/pom.xml +++ b/modules/jooby-camel/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-cassandra/README.md b/modules/jooby-cassandra/README.md index 43f7b9cab1..d32365d01d 100644 --- a/modules/jooby-cassandra/README.md +++ b/modules/jooby-cassandra/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-cassandra/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-cassandra/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-cassandra.svg)](https://javadoc.io/doc/org.jooby/jooby-cassandra/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-cassandra/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-cassandra/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-cassandra.svg)](https://javadoc.io/doc/org.jooby/jooby-cassandra/1.6.1) [![jooby-cassandra website](https://img.shields.io/badge/jooby-cassandra-brightgreen.svg)](http://jooby.org/doc/cassandra) # cassandra @@ -13,7 +13,7 @@ This module offers cassandra database org.jooby jooby-cassandra - 1.6.0 + 1.6.1 ``` @@ -211,7 +211,7 @@ A [Session.Store](/apidocs/org/jooby/cassandra/CassandraSessionStore.html) power org.jooby jooby-cassandra - 1.6.0 + 1.6.1 ``` diff --git a/modules/jooby-cassandra/pom.xml b/modules/jooby-cassandra/pom.xml index 2c0c73cab5..7fa5297956 100644 --- a/modules/jooby-cassandra/pom.xml +++ b/modules/jooby-cassandra/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-commons-email/README.md b/modules/jooby-commons-email/README.md index e42aa774d2..97a5e291c1 100644 --- a/modules/jooby-commons-email/README.md +++ b/modules/jooby-commons-email/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-commons-email/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-commons-email/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-commons-email.svg)](https://javadoc.io/doc/org.jooby/jooby-commons-email/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-commons-email/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-commons-email/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-commons-email.svg)](https://javadoc.io/doc/org.jooby/jooby-commons-email/1.6.1) [![jooby-commons-email website](https://img.shields.io/badge/jooby-commons-email-brightgreen.svg)](http://jooby.org/doc/commons-email) # commons-email @@ -19,7 +19,7 @@ Small but helpful module that provides access to ```Email``` instances. org.jooby jooby-commons-email - 1.6.0 + 1.6.1 ``` diff --git a/modules/jooby-commons-email/pom.xml b/modules/jooby-commons-email/pom.xml index 07c8223c4f..249c9274a0 100644 --- a/modules/jooby-commons-email/pom.xml +++ b/modules/jooby-commons-email/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-consul/README.md b/modules/jooby-consul/README.md index 5862e1c9d1..05cd53e22d 100644 --- a/modules/jooby-consul/README.md +++ b/modules/jooby-consul/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-consul/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-consul/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-consul.svg)](https://javadoc.io/doc/org.jooby/jooby-consul/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-consul/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-consul/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-consul.svg)](https://javadoc.io/doc/org.jooby/jooby-consul/1.6.1) [![jooby-consul website](https://img.shields.io/badge/jooby-consul-brightgreen.svg)](http://jooby.org/doc/consul) # consul @@ -15,7 +15,7 @@ Also register the application as a service and setup a health check. org.jooby jooby-consul - 1.6.0 + 1.6.1 ``` diff --git a/modules/jooby-consul/pom.xml b/modules/jooby-consul/pom.xml index a8d48054af..58123e3310 100644 --- a/modules/jooby-consul/pom.xml +++ b/modules/jooby-consul/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-couchbase/README.md b/modules/jooby-couchbase/README.md index d3d197715b..ee3e671aec 100644 --- a/modules/jooby-couchbase/README.md +++ b/modules/jooby-couchbase/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-couchbase/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-couchbase/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-couchbase.svg)](https://javadoc.io/doc/org.jooby/jooby-couchbase/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-couchbase/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-couchbase/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-couchbase.svg)](https://javadoc.io/doc/org.jooby/jooby-couchbase/1.6.1) [![jooby-couchbase website](https://img.shields.io/badge/jooby-couchbase-brightgreen.svg)](http://jooby.org/doc/couchbase) # couchbase @@ -13,7 +13,7 @@ This module provides couchbase access via org.jooby jooby-couchbase - 1.6.0 + 1.6.1 ``` @@ -307,7 +307,7 @@ A [Session.Store](/apidocs/org/jooby/couchbase/CouchbaseSessionStore) powered by org.jooby jooby-couchbase - 1.6.0 + 1.6.1 ``` diff --git a/modules/jooby-couchbase/pom.xml b/modules/jooby-couchbase/pom.xml index b51610c83f..7df1067be2 100644 --- a/modules/jooby-couchbase/pom.xml +++ b/modules/jooby-couchbase/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-crash/README.md b/modules/jooby-crash/README.md index 62acf2dad6..1081d6970c 100644 --- a/modules/jooby-crash/README.md +++ b/modules/jooby-crash/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-crash/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-crash/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-crash.svg)](https://javadoc.io/doc/org.jooby/jooby-crash/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-crash/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-crash/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-crash.svg)](https://javadoc.io/doc/org.jooby/jooby-crash/1.6.1) [![jooby-crash website](https://img.shields.io/badge/jooby-crash-brightgreen.svg)](http://jooby.org/doc/crash) # crash @@ -11,7 +11,7 @@ org.jooby jooby-crash - 1.6.0 + 1.6.1 ``` diff --git a/modules/jooby-crash/pom.xml b/modules/jooby-crash/pom.xml index a8e670db99..e547a048fb 100644 --- a/modules/jooby-crash/pom.xml +++ b/modules/jooby-crash/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-csl/README.md b/modules/jooby-csl/README.md index 741eb729a3..48ebe830ef 100644 --- a/modules/jooby-csl/README.md +++ b/modules/jooby-csl/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-csl/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-csl/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-csl.svg)](https://javadoc.io/doc/org.jooby/jooby-csl/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-csl/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-csl/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-csl.svg)](https://javadoc.io/doc/org.jooby/jooby-csl/1.6.1) [![jooby-csl website](https://img.shields.io/badge/jooby-csl-brightgreen.svg)](http://jooby.org/doc/csl) # csl @@ -11,7 +11,7 @@ org.jooby jooby-csl - 1.6.0 + 1.6.1 ``` diff --git a/modules/jooby-csl/pom.xml b/modules/jooby-csl/pom.xml index 65fd1d8922..aa278ad951 100644 --- a/modules/jooby-csl/pom.xml +++ b/modules/jooby-csl/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-dist/pom.xml b/modules/jooby-dist/pom.xml index 4f075bdec7..64fc703a8c 100644 --- a/modules/jooby-dist/pom.xml +++ b/modules/jooby-dist/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-ebean/README.md b/modules/jooby-ebean/README.md index 99b9b039a5..15dadb5805 100644 --- a/modules/jooby-ebean/README.md +++ b/modules/jooby-ebean/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-ebean/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-ebean/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-ebean.svg)](https://javadoc.io/doc/org.jooby/jooby-ebean/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-ebean/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-ebean/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-ebean.svg)](https://javadoc.io/doc/org.jooby/jooby-ebean/1.6.1) [![jooby-ebean website](https://img.shields.io/badge/jooby-ebean-brightgreen.svg)](http://jooby.org/doc/ebean) # ebean @@ -17,7 +17,7 @@ Object-Relational-Mapping via [Ebean ORM](http://ebean-orm.github.io). It config org.jooby jooby-ebean - 1.6.0 + 1.6.1 ``` diff --git a/modules/jooby-ebean/pom.xml b/modules/jooby-ebean/pom.xml index c072dddde1..2499534ac5 100644 --- a/modules/jooby-ebean/pom.xml +++ b/modules/jooby-ebean/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-ehcache/README.md b/modules/jooby-ehcache/README.md index 21ca590385..e424ba0781 100644 --- a/modules/jooby-ehcache/README.md +++ b/modules/jooby-ehcache/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-ehcache/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-ehcache/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-ehcache.svg)](https://javadoc.io/doc/org.jooby/jooby-ehcache/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-ehcache/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-ehcache/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-ehcache.svg)](https://javadoc.io/doc/org.jooby/jooby-ehcache/1.6.1) [![jooby-ehcache website](https://img.shields.io/badge/jooby-ehcache-brightgreen.svg)](http://jooby.org/doc/ehcache) # ehcache @@ -16,7 +16,7 @@ Provides advanced cache features via [Ehcache](http://ehcache.org) org.jooby jooby-ehcache - 1.6.0 + 1.6.1 ``` @@ -120,7 +120,7 @@ Please note the ```default``` cache works as a template and isn't a real/usable org.jooby jooby-ehcache - 1.6.0 + 1.6.1 ``` diff --git a/modules/jooby-ehcache/pom.xml b/modules/jooby-ehcache/pom.xml index 2156dce2a3..0f9dfe543e 100644 --- a/modules/jooby-ehcache/pom.xml +++ b/modules/jooby-ehcache/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-elasticsearch/README.md b/modules/jooby-elasticsearch/README.md index 2d90db5a1f..f1be78ba2d 100644 --- a/modules/jooby-elasticsearch/README.md +++ b/modules/jooby-elasticsearch/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-elasticsearch/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-elasticsearch/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-elasticsearch.svg)](https://javadoc.io/doc/org.jooby/jooby-elasticsearch/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-elasticsearch/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-elasticsearch/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-elasticsearch.svg)](https://javadoc.io/doc/org.jooby/jooby-elasticsearch/1.6.1) [![jooby-elasticsearch website](https://img.shields.io/badge/jooby-elasticsearch-brightgreen.svg)](http://jooby.org/doc/elasticsearch) # elasticsearch @@ -15,7 +15,7 @@ Open Source, Distributed, RESTful Search Engine via [Elastic Search](https://git org.jooby jooby-elasticsearch - 1.6.0 + 1.6.1 ``` diff --git a/modules/jooby-elasticsearch/pom.xml b/modules/jooby-elasticsearch/pom.xml index dcba782f75..d55bb5b9e6 100644 --- a/modules/jooby-elasticsearch/pom.xml +++ b/modules/jooby-elasticsearch/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-eventbus/README.md b/modules/jooby-eventbus/README.md index 1de5941219..e7cc0a6815 100644 --- a/modules/jooby-eventbus/README.md +++ b/modules/jooby-eventbus/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-eventbus/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-eventbus/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-eventbus.svg)](https://javadoc.io/doc/org.jooby/jooby-eventbus/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-eventbus/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-eventbus/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-eventbus.svg)](https://javadoc.io/doc/org.jooby/jooby-eventbus/1.6.1) [![jooby-eventbus website](https://img.shields.io/badge/jooby-eventbus-brightgreen.svg)](http://jooby.org/doc/eventbus) # EventBus @@ -15,7 +15,7 @@ org.jooby jooby-eventbus - 1.6.0 + 1.6.1 ``` diff --git a/modules/jooby-eventbus/pom.xml b/modules/jooby-eventbus/pom.xml index bb5514f72a..3cdc5ec1e9 100644 --- a/modules/jooby-eventbus/pom.xml +++ b/modules/jooby-eventbus/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-executor/README.md b/modules/jooby-executor/README.md index f77f812097..481e7c38bd 100644 --- a/modules/jooby-executor/README.md +++ b/modules/jooby-executor/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-executor/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-executor/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-executor.svg)](https://javadoc.io/doc/org.jooby/jooby-executor/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-executor/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-executor/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-executor.svg)](https://javadoc.io/doc/org.jooby/jooby-executor/1.6.1) [![jooby-executor website](https://img.shields.io/badge/jooby-executor-brightgreen.svg)](http://jooby.org/doc/executor) # executor @@ -15,7 +15,7 @@ Manage the life cycle of {@link ExecutorService} and build async apps, schedule org.jooby jooby-executor - 1.6.0 + 1.6.1 ``` diff --git a/modules/jooby-executor/pom.xml b/modules/jooby-executor/pom.xml index 4da4e31185..c912e2763a 100644 --- a/modules/jooby-executor/pom.xml +++ b/modules/jooby-executor/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-exposed/README.md b/modules/jooby-exposed/README.md index d8fe16c560..5061a0536b 100644 --- a/modules/jooby-exposed/README.md +++ b/modules/jooby-exposed/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-exposed/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-exposed/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-exposed.svg)](https://javadoc.io/doc/org.jooby/jooby-exposed/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-exposed/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-exposed/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-exposed.svg)](https://javadoc.io/doc/org.jooby/jooby-exposed/1.6.1) [![jooby-exposed website](https://img.shields.io/badge/jooby-exposed-brightgreen.svg)](http://jooby.org/doc/exposed) # exposed diff --git a/modules/jooby-exposed/pom.xml b/modules/jooby-exposed/pom.xml index 98b03a674c..2af1e5b525 100644 --- a/modules/jooby-exposed/pom.xml +++ b/modules/jooby-exposed/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-filewatcher/README.md b/modules/jooby-filewatcher/README.md index cd4fe7ae62..93031d57f0 100644 --- a/modules/jooby-filewatcher/README.md +++ b/modules/jooby-filewatcher/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-filewatcher/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-filewatcher/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-filewatcher.svg)](https://javadoc.io/doc/org.jooby/jooby-filewatcher/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-filewatcher/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-filewatcher/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-filewatcher.svg)](https://javadoc.io/doc/org.jooby/jooby-filewatcher/1.6.1) [![jooby-filewatcher website](https://img.shields.io/badge/jooby-filewatcher-brightgreen.svg)](http://jooby.org/doc/filewatcher) # file watcher @@ -11,7 +11,7 @@ Watches for file system changes or event. It uses a watch service to monitor a d org.jooby jooby-file watcher - 1.6.0 + 1.6.1 ``` diff --git a/modules/jooby-filewatcher/pom.xml b/modules/jooby-filewatcher/pom.xml index 20d2c867e4..5aede65fe7 100644 --- a/modules/jooby-filewatcher/pom.xml +++ b/modules/jooby-filewatcher/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-flyway/README.md b/modules/jooby-flyway/README.md index 7379a0ebf5..2a3cc0bcd8 100644 --- a/modules/jooby-flyway/README.md +++ b/modules/jooby-flyway/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-flyway/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-flyway/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-flyway.svg)](https://javadoc.io/doc/org.jooby/jooby-flyway/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-flyway/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-flyway/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-flyway.svg)](https://javadoc.io/doc/org.jooby/jooby-flyway/1.6.1) [![jooby-flyway website](https://img.shields.io/badge/jooby-flyway-brightgreen.svg)](http://jooby.org/doc/flyway) # flyway @@ -15,7 +15,7 @@ This module run [Flyway](http://flywaydb.org) on startup and apply database migr org.jooby jooby-flyway - 1.6.0 + 1.6.1 ``` diff --git a/modules/jooby-flyway/pom.xml b/modules/jooby-flyway/pom.xml index 6b1ebf2933..885e4f6a19 100644 --- a/modules/jooby-flyway/pom.xml +++ b/modules/jooby-flyway/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-frontend/README.md b/modules/jooby-frontend/README.md index 62816c7628..810f518119 100644 --- a/modules/jooby-frontend/README.md +++ b/modules/jooby-frontend/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-frontend/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-frontend/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-frontend.svg)](https://javadoc.io/doc/org.jooby/jooby-frontend/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-frontend/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-frontend/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-frontend.svg)](https://javadoc.io/doc/org.jooby/jooby-frontend/1.6.1) [![jooby-frontend website](https://img.shields.io/badge/jooby-frontend-brightgreen.svg)](http://jooby.org/doc/frontend) # frontend @@ -12,7 +12,7 @@ runs npm, w org.jooby jooby-frontend - 1.6.0 + 1.6.1 ``` diff --git a/modules/jooby-frontend/pom.xml b/modules/jooby-frontend/pom.xml index 44598870ae..ea8cee4067 100644 --- a/modules/jooby-frontend/pom.xml +++ b/modules/jooby-frontend/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-ftl/README.md b/modules/jooby-ftl/README.md index eca21edb90..c335d8d434 100644 --- a/modules/jooby-ftl/README.md +++ b/modules/jooby-ftl/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-ftl/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-ftl/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-ftl.svg)](https://javadoc.io/doc/org.jooby/jooby-ftl/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-ftl/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-ftl/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-ftl.svg)](https://javadoc.io/doc/org.jooby/jooby-ftl/1.6.1) [![jooby-ftl website](https://img.shields.io/badge/jooby-ftl-brightgreen.svg)](http://jooby.org/doc/ftl) # freemarker @@ -16,7 +16,7 @@ org.jooby jooby-ftl - 1.6.0 + 1.6.1 ``` diff --git a/modules/jooby-ftl/pom.xml b/modules/jooby-ftl/pom.xml index a5edd4689b..9f4db6b98a 100644 --- a/modules/jooby-ftl/pom.xml +++ b/modules/jooby-ftl/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-gradle-plugin/README.md b/modules/jooby-gradle-plugin/README.md index 52fe1138a4..dd2f3baecf 100644 --- a/modules/jooby-gradle-plugin/README.md +++ b/modules/jooby-gradle-plugin/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-gradle-plugin/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-gradle-plugin/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-gradle-plugin.svg)](https://javadoc.io/doc/org.jooby/jooby-gradle-plugin/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-gradle-plugin/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-gradle-plugin/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-gradle-plugin.svg)](https://javadoc.io/doc/org.jooby/jooby-gradle-plugin/1.6.1) [![jooby-gradle-plugin website](https://img.shields.io/badge/jooby-gradle-plugin-brightgreen.svg)](http://jooby.org/doc/gradle-plugin) # gradle plugin @@ -21,7 +21,7 @@ buildscript { dependencies { /** joobyRun */ - classpath group: 'org.jooby', name: 'jooby-gradle-plugin', version: '1.6.0' + classpath group: 'org.jooby', name: 'jooby-gradle-plugin', version: '1.6.1' } } diff --git a/modules/jooby-gradle-plugin/pom.xml b/modules/jooby-gradle-plugin/pom.xml index 11cebe4fbb..2a64435c3f 100644 --- a/modules/jooby-gradle-plugin/pom.xml +++ b/modules/jooby-gradle-plugin/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-gson/README.md b/modules/jooby-gson/README.md index 17b46abeb6..d950bdea2f 100644 --- a/modules/jooby-gson/README.md +++ b/modules/jooby-gson/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-gson/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-gson/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-gson.svg)](https://javadoc.io/doc/org.jooby/jooby-gson/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-gson/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-gson/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-gson.svg)](https://javadoc.io/doc/org.jooby/jooby-gson/1.6.1) [![jooby-gson website](https://img.shields.io/badge/jooby-gson-brightgreen.svg)](http://jooby.org/doc/gson) # gson @@ -17,7 +17,7 @@ JSON support via [Gson](https://github.com/google/gson) library. org.jooby jooby-gson - 1.6.0 + 1.6.1 ``` diff --git a/modules/jooby-gson/pom.xml b/modules/jooby-gson/pom.xml index e10dc7f731..a11974a343 100644 --- a/modules/jooby-gson/pom.xml +++ b/modules/jooby-gson/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-guava-cache/README.md b/modules/jooby-guava-cache/README.md index e4749ee25e..fa91715d00 100644 --- a/modules/jooby-guava-cache/README.md +++ b/modules/jooby-guava-cache/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-guava-cache/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-guava-cache/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-guava-cache.svg)](https://javadoc.io/doc/org.jooby/jooby-guava-cache/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-guava-cache/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-guava-cache/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-guava-cache.svg)](https://javadoc.io/doc/org.jooby/jooby-guava-cache/1.6.1) [![jooby-guava-cache website](https://img.shields.io/badge/jooby-guava-cache-brightgreen.svg)](http://jooby.org/doc/guava-cache) # guava-cache @@ -15,7 +15,7 @@ Provides cache solution and session storage via: Hibernate ORM org.jooby jooby-hbm - 1.6.0 + 1.6.1 ``` diff --git a/modules/jooby-hbm/pom.xml b/modules/jooby-hbm/pom.xml index c33314d710..957eea1dc0 100644 --- a/modules/jooby-hbm/pom.xml +++ b/modules/jooby-hbm/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-hbs/README.md b/modules/jooby-hbs/README.md index 205424eee2..fabb00bcd2 100644 --- a/modules/jooby-hbs/README.md +++ b/modules/jooby-hbs/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-hbs/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-hbs/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-hbs.svg)](https://javadoc.io/doc/org.jooby/jooby-hbs/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-hbs/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-hbs/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-hbs.svg)](https://javadoc.io/doc/org.jooby/jooby-hbs/1.6.1) [![jooby-hbs website](https://img.shields.io/badge/jooby-hbs-brightgreen.svg)](http://jooby.org/doc/hbs) # handlebars @@ -16,7 +16,7 @@ Logic-less and semantic templates via [Handlebars.java](https://github.com/jknac org.jooby jooby-hbs - 1.6.0 + 1.6.1 ``` diff --git a/modules/jooby-hbs/pom.xml b/modules/jooby-hbs/pom.xml index f6fe581234..2187f62e01 100644 --- a/modules/jooby-hbs/pom.xml +++ b/modules/jooby-hbs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-hbv/README.md b/modules/jooby-hbv/README.md index 1296b9722d..6c8cb009f3 100644 --- a/modules/jooby-hbv/README.md +++ b/modules/jooby-hbv/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-hbv/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-hbv/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-hbv.svg)](https://javadoc.io/doc/org.jooby/jooby-hbv/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-hbv/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-hbv/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-hbv.svg)](https://javadoc.io/doc/org.jooby/jooby-hbv/1.6.1) [![jooby-hbv website](https://img.shields.io/badge/jooby-hbv-brightgreen.svg)](http://jooby.org/doc/hbv) # hibernate validator @@ -17,7 +17,7 @@ Bean validation via [Hibernate Validator](hibernate.org/validator). org.jooby jooby-hbv - 1.6.0 + 1.6.1 ``` diff --git a/modules/jooby-hbv/pom.xml b/modules/jooby-hbv/pom.xml index 3e055fbbce..dfafd53da7 100644 --- a/modules/jooby-hbv/pom.xml +++ b/modules/jooby-hbv/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-jackson/README.md b/modules/jooby-jackson/README.md index 798dc5f6be..a7e80a8a47 100644 --- a/modules/jooby-jackson/README.md +++ b/modules/jooby-jackson/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jackson/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jackson/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jackson.svg)](https://javadoc.io/doc/org.jooby/jooby-jackson/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jackson/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jackson/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jackson.svg)](https://javadoc.io/doc/org.jooby/jooby-jackson/1.6.1) [![jooby-jackson website](https://img.shields.io/badge/jooby-jackson-brightgreen.svg)](http://jooby.org/doc/jackson) # jackson @@ -17,7 +17,7 @@ JSON support from the excellent [Jackson](https://github.com/FasterXML/jackson) org.jooby jooby-jackson - 1.6.0 + 1.6.1 ``` diff --git a/modules/jooby-jackson/pom.xml b/modules/jooby-jackson/pom.xml index c3ba8630ac..a96856b50b 100644 --- a/modules/jooby-jackson/pom.xml +++ b/modules/jooby-jackson/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-jade/README.md b/modules/jooby-jade/README.md index 66207e8d9e..034d2755ff 100644 --- a/modules/jooby-jade/README.md +++ b/modules/jooby-jade/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jade/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jade/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jade.svg)](https://javadoc.io/doc/org.jooby/jooby-jade/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jade/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jade/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jade.svg)](https://javadoc.io/doc/org.jooby/jooby-jade/1.6.1) [![jooby-jade website](https://img.shields.io/badge/jooby-jade-brightgreen.svg)](http://jooby.org/doc/jade) # jade @@ -16,7 +16,7 @@ org.jooby jooby-jade - 1.6.0 + 1.6.1 ``` diff --git a/modules/jooby-jade/pom.xml b/modules/jooby-jade/pom.xml index 430ab0947c..e451ce02df 100644 --- a/modules/jooby-jade/pom.xml +++ b/modules/jooby-jade/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-jdbc/README.md b/modules/jooby-jdbc/README.md index 179f604e6a..99887f9eff 100644 --- a/modules/jooby-jdbc/README.md +++ b/modules/jooby-jdbc/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jdbc/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jdbc/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jdbc.svg)](https://javadoc.io/doc/org.jooby/jooby-jdbc/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jdbc/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jdbc/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jdbc.svg)](https://javadoc.io/doc/org.jooby/jooby-jdbc/1.6.1) [![jooby-jdbc website](https://img.shields.io/badge/jooby-jdbc-brightgreen.svg)](http://jooby.org/doc/jdbc) # jdbc @@ -15,7 +15,7 @@ Production-ready jdbc data source, powered by the [HikariCP](https://github.com/ org.jooby jooby-jdbc - 1.6.0 + 1.6.1 ``` diff --git a/modules/jooby-jdbc/pom.xml b/modules/jooby-jdbc/pom.xml index 750cbac7e4..f760b46896 100644 --- a/modules/jooby-jdbc/pom.xml +++ b/modules/jooby-jdbc/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-jdbi/README.md b/modules/jooby-jdbi/README.md index 21e9649dfe..963fe6fa13 100644 --- a/modules/jooby-jdbi/README.md +++ b/modules/jooby-jdbi/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jdbi/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jdbi/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jdbi.svg)](https://javadoc.io/doc/org.jooby/jooby-jdbi/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jdbi/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jdbi/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jdbi.svg)](https://javadoc.io/doc/org.jooby/jooby-jdbi/1.6.1) [![jooby-jdbi website](https://img.shields.io/badge/jooby-jdbi-brightgreen.svg)](http://jooby.org/doc/jdbi) # jdbi @@ -21,7 +21,7 @@ org.jooby jooby-jdbi - 1.6.0 + 1.6.1 ``` diff --git a/modules/jooby-jdbi/pom.xml b/modules/jooby-jdbi/pom.xml index 340246de18..2dca857028 100644 --- a/modules/jooby-jdbi/pom.xml +++ b/modules/jooby-jdbi/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-jdbi3/README.md b/modules/jooby-jdbi3/README.md index de95d55296..84415c7c09 100644 --- a/modules/jooby-jdbi3/README.md +++ b/modules/jooby-jdbi3/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jdbi3/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jdbi3/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jdbi3.svg)](https://javadoc.io/doc/org.jooby/jooby-jdbi3/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jdbi3/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jdbi3/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jdbi3.svg)](https://javadoc.io/doc/org.jooby/jooby-jdbi3/1.6.1) [![jooby-jdbi3 website](https://img.shields.io/badge/jooby-jdbi3-brightgreen.svg)](http://jooby.org/doc/jdbi3) # jdbi @@ -17,7 +17,7 @@ org.jooby jooby-jdbi3 - 1.6.0 + 1.6.1 ``` diff --git a/modules/jooby-jdbi3/pom.xml b/modules/jooby-jdbi3/pom.xml index db7f504d1b..14a90cb631 100644 --- a/modules/jooby-jdbi3/pom.xml +++ b/modules/jooby-jdbi3/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-jedis/README.md b/modules/jooby-jedis/README.md index 589ea5fe1d..f72c10084c 100644 --- a/modules/jooby-jedis/README.md +++ b/modules/jooby-jedis/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jedis/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jedis/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jedis.svg)](https://javadoc.io/doc/org.jooby/jooby-jedis/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jedis/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jedis/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jedis.svg)](https://javadoc.io/doc/org.jooby/jooby-jedis/1.6.1) [![jooby-jedis website](https://img.shields.io/badge/jooby-jedis-brightgreen.svg)](http://jooby.org/doc/jedis) # jedis @@ -11,7 +11,7 @@ org.jooby jooby-jedis - 1.6.0 + 1.6.1 ``` @@ -99,7 +99,7 @@ For more information about [Jedis](https://github.com/xetorthio/jedis) checkout org.jooby jooby-jedis - 1.6.0 + 1.6.1 ``` diff --git a/modules/jooby-jedis/pom.xml b/modules/jooby-jedis/pom.xml index 7e9a386e79..37edd8ae36 100644 --- a/modules/jooby-jedis/pom.xml +++ b/modules/jooby-jedis/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-jetty/README.md b/modules/jooby-jetty/README.md index 6f4b46f2d4..7aaab69306 100644 --- a/modules/jooby-jetty/README.md +++ b/modules/jooby-jetty/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jetty/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jetty/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jetty.svg)](https://javadoc.io/doc/org.jooby/jooby-jetty/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jetty/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jetty/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jetty.svg)](https://javadoc.io/doc/org.jooby/jooby-jetty/1.6.1) [![jooby-jetty website](https://img.shields.io/badge/jooby-jetty-brightgreen.svg)](http://jooby.org/doc/jetty) # jetty @@ -15,7 +15,7 @@ org.jooby jooby-jetty - 1.6.0 + 1.6.1 ``` diff --git a/modules/jooby-jetty/pom.xml b/modules/jooby-jetty/pom.xml index 65b48aefb8..d5bf446a97 100644 --- a/modules/jooby-jetty/pom.xml +++ b/modules/jooby-jetty/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-jongo/README.md b/modules/jooby-jongo/README.md index 3a172531ff..9cefe9c779 100644 --- a/modules/jooby-jongo/README.md +++ b/modules/jooby-jongo/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jongo/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jongo/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jongo.svg)](https://javadoc.io/doc/org.jooby/jooby-jongo/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jongo/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jongo/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jongo.svg)](https://javadoc.io/doc/org.jooby/jooby-jongo/1.6.1) [![jooby-jongo website](https://img.shields.io/badge/jooby-jongo-brightgreen.svg)](http://jooby.org/doc/jongo) # jongo @@ -17,7 +17,7 @@ org.jooby jooby-jongo - 1.6.0 + 1.6.1 ``` diff --git a/modules/jooby-jongo/pom.xml b/modules/jooby-jongo/pom.xml index 7b4ae3b129..b899f08319 100644 --- a/modules/jooby-jongo/pom.xml +++ b/modules/jooby-jongo/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-jooq/README.md b/modules/jooby-jooq/README.md index 08f4955198..5064ddc59c 100644 --- a/modules/jooby-jooq/README.md +++ b/modules/jooby-jooq/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jooq/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jooq/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jooq.svg)](https://javadoc.io/doc/org.jooby/jooby-jooq/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jooq/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jooq/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jooq.svg)](https://javadoc.io/doc/org.jooby/jooby-jooq/1.6.1) [![jooby-jooq website](https://img.shields.io/badge/jooby-jooq-brightgreen.svg)](http://jooby.org/doc/jooq) # jOOQ @@ -17,7 +17,7 @@ org.jooby jooby-jooq - 1.6.0 + 1.6.1 ``` diff --git a/modules/jooby-jooq/pom.xml b/modules/jooby-jooq/pom.xml index c337a0b6bb..f4f7b9f849 100644 --- a/modules/jooby-jooq/pom.xml +++ b/modules/jooby-jooq/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-lang-kotlin/README.md b/modules/jooby-lang-kotlin/README.md index 5836db3a00..a6208bb764 100644 --- a/modules/jooby-lang-kotlin/README.md +++ b/modules/jooby-lang-kotlin/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-lang-kotlin/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-lang-kotlin/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-lang-kotlin.svg)](https://javadoc.io/doc/org.jooby/jooby-lang-kotlin/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-lang-kotlin/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-lang-kotlin/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-lang-kotlin.svg)](https://javadoc.io/doc/org.jooby/jooby-lang-kotlin/1.6.1) [![jooby-lang-kotlin website](https://img.shields.io/badge/jooby-lang-kotlin-brightgreen.svg)](http://jooby.org/doc/lang-kotlin) # kotlin @@ -11,7 +11,7 @@ A tiny module that makes a Jooby application more Kotlin idiomatic. org.jooby jooby-lang-kotlin - 1.6.0 + 1.6.1 ``` diff --git a/modules/jooby-lang-kotlin/pom.xml b/modules/jooby-lang-kotlin/pom.xml index 4ba15239a6..99008d47ab 100644 --- a/modules/jooby-lang-kotlin/pom.xml +++ b/modules/jooby-lang-kotlin/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-livereload/README.md b/modules/jooby-livereload/README.md index 91863f744f..8ffd2b397e 100644 --- a/modules/jooby-livereload/README.md +++ b/modules/jooby-livereload/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-livereload/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-livereload/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-livereload.svg)](https://javadoc.io/doc/org.jooby/jooby-livereload/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-livereload/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-livereload/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-livereload.svg)](https://javadoc.io/doc/org.jooby/jooby-livereload/1.6.1) [![jooby-livereload website](https://img.shields.io/badge/jooby-livereload-brightgreen.svg)](http://jooby.org/doc/livereload) # liveReload @@ -18,7 +18,7 @@ Even cooler, when you change a CSS file or an image, the browser is updated inst org.jooby jooby-livereload - 1.6.0 + 1.6.1 ``` diff --git a/modules/jooby-livereload/pom.xml b/modules/jooby-livereload/pom.xml index 5d48a01dd0..fe1a783708 100644 --- a/modules/jooby-livereload/pom.xml +++ b/modules/jooby-livereload/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 jooby-livereload jooby-livereload diff --git a/modules/jooby-maven-plugin/README.md b/modules/jooby-maven-plugin/README.md index e099853aae..d5dfb75fe7 100644 --- a/modules/jooby-maven-plugin/README.md +++ b/modules/jooby-maven-plugin/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-maven-plugin/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-maven-plugin/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-maven-plugin.svg)](https://javadoc.io/doc/org.jooby/jooby-maven-plugin/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-maven-plugin/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-maven-plugin/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-maven-plugin.svg)](https://javadoc.io/doc/org.jooby/jooby-maven-plugin/1.6.1) [![jooby-maven-plugin website](https://img.shields.io/badge/jooby-maven-plugin-brightgreen.svg)](http://jooby.org/doc/maven-plugin) # maven @@ -43,7 +43,7 @@ It's worth to mention that dynamic reload of classes is done via [JBoss Modules] org.jooby jooby-maven-plugin - 1.6.0 + 1.6.1 ${application.class} @@ -117,7 +117,7 @@ List of commands to execute before starting the ```application```. Useful for [n org.jooby jooby-maven-plugin - 1.6.0 + 1.6.1 ${application.class} @@ -138,7 +138,7 @@ Set one or more ```JVM args```: org.jooby jooby-maven-plugin - 1.6.0 + 1.6.1 ${application.class} true diff --git a/modules/jooby-maven-plugin/pom.xml b/modules/jooby-maven-plugin/pom.xml index a9588ecff5..8a1e8f5673 100644 --- a/modules/jooby-maven-plugin/pom.xml +++ b/modules/jooby-maven-plugin/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-metrics/README.md b/modules/jooby-metrics/README.md index f53a9a5228..0784778a74 100644 --- a/modules/jooby-metrics/README.md +++ b/modules/jooby-metrics/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-metrics/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-metrics/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-metrics.svg)](https://javadoc.io/doc/org.jooby/jooby-metrics/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-metrics/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-metrics/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-metrics.svg)](https://javadoc.io/doc/org.jooby/jooby-metrics/1.6.1) [![jooby-metrics website](https://img.shields.io/badge/jooby-metrics-brightgreen.svg)](http://jooby.org/doc/metrics) # metrics @@ -11,7 +11,7 @@ org.jooby jooby-metrics - 1.6.0 + 1.6.1 ``` diff --git a/modules/jooby-metrics/pom.xml b/modules/jooby-metrics/pom.xml index 72fa09d87e..566f0ad816 100644 --- a/modules/jooby-metrics/pom.xml +++ b/modules/jooby-metrics/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-micrometer/README.md b/modules/jooby-micrometer/README.md index ba68243a66..559aa6aaba 100644 --- a/modules/jooby-micrometer/README.md +++ b/modules/jooby-micrometer/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-micrometer/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-micrometer/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-micrometer.svg)](https://javadoc.io/doc/org.jooby/jooby-micrometer/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-micrometer/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-micrometer/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-micrometer.svg)](https://javadoc.io/doc/org.jooby/jooby-micrometer/1.6.1) [![jooby-micrometer website](https://img.shields.io/badge/jooby-micrometer-brightgreen.svg)](http://jooby.org/doc/micrometer) # micrometer @@ -11,7 +11,7 @@ org.jooby jooby-micrometer - 1.6.0 + 1.6.1 ``` diff --git a/modules/jooby-micrometer/pom.xml b/modules/jooby-micrometer/pom.xml index 49a74e8e83..e8b0e811d7 100644 --- a/modules/jooby-micrometer/pom.xml +++ b/modules/jooby-micrometer/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-mongodb-rx/README.md b/modules/jooby-mongodb-rx/README.md index 4d08f083d5..c103d4abed 100644 --- a/modules/jooby-mongodb-rx/README.md +++ b/modules/jooby-mongodb-rx/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-mongodb-rx/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-mongodb-rx/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-mongodb-rx.svg)](https://javadoc.io/doc/org.jooby/jooby-mongodb-rx/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-mongodb-rx/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-mongodb-rx/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-mongodb-rx.svg)](https://javadoc.io/doc/org.jooby/jooby-mongodb-rx/1.6.1) [![jooby-mongodb-rx website](https://img.shields.io/badge/jooby-mongodb-rx-brightgreen.svg)](http://jooby.org/doc/mongodb-rx) # mongodb-rx @@ -16,7 +16,7 @@ A MongoDB based driver providing support for React org.jooby jooby-mongodb-rx - 1.6.0 + 1.6.1 ``` diff --git a/modules/jooby-mongodb-rx/pom.xml b/modules/jooby-mongodb-rx/pom.xml index 06dce771fc..ada3d2681a 100644 --- a/modules/jooby-mongodb-rx/pom.xml +++ b/modules/jooby-mongodb-rx/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-mongodb/README.md b/modules/jooby-mongodb/README.md index 5a539ac9af..2c2a71e149 100644 --- a/modules/jooby-mongodb/README.md +++ b/modules/jooby-mongodb/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-mongodb/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-mongodb/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-mongodb.svg)](https://javadoc.io/doc/org.jooby/jooby-mongodb/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-mongodb/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-mongodb/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-mongodb.svg)](https://javadoc.io/doc/org.jooby/jooby-mongodb/1.6.1) [![jooby-mongodb website](https://img.shields.io/badge/jooby-mongodb-brightgreen.svg)](http://jooby.org/doc/mongodb) # mongodb driver @@ -17,7 +17,7 @@ org.jooby jooby-mongodb - 1.6.0 + 1.6.1 ``` @@ -117,7 +117,7 @@ Use [named](/apidocs/org/jooby/mongodb/Mongodb.html#-named) when you need two or org.jooby jooby-mongodb - 1.6.0 + 1.6.1 ``` diff --git a/modules/jooby-mongodb/pom.xml b/modules/jooby-mongodb/pom.xml index 31192c3966..c47dca4ad8 100644 --- a/modules/jooby-mongodb/pom.xml +++ b/modules/jooby-mongodb/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-morphia/README.md b/modules/jooby-morphia/README.md index 390d864e5c..f3bc66c6be 100644 --- a/modules/jooby-morphia/README.md +++ b/modules/jooby-morphia/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-morphia/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-morphia/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-morphia.svg)](https://javadoc.io/doc/org.jooby/jooby-morphia/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-morphia/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-morphia/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-morphia.svg)](https://javadoc.io/doc/org.jooby/jooby-morphia/1.6.1) [![jooby-morphia website](https://img.shields.io/badge/jooby-morphia-brightgreen.svg)](http://jooby.org/doc/morphia) # morphia @@ -16,7 +16,7 @@ Extends the [mongodb](https://github.com/jooby-project/jooby/tree/master/jooby-m org.jooby jooby-morphia - 1.6.0 + 1.6.1 ``` diff --git a/modules/jooby-morphia/pom.xml b/modules/jooby-morphia/pom.xml index 62d5d08482..ead16d8793 100644 --- a/modules/jooby-morphia/pom.xml +++ b/modules/jooby-morphia/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-neo4j/README.md b/modules/jooby-neo4j/README.md index 540cca197c..744409308d 100644 --- a/modules/jooby-neo4j/README.md +++ b/modules/jooby-neo4j/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-neo4j/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-neo4j/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-neo4j.svg)](https://javadoc.io/doc/org.jooby/jooby-neo4j/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-neo4j/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-neo4j/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-neo4j.svg)](https://javadoc.io/doc/org.jooby/jooby-neo4j/1.6.1) [![jooby-neo4j website](https://img.shields.io/badge/jooby-neo4j-brightgreen.svg)](http://jooby.org/doc/neo4j) # neo4j @@ -13,7 +13,7 @@ This module give you access to neo4j and org.jooby jooby-neo4j - 1.6.0 + 1.6.1 ``` @@ -176,7 +176,7 @@ A [Session.Store](/apidocs/org/jooby/neo4j/Neo4jSessionStore) powered by org.jooby jooby-neo4j - 1.6.0 + 1.6.1 ``` diff --git a/modules/jooby-neo4j/pom.xml b/modules/jooby-neo4j/pom.xml index b3972237b4..fc335a4188 100644 --- a/modules/jooby-neo4j/pom.xml +++ b/modules/jooby-neo4j/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-netty/README.md b/modules/jooby-netty/README.md index b9a7f1f9ec..620960aa34 100644 --- a/modules/jooby-netty/README.md +++ b/modules/jooby-netty/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-netty/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-netty/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-netty.svg)](https://javadoc.io/doc/org.jooby/jooby-netty/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-netty/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-netty/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-netty.svg)](https://javadoc.io/doc/org.jooby/jooby-netty/1.6.1) [![jooby-netty website](https://img.shields.io/badge/jooby-netty-brightgreen.svg)](http://jooby.org/doc/netty) # netty @@ -15,7 +15,7 @@ org.jooby jooby-netty - 1.6.0 + 1.6.1 ``` diff --git a/modules/jooby-netty/pom.xml b/modules/jooby-netty/pom.xml index ffa43027b4..9c034a5608 100644 --- a/modules/jooby-netty/pom.xml +++ b/modules/jooby-netty/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-pac4j/README.md b/modules/jooby-pac4j/README.md index 933c25685a..b94839c18a 100644 --- a/modules/jooby-pac4j/README.md +++ b/modules/jooby-pac4j/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-pac4j/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-pac4j/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-pac4j.svg)](https://javadoc.io/doc/org.jooby/jooby-pac4j/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-pac4j/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-pac4j/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-pac4j.svg)](https://javadoc.io/doc/org.jooby/jooby-pac4j/1.6.1) [![jooby-pac4j website](https://img.shields.io/badge/jooby-pac4j-brightgreen.svg)](http://jooby.org/doc/pac4j) # pac4j @@ -22,7 +22,7 @@ Authentication module via: [Pac4j 1.x](https://github.com/pac4j/pac4j). org.jooby jooby-pac4j - 1.6.0 + 1.6.1 ``` diff --git a/modules/jooby-pac4j/pom.xml b/modules/jooby-pac4j/pom.xml index d7d3c39242..d0171ce406 100644 --- a/modules/jooby-pac4j/pom.xml +++ b/modules/jooby-pac4j/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-pac4j2/README.md b/modules/jooby-pac4j2/README.md index a1cb85a02d..d593818a61 100644 --- a/modules/jooby-pac4j2/README.md +++ b/modules/jooby-pac4j2/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-pac4j2/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-pac4j2/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-pac4j2.svg)](https://javadoc.io/doc/org.jooby/jooby-pac4j2/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-pac4j2/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-pac4j2/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-pac4j2.svg)](https://javadoc.io/doc/org.jooby/jooby-pac4j2/1.6.1) [![jooby-pac4j2 website](https://img.shields.io/badge/jooby-pac4j2-brightgreen.svg)](http://jooby.org/doc/pac4j2) # pac4j module @@ -19,7 +19,7 @@ Authentication module via: Pac4j 2.x org.jooby jooby-pac4j2 - 1.6.0 + 1.6.1 ``` diff --git a/modules/jooby-pac4j2/pom.xml b/modules/jooby-pac4j2/pom.xml index 6dc4f8c90a..7230147da3 100644 --- a/modules/jooby-pac4j2/pom.xml +++ b/modules/jooby-pac4j2/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-pebble/README.md b/modules/jooby-pebble/README.md index 4f657d315e..b0a54fef07 100644 --- a/modules/jooby-pebble/README.md +++ b/modules/jooby-pebble/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-pebble/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-pebble/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-pebble.svg)](https://javadoc.io/doc/org.jooby/jooby-pebble/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-pebble/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-pebble/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-pebble.svg)](https://javadoc.io/doc/org.jooby/jooby-pebble/1.6.1) [![jooby-pebble website](https://img.shields.io/badge/jooby-pebble-brightgreen.svg)](http://jooby.org/doc/pebble) # pebble @@ -16,7 +16,7 @@ org.jooby jooby-pebble - 1.6.0 + 1.6.1 ``` diff --git a/modules/jooby-pebble/pom.xml b/modules/jooby-pebble/pom.xml index 7e5b3ca089..319bad7e0d 100644 --- a/modules/jooby-pebble/pom.xml +++ b/modules/jooby-pebble/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-quartz/README.md b/modules/jooby-quartz/README.md index 2a9b88d00a..826d98c57c 100644 --- a/modules/jooby-quartz/README.md +++ b/modules/jooby-quartz/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-quartz/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-quartz/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-quartz.svg)](https://javadoc.io/doc/org.jooby/jooby-quartz/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-quartz/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-quartz/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-quartz.svg)](https://javadoc.io/doc/org.jooby/jooby-quartz/1.6.1) [![jooby-quartz website](https://img.shields.io/badge/jooby-quartz-brightgreen.svg)](http://jooby.org/doc/quartz) # quartz @@ -11,7 +11,7 @@ Cron triggers, job scheduling and async processing via [Quartz](http://quartz-sc org.jooby jooby-quartz - 1.6.0 + 1.6.1 ``` diff --git a/modules/jooby-quartz/pom.xml b/modules/jooby-quartz/pom.xml index db1341b219..bc058be260 100644 --- a/modules/jooby-quartz/pom.xml +++ b/modules/jooby-quartz/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-querydsl/README.md b/modules/jooby-querydsl/README.md index 9f7b46024e..f22439c0b2 100644 --- a/modules/jooby-querydsl/README.md +++ b/modules/jooby-querydsl/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-querydsl/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-querydsl/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-querydsl.svg)](https://javadoc.io/doc/org.jooby/jooby-querydsl/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-querydsl/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-querydsl/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-querydsl.svg)](https://javadoc.io/doc/org.jooby/jooby-querydsl/1.6.1) [![jooby-querydsl website](https://img.shields.io/badge/jooby-querydsl-brightgreen.svg)](http://jooby.org/doc/querydsl) # queryDSL @@ -17,7 +17,7 @@ SQL abstraction provided by QueryDSL using org.jooby jooby-querydsl - 1.6.0 + 1.6.1 ``` diff --git a/modules/jooby-querydsl/pom.xml b/modules/jooby-querydsl/pom.xml index 88cf981c71..691b8c4ace 100644 --- a/modules/jooby-querydsl/pom.xml +++ b/modules/jooby-querydsl/pom.xml @@ -4,7 +4,7 @@ modules org.jooby - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-reactor/README.md b/modules/jooby-reactor/README.md index fc4b94fbd7..1ae718ed83 100644 --- a/modules/jooby-reactor/README.md +++ b/modules/jooby-reactor/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-reactor/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-reactor/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-reactor.svg)](https://javadoc.io/doc/org.jooby/jooby-reactor/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-reactor/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-reactor/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-reactor.svg)](https://javadoc.io/doc/org.jooby/jooby-reactor/1.6.1) [![jooby-reactor website](https://img.shields.io/badge/jooby-reactor-brightgreen.svg)](http://jooby.org/doc/reactor) # reactor @@ -11,7 +11,7 @@ org.jooby jooby-reactor - 1.6.0 + 1.6.1 ``` diff --git a/modules/jooby-reactor/pom.xml b/modules/jooby-reactor/pom.xml index 506aef0260..22903378ca 100644 --- a/modules/jooby-reactor/pom.xml +++ b/modules/jooby-reactor/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-requery/README.md b/modules/jooby-requery/README.md index 937f6ede2a..5e0c62ad68 100644 --- a/modules/jooby-requery/README.md +++ b/modules/jooby-requery/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-requery/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-requery/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-requery.svg)](https://javadoc.io/doc/org.jooby/jooby-requery/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-requery/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-requery/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-requery.svg)](https://javadoc.io/doc/org.jooby/jooby-requery/1.6.1) [![jooby-requery website](https://img.shields.io/badge/jooby-requery-brightgreen.svg)](http://jooby.org/doc/requery) # requery @@ -15,7 +15,7 @@ Safe, clean and efficient database access via Reactive Ext org.jooby jooby-rxjava - 1.6.0 + 1.6.1 ``` diff --git a/modules/jooby-rxjava/pom.xml b/modules/jooby-rxjava/pom.xml index 6bd1078fb3..385306dd46 100644 --- a/modules/jooby-rxjava/pom.xml +++ b/modules/jooby-rxjava/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-scanner/README.md b/modules/jooby-scanner/README.md index e902d7e798..91c7952458 100644 --- a/modules/jooby-scanner/README.md +++ b/modules/jooby-scanner/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-scanner/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-scanner/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-scanner.svg)](https://javadoc.io/doc/org.jooby/jooby-scanner/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-scanner/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-scanner/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-scanner.svg)](https://javadoc.io/doc/org.jooby/jooby-scanner/1.6.1) [![jooby-scanner website](https://img.shields.io/badge/jooby-scanner-brightgreen.svg)](http://jooby.org/doc/scanner) # scanner @@ -13,7 +13,7 @@ This module provides `class-path` scanning services for `MVC routes`, `services` org.jooby jooby-scanner - 1.6.0 + 1.6.1 ``` diff --git a/modules/jooby-scanner/pom.xml b/modules/jooby-scanner/pom.xml index 1d94c5fa11..699df9980b 100644 --- a/modules/jooby-scanner/pom.xml +++ b/modules/jooby-scanner/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-servlet/README.md b/modules/jooby-servlet/README.md index 8e3ea0b9d9..387ad62d6c 100644 --- a/modules/jooby-servlet/README.md +++ b/modules/jooby-servlet/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-servlet/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-servlet/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-servlet.svg)](https://javadoc.io/doc/org.jooby/jooby-servlet/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-servlet/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-servlet/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-servlet.svg)](https://javadoc.io/doc/org.jooby/jooby-servlet/1.6.1) [![jooby-servlet website](https://img.shields.io/badge/jooby-servlet-brightgreen.svg)](http://jooby.org/doc/servlet) # servlets diff --git a/modules/jooby-servlet/pom.xml b/modules/jooby-servlet/pom.xml index 60624b3e99..13daeeec1a 100644 --- a/modules/jooby-servlet/pom.xml +++ b/modules/jooby-servlet/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-sitemap/README.md b/modules/jooby-sitemap/README.md index 7ea5027742..76b5339af2 100644 --- a/modules/jooby-sitemap/README.md +++ b/modules/jooby-sitemap/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-sitemap/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-sitemap/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-sitemap.svg)](https://javadoc.io/doc/org.jooby/jooby-sitemap/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-sitemap/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-sitemap/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-sitemap.svg)](https://javadoc.io/doc/org.jooby/jooby-sitemap/1.6.1) [![jooby-sitemap website](https://img.shields.io/badge/jooby-sitemap-brightgreen.svg)](http://jooby.org/doc/sitemap) # sitemap @@ -15,7 +15,7 @@ Generate sitemap.xml files org.jooby jooby-sitemap - 1.6.0 + 1.6.1 ``` diff --git a/modules/jooby-sitemap/pom.xml b/modules/jooby-sitemap/pom.xml index 554019c3d6..b1d0646be3 100644 --- a/modules/jooby-sitemap/pom.xml +++ b/modules/jooby-sitemap/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-spymemcached/README.md b/modules/jooby-spymemcached/README.md index a4102d7f87..b4c424d874 100644 --- a/modules/jooby-spymemcached/README.md +++ b/modules/jooby-spymemcached/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-spymemcached/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-spymemcached/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-spymemcached.svg)](https://javadoc.io/doc/org.jooby/jooby-spymemcached/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-spymemcached/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-spymemcached/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-spymemcached.svg)](https://javadoc.io/doc/org.jooby/jooby-spymemcached/1.6.1) [![jooby-spymemcached website](https://img.shields.io/badge/jooby-spymemcached-brightgreen.svg)](http://jooby.org/doc/spymemcached) # spymemcached @@ -15,7 +15,7 @@ Provides memcached access via [SpyMemcached](https://github.com/dustin/java-memc org.jooby jooby-spymemcached - 1.6.0 + 1.6.1 ``` @@ -65,7 +65,7 @@ or programmatically: org.jooby jooby-spymemcached - 1.6.0 + 1.6.1 ``` diff --git a/modules/jooby-spymemcached/pom.xml b/modules/jooby-spymemcached/pom.xml index 9e261927a2..7041006a14 100644 --- a/modules/jooby-spymemcached/pom.xml +++ b/modules/jooby-spymemcached/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-thymeleaf/README.md b/modules/jooby-thymeleaf/README.md index 5e253c2acc..2809226149 100644 --- a/modules/jooby-thymeleaf/README.md +++ b/modules/jooby-thymeleaf/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-thymeleaf/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-thymeleaf/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-thymeleaf.svg)](https://javadoc.io/doc/org.jooby/jooby-thymeleaf/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-thymeleaf/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-thymeleaf/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-thymeleaf.svg)](https://javadoc.io/doc/org.jooby/jooby-thymeleaf/1.6.1) [![jooby-thymeleaf website](https://img.shields.io/badge/jooby-thymeleaf-brightgreen.svg)](http://jooby.org/doc/thymeleaf) # thymeleaf @@ -11,7 +11,7 @@ org.jooby jooby-thymeleaf - 1.6.0 + 1.6.1 ``` diff --git a/modules/jooby-thymeleaf/pom.xml b/modules/jooby-thymeleaf/pom.xml index 650445d00d..37cf5f8f96 100644 --- a/modules/jooby-thymeleaf/pom.xml +++ b/modules/jooby-thymeleaf/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-unbescape/README.md b/modules/jooby-unbescape/README.md index 05c0f506f4..207b1b2cae 100644 --- a/modules/jooby-unbescape/README.md +++ b/modules/jooby-unbescape/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-unbescape/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-unbescape/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-unbescape.svg)](https://javadoc.io/doc/org.jooby/jooby-unbescape/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-unbescape/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-unbescape/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-unbescape.svg)](https://javadoc.io/doc/org.jooby/jooby-unbescape/1.6.1) [![jooby-unbescape website](https://img.shields.io/badge/jooby-unbescape-brightgreen.svg)](http://jooby.org/doc/unbescape) # unbescape @@ -11,7 +11,7 @@ org.jooby jooby-unbescape - 1.6.0 + 1.6.1 ``` diff --git a/modules/jooby-unbescape/pom.xml b/modules/jooby-unbescape/pom.xml index 12c09150a0..84d2e65504 100644 --- a/modules/jooby-unbescape/pom.xml +++ b/modules/jooby-unbescape/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-undertow/README.md b/modules/jooby-undertow/README.md index 5b724f32c9..2c67762fb8 100644 --- a/modules/jooby-undertow/README.md +++ b/modules/jooby-undertow/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-undertow/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-undertow/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-undertow.svg)](https://javadoc.io/doc/org.jooby/jooby-undertow/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-undertow/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-undertow/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-undertow.svg)](https://javadoc.io/doc/org.jooby/jooby-undertow/1.6.1) [![jooby-undertow website](https://img.shields.io/badge/jooby-undertow-brightgreen.svg)](http://jooby.org/doc/undertow) # undertow @@ -15,7 +15,7 @@ org.jooby jooby-undertow - 1.6.0 + 1.6.1 ``` diff --git a/modules/jooby-undertow/pom.xml b/modules/jooby-undertow/pom.xml index b8775f6d58..37ccb020f4 100644 --- a/modules/jooby-undertow/pom.xml +++ b/modules/jooby-undertow/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-whoops/README.md b/modules/jooby-whoops/README.md index 63c3ce83c6..d1042fcad0 100644 --- a/modules/jooby-whoops/README.md +++ b/modules/jooby-whoops/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-whoops/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-whoops/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-whoops.svg)](https://javadoc.io/doc/org.jooby/jooby-whoops/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-whoops/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-whoops/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-whoops.svg)](https://javadoc.io/doc/org.jooby/jooby-whoops/1.6.1) [![jooby-whoops website](https://img.shields.io/badge/jooby-whoops-brightgreen.svg)](http://jooby.org/doc/whoops) # whoops @@ -15,7 +15,7 @@ Pretty error page that helps you debug your web application. org.jooby jooby-whoops - 1.6.0 + 1.6.1 ``` diff --git a/modules/jooby-whoops/pom.xml b/modules/jooby-whoops/pom.xml index 03ee674847..424e6bbd27 100644 --- a/modules/jooby-whoops/pom.xml +++ b/modules/jooby-whoops/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/jooby-yasson/README.md b/modules/jooby-yasson/README.md index c0b7ba60fb..0817b37ef3 100644 --- a/modules/jooby-yasson/README.md +++ b/modules/jooby-yasson/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-yasson/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-yasson/1.6.0) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-yasson.svg)](https://javadoc.io/doc/org.jooby/jooby-yasson/1.6.0) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-yasson/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-yasson/1.6.1) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-yasson.svg)](https://javadoc.io/doc/org.jooby/jooby-yasson/1.6.1) [![jooby-yasson website](https://img.shields.io/badge/jooby-yasson-brightgreen.svg)](http://jooby.org/doc/yasson) # yasson @@ -17,7 +17,7 @@ JSON support via [yasson](https://github.com/eclipse-ee4j/yasson) library. org.jooby jooby-yasson - 1.6.0 + 1.6.1 ``` diff --git a/modules/jooby-yasson/pom.xml b/modules/jooby-yasson/pom.xml index 9556f46257..7de5d00e22 100644 --- a/modules/jooby-yasson/pom.xml +++ b/modules/jooby-yasson/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1-SNAPSHOT + 1.6.1 4.0.0 diff --git a/modules/pom.xml b/modules/pom.xml index d501b4eb02..17e3c32c7c 100644 --- a/modules/pom.xml +++ b/modules/pom.xml @@ -6,7 +6,7 @@ org.jooby jooby-project - 1.6.1-SNAPSHOT + 1.6.1 modules diff --git a/pom.xml b/pom.xml index 2185666ede..b0ee955c16 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ 4.0.0 org.jooby jooby-project - 1.6.1-SNAPSHOT + 1.6.1 pom jooby-project From 62f928460017c58e0abe99d96d6d0de5ff3a61be Mon Sep 17 00:00:00 2001 From: Edgar Espina Date: Sun, 2 Jun 2019 18:28:37 -0300 Subject: [PATCH 55/93] [1.x]prepare for next development cycle --- jooby/pom.xml | 2 +- modules/coverage-report/pom.xml | 2 +- modules/jooby-akka/pom.xml | 2 +- modules/jooby-apitool/pom.xml | 2 +- modules/jooby-archetype/pom.xml | 2 +- modules/jooby-assets-autoprefixer/pom.xml | 2 +- modules/jooby-assets-babel/pom.xml | 2 +- modules/jooby-assets-clean-css/pom.xml | 2 +- modules/jooby-assets-closure-compiler/pom.xml | 2 +- modules/jooby-assets-csslint/pom.xml | 2 +- modules/jooby-assets-j2v8/pom.xml | 2 +- modules/jooby-assets-jscs/pom.xml | 2 +- modules/jooby-assets-jshint/pom.xml | 2 +- modules/jooby-assets-less/pom.xml | 2 +- modules/jooby-assets-less4j/pom.xml | 2 +- modules/jooby-assets-ng-annotate/pom.xml | 2 +- modules/jooby-assets-nodejs/pom.xml | 2 +- modules/jooby-assets-requirejs/pom.xml | 2 +- modules/jooby-assets-rollup/pom.xml | 2 +- modules/jooby-assets-sass/pom.xml | 2 +- modules/jooby-assets-svg-sprites/pom.xml | 2 +- modules/jooby-assets-svg-symbol/pom.xml | 2 +- modules/jooby-assets-uglify/pom.xml | 2 +- modules/jooby-assets-yui-compressor/pom.xml | 2 +- modules/jooby-assets/pom.xml | 2 +- modules/jooby-aws/pom.xml | 2 +- modules/jooby-banner/pom.xml | 2 +- modules/jooby-caffeine/pom.xml | 2 +- modules/jooby-camel/pom.xml | 2 +- modules/jooby-cassandra/pom.xml | 2 +- modules/jooby-commons-email/pom.xml | 2 +- modules/jooby-consul/pom.xml | 2 +- modules/jooby-couchbase/pom.xml | 2 +- modules/jooby-crash/pom.xml | 2 +- modules/jooby-csl/pom.xml | 2 +- modules/jooby-dist/pom.xml | 2 +- modules/jooby-ebean/pom.xml | 2 +- modules/jooby-ehcache/pom.xml | 2 +- modules/jooby-elasticsearch/pom.xml | 2 +- modules/jooby-eventbus/pom.xml | 2 +- modules/jooby-executor/pom.xml | 2 +- modules/jooby-exposed/pom.xml | 2 +- modules/jooby-filewatcher/pom.xml | 2 +- modules/jooby-flyway/pom.xml | 2 +- modules/jooby-frontend/pom.xml | 2 +- modules/jooby-ftl/pom.xml | 2 +- modules/jooby-gradle-plugin/pom.xml | 2 +- modules/jooby-gson/pom.xml | 2 +- modules/jooby-guava-cache/pom.xml | 2 +- modules/jooby-hazelcast/pom.xml | 2 +- modules/jooby-hbm/pom.xml | 2 +- modules/jooby-hbs/pom.xml | 2 +- modules/jooby-hbv/pom.xml | 2 +- modules/jooby-jackson/pom.xml | 2 +- modules/jooby-jade/pom.xml | 2 +- modules/jooby-jdbc/pom.xml | 2 +- modules/jooby-jdbi/pom.xml | 2 +- modules/jooby-jdbi3/pom.xml | 2 +- modules/jooby-jedis/pom.xml | 2 +- modules/jooby-jetty/pom.xml | 2 +- modules/jooby-jongo/pom.xml | 2 +- modules/jooby-jooq/pom.xml | 2 +- modules/jooby-lang-kotlin/pom.xml | 2 +- modules/jooby-livereload/pom.xml | 2 +- modules/jooby-maven-plugin/pom.xml | 2 +- modules/jooby-metrics/pom.xml | 2 +- modules/jooby-micrometer/pom.xml | 2 +- modules/jooby-mongodb-rx/pom.xml | 2 +- modules/jooby-mongodb/pom.xml | 2 +- modules/jooby-morphia/pom.xml | 2 +- modules/jooby-neo4j/pom.xml | 2 +- modules/jooby-netty/pom.xml | 2 +- modules/jooby-pac4j/pom.xml | 2 +- modules/jooby-pac4j2/pom.xml | 2 +- modules/jooby-pebble/pom.xml | 2 +- modules/jooby-quartz/pom.xml | 2 +- modules/jooby-querydsl/pom.xml | 2 +- modules/jooby-reactor/pom.xml | 2 +- modules/jooby-requery/pom.xml | 2 +- modules/jooby-rocker/pom.xml | 2 +- modules/jooby-run/pom.xml | 2 +- modules/jooby-rxjava-jdbc/pom.xml | 2 +- modules/jooby-rxjava/pom.xml | 2 +- modules/jooby-scanner/pom.xml | 2 +- modules/jooby-servlet/pom.xml | 2 +- modules/jooby-sitemap/pom.xml | 2 +- modules/jooby-spymemcached/pom.xml | 2 +- modules/jooby-thymeleaf/pom.xml | 2 +- modules/jooby-unbescape/pom.xml | 2 +- modules/jooby-undertow/pom.xml | 2 +- modules/jooby-whoops/pom.xml | 2 +- modules/jooby-yasson/pom.xml | 2 +- modules/pom.xml | 2 +- pom.xml | 2 +- 94 files changed, 94 insertions(+), 94 deletions(-) diff --git a/jooby/pom.xml b/jooby/pom.xml index 957608ab04..4df6f18399 100644 --- a/jooby/pom.xml +++ b/jooby/pom.xml @@ -6,7 +6,7 @@ org.jooby jooby-project - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/coverage-report/pom.xml b/modules/coverage-report/pom.xml index e005187c4c..492a125952 100644 --- a/modules/coverage-report/pom.xml +++ b/modules/coverage-report/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-akka/pom.xml b/modules/jooby-akka/pom.xml index 3683256423..acadf8d177 100644 --- a/modules/jooby-akka/pom.xml +++ b/modules/jooby-akka/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-apitool/pom.xml b/modules/jooby-apitool/pom.xml index 2793128b43..34784a7744 100644 --- a/modules/jooby-apitool/pom.xml +++ b/modules/jooby-apitool/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-archetype/pom.xml b/modules/jooby-archetype/pom.xml index 58a7be9e44..1433e54559 100644 --- a/modules/jooby-archetype/pom.xml +++ b/modules/jooby-archetype/pom.xml @@ -7,7 +7,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT jooby-archetype diff --git a/modules/jooby-assets-autoprefixer/pom.xml b/modules/jooby-assets-autoprefixer/pom.xml index 50f26fe359..3ab47ea755 100644 --- a/modules/jooby-assets-autoprefixer/pom.xml +++ b/modules/jooby-assets-autoprefixer/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-babel/pom.xml b/modules/jooby-assets-babel/pom.xml index b5d25bece9..7b7f43b425 100644 --- a/modules/jooby-assets-babel/pom.xml +++ b/modules/jooby-assets-babel/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-clean-css/pom.xml b/modules/jooby-assets-clean-css/pom.xml index b37d94251a..9bbd5a6bd1 100644 --- a/modules/jooby-assets-clean-css/pom.xml +++ b/modules/jooby-assets-clean-css/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-closure-compiler/pom.xml b/modules/jooby-assets-closure-compiler/pom.xml index 268581f141..1072fc1278 100644 --- a/modules/jooby-assets-closure-compiler/pom.xml +++ b/modules/jooby-assets-closure-compiler/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-csslint/pom.xml b/modules/jooby-assets-csslint/pom.xml index a0b4e23573..6e1cbb47c4 100644 --- a/modules/jooby-assets-csslint/pom.xml +++ b/modules/jooby-assets-csslint/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-j2v8/pom.xml b/modules/jooby-assets-j2v8/pom.xml index 8bb2514dfc..b2df3c31e0 100644 --- a/modules/jooby-assets-j2v8/pom.xml +++ b/modules/jooby-assets-j2v8/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-jscs/pom.xml b/modules/jooby-assets-jscs/pom.xml index 4a2e47d62c..09259b8ec5 100644 --- a/modules/jooby-assets-jscs/pom.xml +++ b/modules/jooby-assets-jscs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-jshint/pom.xml b/modules/jooby-assets-jshint/pom.xml index 8e2fbe9646..f6babee655 100644 --- a/modules/jooby-assets-jshint/pom.xml +++ b/modules/jooby-assets-jshint/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-less/pom.xml b/modules/jooby-assets-less/pom.xml index 0c354d42b6..438d19c222 100644 --- a/modules/jooby-assets-less/pom.xml +++ b/modules/jooby-assets-less/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-less4j/pom.xml b/modules/jooby-assets-less4j/pom.xml index a1eb7bb57e..a036226863 100644 --- a/modules/jooby-assets-less4j/pom.xml +++ b/modules/jooby-assets-less4j/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-ng-annotate/pom.xml b/modules/jooby-assets-ng-annotate/pom.xml index 349f309e0a..7778302b33 100644 --- a/modules/jooby-assets-ng-annotate/pom.xml +++ b/modules/jooby-assets-ng-annotate/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-nodejs/pom.xml b/modules/jooby-assets-nodejs/pom.xml index 4afb8d4f00..c9aef52ba7 100644 --- a/modules/jooby-assets-nodejs/pom.xml +++ b/modules/jooby-assets-nodejs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-requirejs/pom.xml b/modules/jooby-assets-requirejs/pom.xml index ff5fb2fcc5..a1c288f9bb 100644 --- a/modules/jooby-assets-requirejs/pom.xml +++ b/modules/jooby-assets-requirejs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-rollup/pom.xml b/modules/jooby-assets-rollup/pom.xml index 9fa1cd659e..761f7415cb 100644 --- a/modules/jooby-assets-rollup/pom.xml +++ b/modules/jooby-assets-rollup/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-sass/pom.xml b/modules/jooby-assets-sass/pom.xml index 00e7f9d8d0..7d299cbf0a 100644 --- a/modules/jooby-assets-sass/pom.xml +++ b/modules/jooby-assets-sass/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-svg-sprites/pom.xml b/modules/jooby-assets-svg-sprites/pom.xml index 65c18dfcda..331576d872 100644 --- a/modules/jooby-assets-svg-sprites/pom.xml +++ b/modules/jooby-assets-svg-sprites/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-svg-symbol/pom.xml b/modules/jooby-assets-svg-symbol/pom.xml index 09fd768a86..734cb32ce9 100644 --- a/modules/jooby-assets-svg-symbol/pom.xml +++ b/modules/jooby-assets-svg-symbol/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-uglify/pom.xml b/modules/jooby-assets-uglify/pom.xml index 5ce85feb4f..37aba44b26 100644 --- a/modules/jooby-assets-uglify/pom.xml +++ b/modules/jooby-assets-uglify/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-yui-compressor/pom.xml b/modules/jooby-assets-yui-compressor/pom.xml index d73b7691a6..6772caecfa 100644 --- a/modules/jooby-assets-yui-compressor/pom.xml +++ b/modules/jooby-assets-yui-compressor/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets/pom.xml b/modules/jooby-assets/pom.xml index e012eb237f..3d91bb1714 100644 --- a/modules/jooby-assets/pom.xml +++ b/modules/jooby-assets/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-aws/pom.xml b/modules/jooby-aws/pom.xml index 175468b570..8752458a03 100644 --- a/modules/jooby-aws/pom.xml +++ b/modules/jooby-aws/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-banner/pom.xml b/modules/jooby-banner/pom.xml index 61fd5c7039..7c07aec197 100644 --- a/modules/jooby-banner/pom.xml +++ b/modules/jooby-banner/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-caffeine/pom.xml b/modules/jooby-caffeine/pom.xml index f539387383..8a39080df1 100644 --- a/modules/jooby-caffeine/pom.xml +++ b/modules/jooby-caffeine/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-camel/pom.xml b/modules/jooby-camel/pom.xml index 5e1001b2b8..9456c80770 100644 --- a/modules/jooby-camel/pom.xml +++ b/modules/jooby-camel/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-cassandra/pom.xml b/modules/jooby-cassandra/pom.xml index 7fa5297956..702ce90bb7 100644 --- a/modules/jooby-cassandra/pom.xml +++ b/modules/jooby-cassandra/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-commons-email/pom.xml b/modules/jooby-commons-email/pom.xml index 249c9274a0..9fb1f7371c 100644 --- a/modules/jooby-commons-email/pom.xml +++ b/modules/jooby-commons-email/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-consul/pom.xml b/modules/jooby-consul/pom.xml index 58123e3310..8fcda66ef5 100644 --- a/modules/jooby-consul/pom.xml +++ b/modules/jooby-consul/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-couchbase/pom.xml b/modules/jooby-couchbase/pom.xml index 7df1067be2..33ad861f64 100644 --- a/modules/jooby-couchbase/pom.xml +++ b/modules/jooby-couchbase/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-crash/pom.xml b/modules/jooby-crash/pom.xml index e547a048fb..b88781acda 100644 --- a/modules/jooby-crash/pom.xml +++ b/modules/jooby-crash/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-csl/pom.xml b/modules/jooby-csl/pom.xml index aa278ad951..7f255320ce 100644 --- a/modules/jooby-csl/pom.xml +++ b/modules/jooby-csl/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-dist/pom.xml b/modules/jooby-dist/pom.xml index 64fc703a8c..f56be7de29 100644 --- a/modules/jooby-dist/pom.xml +++ b/modules/jooby-dist/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-ebean/pom.xml b/modules/jooby-ebean/pom.xml index 2499534ac5..cc09b83913 100644 --- a/modules/jooby-ebean/pom.xml +++ b/modules/jooby-ebean/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-ehcache/pom.xml b/modules/jooby-ehcache/pom.xml index 0f9dfe543e..eec38e8394 100644 --- a/modules/jooby-ehcache/pom.xml +++ b/modules/jooby-ehcache/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-elasticsearch/pom.xml b/modules/jooby-elasticsearch/pom.xml index d55bb5b9e6..3144853fdd 100644 --- a/modules/jooby-elasticsearch/pom.xml +++ b/modules/jooby-elasticsearch/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-eventbus/pom.xml b/modules/jooby-eventbus/pom.xml index 3cdc5ec1e9..2eb1319b38 100644 --- a/modules/jooby-eventbus/pom.xml +++ b/modules/jooby-eventbus/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-executor/pom.xml b/modules/jooby-executor/pom.xml index c912e2763a..1202a350d8 100644 --- a/modules/jooby-executor/pom.xml +++ b/modules/jooby-executor/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-exposed/pom.xml b/modules/jooby-exposed/pom.xml index 2af1e5b525..540c6929d7 100644 --- a/modules/jooby-exposed/pom.xml +++ b/modules/jooby-exposed/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-filewatcher/pom.xml b/modules/jooby-filewatcher/pom.xml index 5aede65fe7..0223ffae5a 100644 --- a/modules/jooby-filewatcher/pom.xml +++ b/modules/jooby-filewatcher/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-flyway/pom.xml b/modules/jooby-flyway/pom.xml index 885e4f6a19..96d97b1660 100644 --- a/modules/jooby-flyway/pom.xml +++ b/modules/jooby-flyway/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-frontend/pom.xml b/modules/jooby-frontend/pom.xml index ea8cee4067..5947fa15bc 100644 --- a/modules/jooby-frontend/pom.xml +++ b/modules/jooby-frontend/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-ftl/pom.xml b/modules/jooby-ftl/pom.xml index 9f4db6b98a..00feeeeac1 100644 --- a/modules/jooby-ftl/pom.xml +++ b/modules/jooby-ftl/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-gradle-plugin/pom.xml b/modules/jooby-gradle-plugin/pom.xml index 2a64435c3f..b4449137fd 100644 --- a/modules/jooby-gradle-plugin/pom.xml +++ b/modules/jooby-gradle-plugin/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-gson/pom.xml b/modules/jooby-gson/pom.xml index a11974a343..c86ee56454 100644 --- a/modules/jooby-gson/pom.xml +++ b/modules/jooby-gson/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-guava-cache/pom.xml b/modules/jooby-guava-cache/pom.xml index 64d1121e73..e19cd57f12 100644 --- a/modules/jooby-guava-cache/pom.xml +++ b/modules/jooby-guava-cache/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-hazelcast/pom.xml b/modules/jooby-hazelcast/pom.xml index d58ceaad27..c2dee54a9b 100644 --- a/modules/jooby-hazelcast/pom.xml +++ b/modules/jooby-hazelcast/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-hbm/pom.xml b/modules/jooby-hbm/pom.xml index 957eea1dc0..6abfbcf801 100644 --- a/modules/jooby-hbm/pom.xml +++ b/modules/jooby-hbm/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-hbs/pom.xml b/modules/jooby-hbs/pom.xml index 2187f62e01..f02dd0f65f 100644 --- a/modules/jooby-hbs/pom.xml +++ b/modules/jooby-hbs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-hbv/pom.xml b/modules/jooby-hbv/pom.xml index dfafd53da7..f6e661c397 100644 --- a/modules/jooby-hbv/pom.xml +++ b/modules/jooby-hbv/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-jackson/pom.xml b/modules/jooby-jackson/pom.xml index a96856b50b..f0efc72769 100644 --- a/modules/jooby-jackson/pom.xml +++ b/modules/jooby-jackson/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-jade/pom.xml b/modules/jooby-jade/pom.xml index e451ce02df..fc674280a4 100644 --- a/modules/jooby-jade/pom.xml +++ b/modules/jooby-jade/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-jdbc/pom.xml b/modules/jooby-jdbc/pom.xml index f760b46896..f24376632c 100644 --- a/modules/jooby-jdbc/pom.xml +++ b/modules/jooby-jdbc/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-jdbi/pom.xml b/modules/jooby-jdbi/pom.xml index 2dca857028..87db4145c7 100644 --- a/modules/jooby-jdbi/pom.xml +++ b/modules/jooby-jdbi/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-jdbi3/pom.xml b/modules/jooby-jdbi3/pom.xml index 14a90cb631..a9ffe34047 100644 --- a/modules/jooby-jdbi3/pom.xml +++ b/modules/jooby-jdbi3/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-jedis/pom.xml b/modules/jooby-jedis/pom.xml index 37edd8ae36..14fa37ae73 100644 --- a/modules/jooby-jedis/pom.xml +++ b/modules/jooby-jedis/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-jetty/pom.xml b/modules/jooby-jetty/pom.xml index d5bf446a97..3dfa5e07cb 100644 --- a/modules/jooby-jetty/pom.xml +++ b/modules/jooby-jetty/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-jongo/pom.xml b/modules/jooby-jongo/pom.xml index b899f08319..6f60602f41 100644 --- a/modules/jooby-jongo/pom.xml +++ b/modules/jooby-jongo/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-jooq/pom.xml b/modules/jooby-jooq/pom.xml index f4f7b9f849..1cb8c29522 100644 --- a/modules/jooby-jooq/pom.xml +++ b/modules/jooby-jooq/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-lang-kotlin/pom.xml b/modules/jooby-lang-kotlin/pom.xml index 99008d47ab..cf57317012 100644 --- a/modules/jooby-lang-kotlin/pom.xml +++ b/modules/jooby-lang-kotlin/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-livereload/pom.xml b/modules/jooby-livereload/pom.xml index fe1a783708..12116d5a9b 100644 --- a/modules/jooby-livereload/pom.xml +++ b/modules/jooby-livereload/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT jooby-livereload jooby-livereload diff --git a/modules/jooby-maven-plugin/pom.xml b/modules/jooby-maven-plugin/pom.xml index 8a1e8f5673..561e759a72 100644 --- a/modules/jooby-maven-plugin/pom.xml +++ b/modules/jooby-maven-plugin/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-metrics/pom.xml b/modules/jooby-metrics/pom.xml index 566f0ad816..d2acaa867f 100644 --- a/modules/jooby-metrics/pom.xml +++ b/modules/jooby-metrics/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-micrometer/pom.xml b/modules/jooby-micrometer/pom.xml index e8b0e811d7..1e84f41dfc 100644 --- a/modules/jooby-micrometer/pom.xml +++ b/modules/jooby-micrometer/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-mongodb-rx/pom.xml b/modules/jooby-mongodb-rx/pom.xml index ada3d2681a..97658473be 100644 --- a/modules/jooby-mongodb-rx/pom.xml +++ b/modules/jooby-mongodb-rx/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-mongodb/pom.xml b/modules/jooby-mongodb/pom.xml index c47dca4ad8..438b8f9d67 100644 --- a/modules/jooby-mongodb/pom.xml +++ b/modules/jooby-mongodb/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-morphia/pom.xml b/modules/jooby-morphia/pom.xml index ead16d8793..d774150818 100644 --- a/modules/jooby-morphia/pom.xml +++ b/modules/jooby-morphia/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-neo4j/pom.xml b/modules/jooby-neo4j/pom.xml index fc335a4188..19a6a9c136 100644 --- a/modules/jooby-neo4j/pom.xml +++ b/modules/jooby-neo4j/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-netty/pom.xml b/modules/jooby-netty/pom.xml index 9c034a5608..28c06aef1f 100644 --- a/modules/jooby-netty/pom.xml +++ b/modules/jooby-netty/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-pac4j/pom.xml b/modules/jooby-pac4j/pom.xml index d0171ce406..8f40ffab38 100644 --- a/modules/jooby-pac4j/pom.xml +++ b/modules/jooby-pac4j/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-pac4j2/pom.xml b/modules/jooby-pac4j2/pom.xml index 7230147da3..2620a8331a 100644 --- a/modules/jooby-pac4j2/pom.xml +++ b/modules/jooby-pac4j2/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-pebble/pom.xml b/modules/jooby-pebble/pom.xml index 319bad7e0d..6fd1fef4a0 100644 --- a/modules/jooby-pebble/pom.xml +++ b/modules/jooby-pebble/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-quartz/pom.xml b/modules/jooby-quartz/pom.xml index bc058be260..33b5e799ff 100644 --- a/modules/jooby-quartz/pom.xml +++ b/modules/jooby-quartz/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-querydsl/pom.xml b/modules/jooby-querydsl/pom.xml index 691b8c4ace..3db655ce46 100644 --- a/modules/jooby-querydsl/pom.xml +++ b/modules/jooby-querydsl/pom.xml @@ -4,7 +4,7 @@ modules org.jooby - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-reactor/pom.xml b/modules/jooby-reactor/pom.xml index 22903378ca..5a2aa617bb 100644 --- a/modules/jooby-reactor/pom.xml +++ b/modules/jooby-reactor/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-requery/pom.xml b/modules/jooby-requery/pom.xml index 9bd8b604ef..52ec31f798 100644 --- a/modules/jooby-requery/pom.xml +++ b/modules/jooby-requery/pom.xml @@ -4,7 +4,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT jooby-requery requery module diff --git a/modules/jooby-rocker/pom.xml b/modules/jooby-rocker/pom.xml index 5537eecc2d..5ed9588609 100644 --- a/modules/jooby-rocker/pom.xml +++ b/modules/jooby-rocker/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT jooby-rocker jooby-rocker diff --git a/modules/jooby-run/pom.xml b/modules/jooby-run/pom.xml index 337c98ae84..93d4767a59 100644 --- a/modules/jooby-run/pom.xml +++ b/modules/jooby-run/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-rxjava-jdbc/pom.xml b/modules/jooby-rxjava-jdbc/pom.xml index 4e709606d2..51b62cd506 100644 --- a/modules/jooby-rxjava-jdbc/pom.xml +++ b/modules/jooby-rxjava-jdbc/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-rxjava/pom.xml b/modules/jooby-rxjava/pom.xml index 385306dd46..4e0335aea8 100644 --- a/modules/jooby-rxjava/pom.xml +++ b/modules/jooby-rxjava/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-scanner/pom.xml b/modules/jooby-scanner/pom.xml index 699df9980b..a5c64fd286 100644 --- a/modules/jooby-scanner/pom.xml +++ b/modules/jooby-scanner/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-servlet/pom.xml b/modules/jooby-servlet/pom.xml index 13daeeec1a..757f54c205 100644 --- a/modules/jooby-servlet/pom.xml +++ b/modules/jooby-servlet/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-sitemap/pom.xml b/modules/jooby-sitemap/pom.xml index b1d0646be3..d24b5531e3 100644 --- a/modules/jooby-sitemap/pom.xml +++ b/modules/jooby-sitemap/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-spymemcached/pom.xml b/modules/jooby-spymemcached/pom.xml index 7041006a14..b89e66e36c 100644 --- a/modules/jooby-spymemcached/pom.xml +++ b/modules/jooby-spymemcached/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-thymeleaf/pom.xml b/modules/jooby-thymeleaf/pom.xml index 37cf5f8f96..7372b15460 100644 --- a/modules/jooby-thymeleaf/pom.xml +++ b/modules/jooby-thymeleaf/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-unbescape/pom.xml b/modules/jooby-unbescape/pom.xml index 84d2e65504..805dae921f 100644 --- a/modules/jooby-unbescape/pom.xml +++ b/modules/jooby-unbescape/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-undertow/pom.xml b/modules/jooby-undertow/pom.xml index 37ccb020f4..5a3613e6c3 100644 --- a/modules/jooby-undertow/pom.xml +++ b/modules/jooby-undertow/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-whoops/pom.xml b/modules/jooby-whoops/pom.xml index 424e6bbd27..dc7dec515f 100644 --- a/modules/jooby-whoops/pom.xml +++ b/modules/jooby-whoops/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/jooby-yasson/pom.xml b/modules/jooby-yasson/pom.xml index 7de5d00e22..b53b4ff730 100644 --- a/modules/jooby-yasson/pom.xml +++ b/modules/jooby-yasson/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.1 + 1.6.2-SNAPSHOT 4.0.0 diff --git a/modules/pom.xml b/modules/pom.xml index 17e3c32c7c..5e886bb075 100644 --- a/modules/pom.xml +++ b/modules/pom.xml @@ -6,7 +6,7 @@ org.jooby jooby-project - 1.6.1 + 1.6.2-SNAPSHOT modules diff --git a/pom.xml b/pom.xml index b0ee955c16..aa5e3e7159 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ 4.0.0 org.jooby jooby-project - 1.6.1 + 1.6.2-SNAPSHOT pom jooby-project From 445b9791693dc9d4d10c19149178f3e18ba5a293 Mon Sep 17 00:00:00 2001 From: Edgar Espina Date: Sun, 2 Jun 2019 18:42:05 -0300 Subject: [PATCH 56/93] remove dead class --- .../main/java/org/jooby/assets/Bitwise.java | 210 ------------------ 1 file changed, 210 deletions(-) delete mode 100644 modules/jooby-assets/src/main/java/org/jooby/assets/Bitwise.java diff --git a/modules/jooby-assets/src/main/java/org/jooby/assets/Bitwise.java b/modules/jooby-assets/src/main/java/org/jooby/assets/Bitwise.java deleted file mode 100644 index 75f2cf7f5d..0000000000 --- a/modules/jooby-assets/src/main/java/org/jooby/assets/Bitwise.java +++ /dev/null @@ -1,210 +0,0 @@ -/** - * Apache License - * Version 2.0, January 2004 - * http://www.apache.org/licenses/ - * - * TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - * - * 1. Definitions. - * - * "License" shall mean the terms and conditions for use, reproduction, - * and distribution as defined by Sections 1 through 9 of this document. - * - * "Licensor" shall mean the copyright owner or entity authorized by - * the copyright owner that is granting the License. - * - * "Legal Entity" shall mean the union of the acting entity and all - * other entities that control, are controlled by, or are under common - * control with that entity. For the purposes of this definition, - * "control" means (i) the power, direct or indirect, to cause the - * direction or management of such entity, whether by contract or - * otherwise, or (ii) ownership of fifty percent (50%) or more of the - * outstanding shares, or (iii) beneficial ownership of such entity. - * - * "You" (or "Your") shall mean an individual or Legal Entity - * exercising permissions granted by this License. - * - * "Source" form shall mean the preferred form for making modifications, - * including but not limited to software source code, documentation - * source, and configuration files. - * - * "Object" form shall mean any form resulting from mechanical - * transformation or translation of a Source form, including but - * not limited to compiled object code, generated documentation, - * and conversions to other media types. - * - * "Work" shall mean the work of authorship, whether in Source or - * Object form, made available under the License, as indicated by a - * copyright notice that is included in or attached to the work - * (an example is provided in the Appendix below). - * - * "Derivative Works" shall mean any work, whether in Source or Object - * form, that is based on (or derived from) the Work and for which the - * editorial revisions, annotations, elaborations, or other modifications - * represent, as a whole, an original work of authorship. For the purposes - * of this License, Derivative Works shall not include works that remain - * separable from, or merely link (or bind by name) to the interfaces of, - * the Work and Derivative Works thereof. - * - * "Contribution" shall mean any work of authorship, including - * the original version of the Work and any modifications or additions - * to that Work or Derivative Works thereof, that is intentionally - * submitted to Licensor for inclusion in the Work by the copyright owner - * or by an individual or Legal Entity authorized to submit on behalf of - * the copyright owner. For the purposes of this definition, "submitted" - * means any form of electronic, verbal, or written communication sent - * to the Licensor or its representatives, including but not limited to - * communication on electronic mailing lists, source code control systems, - * and issue tracking systems that are managed by, or on behalf of, the - * Licensor for the purpose of discussing and improving the Work, but - * excluding communication that is conspicuously marked or otherwise - * designated in writing by the copyright owner as "Not a Contribution." - * - * "Contributor" shall mean Licensor and any individual or Legal Entity - * on behalf of whom a Contribution has been received by Licensor and - * subsequently incorporated within the Work. - * - * 2. Grant of Copyright License. Subject to the terms and conditions of - * this License, each Contributor hereby grants to You a perpetual, - * worldwide, non-exclusive, no-charge, royalty-free, irrevocable - * copyright license to reproduce, prepare Derivative Works of, - * publicly display, publicly perform, sublicense, and distribute the - * Work and such Derivative Works in Source or Object form. - * - * 3. Grant of Patent License. Subject to the terms and conditions of - * this License, each Contributor hereby grants to You a perpetual, - * worldwide, non-exclusive, no-charge, royalty-free, irrevocable - * (except as stated in this section) patent license to make, have made, - * use, offer to sell, sell, import, and otherwise transfer the Work, - * where such license applies only to those patent claims licensable - * by such Contributor that are necessarily infringed by their - * Contribution(s) alone or by combination of their Contribution(s) - * with the Work to which such Contribution(s) was submitted. If You - * institute patent litigation against any entity (including a - * cross-claim or counterclaim in a lawsuit) alleging that the Work - * or a Contribution incorporated within the Work constitutes direct - * or contributory patent infringement, then any patent licenses - * granted to You under this License for that Work shall terminate - * as of the date such litigation is filed. - * - * 4. Redistribution. You may reproduce and distribute copies of the - * Work or Derivative Works thereof in any medium, with or without - * modifications, and in Source or Object form, provided that You - * meet the following conditions: - * - * (a) You must give any other recipients of the Work or - * Derivative Works a copy of this License; and - * - * (b) You must cause any modified files to carry prominent notices - * stating that You changed the files; and - * - * (c) You must retain, in the Source form of any Derivative Works - * that You distribute, all copyright, patent, trademark, and - * attribution notices from the Source form of the Work, - * excluding those notices that do not pertain to any part of - * the Derivative Works; and - * - * (d) If the Work includes a "NOTICE" text file as part of its - * distribution, then any Derivative Works that You distribute must - * include a readable copy of the attribution notices contained - * within such NOTICE file, excluding those notices that do not - * pertain to any part of the Derivative Works, in at least one - * of the following places: within a NOTICE text file distributed - * as part of the Derivative Works; within the Source form or - * documentation, if provided along with the Derivative Works; or, - * within a display generated by the Derivative Works, if and - * wherever such third-party notices normally appear. The contents - * of the NOTICE file are for informational purposes only and - * do not modify the License. You may add Your own attribution - * notices within Derivative Works that You distribute, alongside - * or as an addendum to the NOTICE text from the Work, provided - * that such additional attribution notices cannot be construed - * as modifying the License. - * - * You may add Your own copyright statement to Your modifications and - * may provide additional or different license terms and conditions - * for use, reproduction, or distribution of Your modifications, or - * for any such Derivative Works as a whole, provided Your use, - * reproduction, and distribution of the Work otherwise complies with - * the conditions stated in this License. - * - * 5. Submission of Contributions. Unless You explicitly state otherwise, - * any Contribution intentionally submitted for inclusion in the Work - * by You to the Licensor shall be under the terms and conditions of - * this License, without any additional terms or conditions. - * Notwithstanding the above, nothing herein shall supersede or modify - * the terms of any separate license agreement you may have executed - * with Licensor regarding such Contributions. - * - * 6. Trademarks. This License does not grant permission to use the trade - * names, trademarks, service marks, or product names of the Licensor, - * except as required for reasonable and customary use in describing the - * origin of the Work and reproducing the content of the NOTICE file. - * - * 7. Disclaimer of Warranty. Unless required by applicable law or - * agreed to in writing, Licensor provides the Work (and each - * Contributor provides its Contributions) on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - * implied, including, without limitation, any warranties or conditions - * of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - * PARTICULAR PURPOSE. You are solely responsible for determining the - * appropriateness of using or redistributing the Work and assume any - * risks associated with Your exercise of permissions under this License. - * - * 8. Limitation of Liability. In no event and under no legal theory, - * whether in tort (including negligence), contract, or otherwise, - * unless required by applicable law (such as deliberate and grossly - * negligent acts) or agreed to in writing, shall any Contributor be - * liable to You for damages, including any direct, indirect, special, - * incidental, or consequential damages of any character arising as a - * result of this License or out of the use or inability to use the - * Work (including but not limited to damages for loss of goodwill, - * work stoppage, computer failure or malfunction, or any and all - * other commercial damages or losses), even if such Contributor - * has been advised of the possibility of such damages. - * - * 9. Accepting Warranty or Additional Liability. While redistributing - * the Work or Derivative Works thereof, You may choose to offer, - * and charge a fee for, acceptance of support, warranty, indemnity, - * or other liability obligations and/or rights consistent with this - * License. However, in accepting such obligations, You may act only - * on Your own behalf and on Your sole responsibility, not on behalf - * of any other Contributor, and only if You agree to indemnify, - * defend, and hold each Contributor harmless for any liability - * incurred by, or claims asserted against, such Contributor by reason - * of your accepting any such warranty or additional liability. - * - * END OF TERMS AND CONDITIONS - * - * APPENDIX: How to apply the Apache License to your work. - * - * To apply the Apache License to your work, attach the following - * boilerplate notice, with the fields enclosed by brackets "{}" - * replaced with your own identifying information. (Don't include - * the brackets!) The text should be enclosed in the appropriate - * comment syntax for the file format. We also recommend that a - * file or class name and description of purpose be included on the - * same "printed page" as the copyright notice for easier - * identification within third-party archives. - * - * Copyright 2014 Edgar Espina - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package org.jooby.assets; - -public class Bitwise { - public static void main(String[] args) { - System.out.println(1<<17); - } -} From 9eda8012d3a12e82b7fb3402a331a909c851b944 Mon Sep 17 00:00:00 2001 From: Edgar Espina Date: Wed, 5 Jun 2019 16:37:40 -0300 Subject: [PATCH 57/93] v1.6.2 --- README.md | 4 ++-- jooby/pom.xml | 2 +- modules/coverage-report/pom.xml | 2 +- modules/jooby-akka/README.md | 6 +++--- modules/jooby-akka/pom.xml | 2 +- modules/jooby-apitool/README.md | 8 ++++---- modules/jooby-apitool/pom.xml | 2 +- modules/jooby-archetype/pom.xml | 2 +- modules/jooby-assets-autoprefixer/README.md | 6 +++--- modules/jooby-assets-autoprefixer/pom.xml | 2 +- modules/jooby-assets-babel/README.md | 8 ++++---- modules/jooby-assets-babel/pom.xml | 2 +- modules/jooby-assets-clean-css/README.md | 6 +++--- modules/jooby-assets-clean-css/pom.xml | 2 +- .../jooby-assets-closure-compiler/README.md | 6 +++--- modules/jooby-assets-closure-compiler/pom.xml | 2 +- modules/jooby-assets-csslint/README.md | 6 +++--- modules/jooby-assets-csslint/pom.xml | 2 +- modules/jooby-assets-j2v8/pom.xml | 2 +- modules/jooby-assets-jscs/README.md | 6 +++--- modules/jooby-assets-jscs/pom.xml | 2 +- modules/jooby-assets-jshint/README.md | 6 +++--- modules/jooby-assets-jshint/pom.xml | 2 +- modules/jooby-assets-less/README.md | 6 +++--- modules/jooby-assets-less/pom.xml | 2 +- modules/jooby-assets-less4j/README.md | 6 +++--- modules/jooby-assets-less4j/pom.xml | 2 +- modules/jooby-assets-ng-annotate/README.md | 6 +++--- modules/jooby-assets-ng-annotate/pom.xml | 2 +- modules/jooby-assets-nodejs/pom.xml | 2 +- modules/jooby-assets-requirejs/README.md | 6 +++--- modules/jooby-assets-requirejs/pom.xml | 2 +- modules/jooby-assets-rollup/README.md | 6 +++--- modules/jooby-assets-rollup/pom.xml | 2 +- modules/jooby-assets-sass/README.md | 6 +++--- modules/jooby-assets-sass/pom.xml | 2 +- modules/jooby-assets-svg-sprites/README.md | 6 +++--- modules/jooby-assets-svg-sprites/pom.xml | 2 +- modules/jooby-assets-svg-symbol/README.md | 6 +++--- modules/jooby-assets-svg-symbol/pom.xml | 2 +- modules/jooby-assets-uglify/README.md | 6 +++--- modules/jooby-assets-uglify/pom.xml | 2 +- modules/jooby-assets-yui-compressor/README.md | 6 +++--- modules/jooby-assets-yui-compressor/pom.xml | 2 +- modules/jooby-assets/README.md | 6 +++--- modules/jooby-assets/pom.xml | 2 +- modules/jooby-aws/README.md | 6 +++--- modules/jooby-aws/pom.xml | 2 +- modules/jooby-banner/README.md | 6 +++--- modules/jooby-banner/pom.xml | 2 +- modules/jooby-bom/pom.xml | 4 ++-- modules/jooby-caffeine/README.md | 6 +++--- modules/jooby-caffeine/pom.xml | 2 +- modules/jooby-camel/README.md | 6 +++--- modules/jooby-camel/pom.xml | 2 +- modules/jooby-cassandra/README.md | 8 ++++---- modules/jooby-cassandra/pom.xml | 2 +- modules/jooby-commons-email/README.md | 6 +++--- modules/jooby-commons-email/pom.xml | 2 +- modules/jooby-consul/README.md | 6 +++--- modules/jooby-consul/pom.xml | 2 +- modules/jooby-couchbase/README.md | 8 ++++---- modules/jooby-couchbase/pom.xml | 2 +- modules/jooby-crash/README.md | 6 +++--- modules/jooby-crash/pom.xml | 2 +- modules/jooby-csl/README.md | 6 +++--- modules/jooby-csl/pom.xml | 2 +- modules/jooby-dist/pom.xml | 2 +- modules/jooby-ebean/README.md | 6 +++--- modules/jooby-ebean/pom.xml | 2 +- modules/jooby-ehcache/README.md | 8 ++++---- modules/jooby-ehcache/pom.xml | 2 +- modules/jooby-elasticsearch/README.md | 6 +++--- modules/jooby-elasticsearch/pom.xml | 2 +- modules/jooby-eventbus/README.md | 6 +++--- modules/jooby-eventbus/pom.xml | 2 +- modules/jooby-executor/README.md | 6 +++--- modules/jooby-executor/pom.xml | 2 +- modules/jooby-exposed/README.md | 4 ++-- modules/jooby-exposed/pom.xml | 2 +- modules/jooby-filewatcher/README.md | 6 +++--- modules/jooby-filewatcher/pom.xml | 2 +- modules/jooby-flyway/README.md | 6 +++--- modules/jooby-flyway/pom.xml | 2 +- modules/jooby-frontend/README.md | 6 +++--- modules/jooby-frontend/pom.xml | 2 +- modules/jooby-ftl/README.md | 6 +++--- modules/jooby-ftl/pom.xml | 2 +- modules/jooby-gradle-plugin/README.md | 6 +++--- modules/jooby-gradle-plugin/pom.xml | 2 +- modules/jooby-gson/README.md | 6 +++--- modules/jooby-gson/pom.xml | 2 +- modules/jooby-guava-cache/README.md | 8 ++++---- modules/jooby-guava-cache/pom.xml | 2 +- modules/jooby-hazelcast/README.md | 8 ++++---- modules/jooby-hazelcast/pom.xml | 2 +- modules/jooby-hbm/README.md | 6 +++--- modules/jooby-hbm/pom.xml | 2 +- modules/jooby-hbs/README.md | 6 +++--- modules/jooby-hbs/pom.xml | 2 +- modules/jooby-hbv/README.md | 19 ++++++++++++++++--- modules/jooby-hbv/pom.xml | 2 +- modules/jooby-jackson/README.md | 6 +++--- modules/jooby-jackson/pom.xml | 2 +- modules/jooby-jade/README.md | 6 +++--- modules/jooby-jade/pom.xml | 2 +- modules/jooby-jdbc/README.md | 6 +++--- modules/jooby-jdbc/pom.xml | 2 +- modules/jooby-jdbi/README.md | 6 +++--- modules/jooby-jdbi/pom.xml | 2 +- modules/jooby-jdbi3/README.md | 6 +++--- modules/jooby-jdbi3/pom.xml | 2 +- modules/jooby-jedis/README.md | 8 ++++---- modules/jooby-jedis/pom.xml | 2 +- modules/jooby-jetty/README.md | 6 +++--- modules/jooby-jetty/pom.xml | 2 +- modules/jooby-jongo/README.md | 6 +++--- modules/jooby-jongo/pom.xml | 2 +- modules/jooby-jooq/README.md | 6 +++--- modules/jooby-jooq/pom.xml | 2 +- modules/jooby-lang-kotlin/README.md | 6 +++--- modules/jooby-lang-kotlin/pom.xml | 2 +- modules/jooby-livereload/README.md | 6 +++--- modules/jooby-livereload/pom.xml | 2 +- modules/jooby-maven-plugin/README.md | 10 +++++----- modules/jooby-maven-plugin/pom.xml | 2 +- modules/jooby-metrics/README.md | 6 +++--- modules/jooby-metrics/pom.xml | 2 +- modules/jooby-micrometer/README.md | 6 +++--- modules/jooby-micrometer/pom.xml | 2 +- modules/jooby-mongodb-rx/README.md | 6 +++--- modules/jooby-mongodb-rx/pom.xml | 2 +- modules/jooby-mongodb/README.md | 8 ++++---- modules/jooby-mongodb/pom.xml | 2 +- modules/jooby-morphia/README.md | 6 +++--- modules/jooby-morphia/pom.xml | 2 +- modules/jooby-neo4j/README.md | 8 ++++---- modules/jooby-neo4j/pom.xml | 2 +- modules/jooby-netty/README.md | 6 +++--- modules/jooby-netty/pom.xml | 2 +- modules/jooby-pac4j/README.md | 6 +++--- modules/jooby-pac4j/pom.xml | 2 +- modules/jooby-pac4j2/README.md | 6 +++--- modules/jooby-pac4j2/pom.xml | 2 +- modules/jooby-pebble/README.md | 6 +++--- modules/jooby-pebble/pom.xml | 2 +- modules/jooby-quartz/README.md | 6 +++--- modules/jooby-quartz/pom.xml | 2 +- modules/jooby-querydsl/README.md | 6 +++--- modules/jooby-querydsl/pom.xml | 2 +- modules/jooby-reactor/README.md | 6 +++--- modules/jooby-reactor/pom.xml | 2 +- modules/jooby-requery/README.md | 6 +++--- modules/jooby-requery/pom.xml | 2 +- modules/jooby-rocker/README.md | 6 +++--- modules/jooby-rocker/pom.xml | 2 +- modules/jooby-run/pom.xml | 2 +- modules/jooby-rxjava-jdbc/README.md | 6 +++--- modules/jooby-rxjava-jdbc/pom.xml | 2 +- modules/jooby-rxjava/README.md | 6 +++--- modules/jooby-rxjava/pom.xml | 2 +- modules/jooby-scanner/README.md | 6 +++--- modules/jooby-scanner/pom.xml | 2 +- modules/jooby-servlet/README.md | 4 ++-- modules/jooby-servlet/pom.xml | 2 +- modules/jooby-sitemap/README.md | 6 +++--- modules/jooby-sitemap/pom.xml | 2 +- modules/jooby-spymemcached/README.md | 8 ++++---- modules/jooby-spymemcached/pom.xml | 2 +- modules/jooby-thymeleaf/README.md | 6 +++--- modules/jooby-thymeleaf/pom.xml | 2 +- modules/jooby-unbescape/README.md | 6 +++--- modules/jooby-unbescape/pom.xml | 2 +- modules/jooby-undertow/README.md | 6 +++--- modules/jooby-undertow/pom.xml | 2 +- modules/jooby-whoops/README.md | 6 +++--- modules/jooby-whoops/pom.xml | 2 +- modules/jooby-yasson/README.md | 6 +++--- modules/jooby-yasson/pom.xml | 2 +- modules/pom.xml | 2 +- pom.xml | 4 ++-- 181 files changed, 378 insertions(+), 365 deletions(-) diff --git a/README.md b/README.md index 08f4d840bd..a394443379 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby.svg)](https://javadoc.io/doc/org.jooby/jooby/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby.svg)](https://javadoc.io/doc/org.jooby/jooby/1.6.2) [![Become a Patreon](https://img.shields.io/badge/patreon-donate-orange.svg)](https://patreon.com/edgarespina) [![Build Status](https://travis-ci.org/jooby-project/jooby.svg?branch=master)](https://travis-ci.org/jooby-project/jooby) [![coveralls.io](https://img.shields.io/coveralls/jooby-project/jooby.svg)](https://coveralls.io/r/jooby-project/jooby?branch=master) diff --git a/jooby/pom.xml b/jooby/pom.xml index 4df6f18399..bdfff6a403 100644 --- a/jooby/pom.xml +++ b/jooby/pom.xml @@ -6,7 +6,7 @@ org.jooby jooby-project - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/coverage-report/pom.xml b/modules/coverage-report/pom.xml index 492a125952..d3114d9178 100644 --- a/modules/coverage-report/pom.xml +++ b/modules/coverage-report/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-akka/README.md b/modules/jooby-akka/README.md index 5f61d18fa4..7dbc19b9d7 100644 --- a/modules/jooby-akka/README.md +++ b/modules/jooby-akka/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-akka/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-akka/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-akka.svg)](https://javadoc.io/doc/org.jooby/jooby-akka/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-akka/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-akka/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-akka.svg)](https://javadoc.io/doc/org.jooby/jooby-akka/1.6.2) [![jooby-akka website](https://img.shields.io/badge/jooby-akka-brightgreen.svg)](http://jooby.org/doc/akka) # akka @@ -15,7 +15,7 @@ Small module to build concurrent & distributed applications via [Akka](http://ak org.jooby jooby-akka - 1.6.1 + 1.6.2 ``` diff --git a/modules/jooby-akka/pom.xml b/modules/jooby-akka/pom.xml index acadf8d177..850daf5c9b 100644 --- a/modules/jooby-akka/pom.xml +++ b/modules/jooby-akka/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-apitool/README.md b/modules/jooby-apitool/README.md index 7bbc0dcedc..25c82a0c4d 100644 --- a/modules/jooby-apitool/README.md +++ b/modules/jooby-apitool/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-apitool/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-apitool/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-apitool.svg)](https://javadoc.io/doc/org.jooby/jooby-apitool/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-apitool/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-apitool/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-apitool.svg)](https://javadoc.io/doc/org.jooby/jooby-apitool/1.6.2) [![jooby-apitool website](https://img.shields.io/badge/jooby-apitool-brightgreen.svg)](http://jooby.org/doc/apitool) # API tool @@ -23,7 +23,7 @@ This module generates live documentation from your HTTP API (source code). org.jooby jooby-apitool - 1.6.1 + 1.6.2 ``` @@ -187,7 +187,7 @@ Go to ```build.gradle``` and add these lines: ```gradke buildscript { dependencies { - classpath group: 'org.jooby', name: 'jooby-gradle-plugin', version: '1.6.1' + classpath group: 'org.jooby', name: 'jooby-gradle-plugin', version: '1.6.2' } } apply plugin: 'jooby' diff --git a/modules/jooby-apitool/pom.xml b/modules/jooby-apitool/pom.xml index 34784a7744..86c5cfd74f 100644 --- a/modules/jooby-apitool/pom.xml +++ b/modules/jooby-apitool/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-archetype/pom.xml b/modules/jooby-archetype/pom.xml index 1433e54559..71989c556b 100644 --- a/modules/jooby-archetype/pom.xml +++ b/modules/jooby-archetype/pom.xml @@ -7,7 +7,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 jooby-archetype diff --git a/modules/jooby-assets-autoprefixer/README.md b/modules/jooby-assets-autoprefixer/README.md index 76fba40157..7f64b14c9d 100644 --- a/modules/jooby-assets-autoprefixer/README.md +++ b/modules/jooby-assets-autoprefixer/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-autoprefixer/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-autoprefixer/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-autoprefixer.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-autoprefixer/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-autoprefixer/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-autoprefixer/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-autoprefixer.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-autoprefixer/1.6.2) [![jooby-assets-autoprefixer website](https://img.shields.io/badge/jooby-assets-autoprefixer-brightgreen.svg)](http://jooby.org/doc/assets-autoprefixer) # auto-prefixer @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-autoprefixer - 1.6.1 + 1.6.2 provided ``` diff --git a/modules/jooby-assets-autoprefixer/pom.xml b/modules/jooby-assets-autoprefixer/pom.xml index 3ab47ea755..40f2370846 100644 --- a/modules/jooby-assets-autoprefixer/pom.xml +++ b/modules/jooby-assets-autoprefixer/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-assets-babel/README.md b/modules/jooby-assets-babel/README.md index 182b38d9a5..b9a4e6e969 100644 --- a/modules/jooby-assets-babel/README.md +++ b/modules/jooby-assets-babel/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-babel/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-babel/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-babel.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-babel/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-babel/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-babel/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-babel.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-babel/1.6.2) [![jooby-assets-babel website](https://img.shields.io/badge/jooby-assets-babel-brightgreen.svg)](http://jooby.org/doc/assets-babel) # babel @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-babel - 1.6.1 + 1.6.2 provided ``` @@ -38,7 +38,7 @@ assets { org.jooby jooby-assets-babel - 1.6.1 + 1.6.2 provided ``` diff --git a/modules/jooby-assets-babel/pom.xml b/modules/jooby-assets-babel/pom.xml index 7b7f43b425..2499ff3b28 100644 --- a/modules/jooby-assets-babel/pom.xml +++ b/modules/jooby-assets-babel/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-assets-clean-css/README.md b/modules/jooby-assets-clean-css/README.md index 9cdbe55254..33cd9803f6 100644 --- a/modules/jooby-assets-clean-css/README.md +++ b/modules/jooby-assets-clean-css/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-clean-css/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-clean-css/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-clean-css.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-clean-css/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-clean-css/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-clean-css/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-clean-css.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-clean-css/1.6.2) [![jooby-assets-clean-css website](https://img.shields.io/badge/jooby-assets-clean-css-brightgreen.svg)](http://jooby.org/doc/assets-clean-css) # clean-css @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-clean-css - 1.6.1 + 1.6.2 provided ``` diff --git a/modules/jooby-assets-clean-css/pom.xml b/modules/jooby-assets-clean-css/pom.xml index 9bbd5a6bd1..c2e0d82bf5 100644 --- a/modules/jooby-assets-clean-css/pom.xml +++ b/modules/jooby-assets-clean-css/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-assets-closure-compiler/README.md b/modules/jooby-assets-closure-compiler/README.md index 5e87265394..aae2bfa54a 100644 --- a/modules/jooby-assets-closure-compiler/README.md +++ b/modules/jooby-assets-closure-compiler/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-closure-compiler/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-closure-compiler/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-closure-compiler.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-closure-compiler/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-closure-compiler/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-closure-compiler/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-closure-compiler.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-closure-compiler/1.6.2) [![jooby-assets-closure-compiler website](https://img.shields.io/badge/jooby-assets-closure-compiler-brightgreen.svg)](http://jooby.org/doc/assets-closure-compiler) # closure-compiler @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-closure-compiler - 1.6.1 + 1.6.2 provided ``` diff --git a/modules/jooby-assets-closure-compiler/pom.xml b/modules/jooby-assets-closure-compiler/pom.xml index 1072fc1278..48af6e3e04 100644 --- a/modules/jooby-assets-closure-compiler/pom.xml +++ b/modules/jooby-assets-closure-compiler/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-assets-csslint/README.md b/modules/jooby-assets-csslint/README.md index 94408e13ec..43a8443c61 100644 --- a/modules/jooby-assets-csslint/README.md +++ b/modules/jooby-assets-csslint/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-csslint/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-csslint/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-csslint.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-csslint/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-csslint/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-csslint/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-csslint.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-csslint/1.6.2) [![jooby-assets-csslint website](https://img.shields.io/badge/jooby-assets-csslint-brightgreen.svg)](http://jooby.org/doc/assets-csslint) # csslint @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-csslint - 1.6.1 + 1.6.2 provided ``` diff --git a/modules/jooby-assets-csslint/pom.xml b/modules/jooby-assets-csslint/pom.xml index 6e1cbb47c4..4074744891 100644 --- a/modules/jooby-assets-csslint/pom.xml +++ b/modules/jooby-assets-csslint/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-assets-j2v8/pom.xml b/modules/jooby-assets-j2v8/pom.xml index b2df3c31e0..c8bd9e49c0 100644 --- a/modules/jooby-assets-j2v8/pom.xml +++ b/modules/jooby-assets-j2v8/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-assets-jscs/README.md b/modules/jooby-assets-jscs/README.md index 5191444c3b..4d80791e98 100644 --- a/modules/jooby-assets-jscs/README.md +++ b/modules/jooby-assets-jscs/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-jscs/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-jscs/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-jscs.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-jscs/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-jscs/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-jscs/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-jscs.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-jscs/1.6.2) [![jooby-assets-jscs website](https://img.shields.io/badge/jooby-assets-jscs-brightgreen.svg)](http://jooby.org/doc/assets-jscs) # jscs @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-jscs - 1.6.1 + 1.6.2 provided ``` diff --git a/modules/jooby-assets-jscs/pom.xml b/modules/jooby-assets-jscs/pom.xml index 09259b8ec5..a37f6ea37d 100644 --- a/modules/jooby-assets-jscs/pom.xml +++ b/modules/jooby-assets-jscs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-assets-jshint/README.md b/modules/jooby-assets-jshint/README.md index f9c4c77c87..c5c4994b0c 100644 --- a/modules/jooby-assets-jshint/README.md +++ b/modules/jooby-assets-jshint/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-jshint/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-jshint/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-jshint.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-jshint/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-jshint/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-jshint/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-jshint.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-jshint/1.6.2) [![jooby-assets-jshint website](https://img.shields.io/badge/jooby-assets-jshint-brightgreen.svg)](http://jooby.org/doc/assets-jshint) # jshint @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-jshint - 1.6.1 + 1.6.2 provided ``` diff --git a/modules/jooby-assets-jshint/pom.xml b/modules/jooby-assets-jshint/pom.xml index f6babee655..48e220edde 100644 --- a/modules/jooby-assets-jshint/pom.xml +++ b/modules/jooby-assets-jshint/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-assets-less/README.md b/modules/jooby-assets-less/README.md index de400bb3f4..a50aaaad10 100644 --- a/modules/jooby-assets-less/README.md +++ b/modules/jooby-assets-less/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-less/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-less/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-less.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-less/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-less/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-less/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-less.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-less/1.6.2) [![jooby-assets-less website](https://img.shields.io/badge/jooby-assets-less-brightgreen.svg)](http://jooby.org/doc/assets-less) # less @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-less - 1.6.1 + 1.6.2 provided ``` diff --git a/modules/jooby-assets-less/pom.xml b/modules/jooby-assets-less/pom.xml index 438d19c222..a326adf5cb 100644 --- a/modules/jooby-assets-less/pom.xml +++ b/modules/jooby-assets-less/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-assets-less4j/README.md b/modules/jooby-assets-less4j/README.md index d38ca69789..bff27ed29d 100644 --- a/modules/jooby-assets-less4j/README.md +++ b/modules/jooby-assets-less4j/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-less4j/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-less4j/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-less4j.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-less4j/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-less4j/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-less4j/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-less4j.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-less4j/1.6.2) [![jooby-assets-less4j website](https://img.shields.io/badge/jooby-assets-less4j-brightgreen.svg)](http://jooby.org/doc/assets-less4j) # less4j @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-less4j - 1.6.1 + 1.6.2 provided ``` diff --git a/modules/jooby-assets-less4j/pom.xml b/modules/jooby-assets-less4j/pom.xml index a036226863..a4e405a7d4 100644 --- a/modules/jooby-assets-less4j/pom.xml +++ b/modules/jooby-assets-less4j/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-assets-ng-annotate/README.md b/modules/jooby-assets-ng-annotate/README.md index 847212027c..d2ebae2ec2 100644 --- a/modules/jooby-assets-ng-annotate/README.md +++ b/modules/jooby-assets-ng-annotate/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-ng-annotate/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-ng-annotate/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-ng-annotate.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-ng-annotate/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-ng-annotate/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-ng-annotate/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-ng-annotate.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-ng-annotate/1.6.2) [![jooby-assets-ng-annotate website](https://img.shields.io/badge/jooby-assets-ng-annotate-brightgreen.svg)](http://jooby.org/doc/assets-ng-annotate) # ng-annotate @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-ng-annotate - 1.6.1 + 1.6.2 provided ``` diff --git a/modules/jooby-assets-ng-annotate/pom.xml b/modules/jooby-assets-ng-annotate/pom.xml index 7778302b33..b8ec118741 100644 --- a/modules/jooby-assets-ng-annotate/pom.xml +++ b/modules/jooby-assets-ng-annotate/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-assets-nodejs/pom.xml b/modules/jooby-assets-nodejs/pom.xml index c9aef52ba7..ca4e9f91a9 100644 --- a/modules/jooby-assets-nodejs/pom.xml +++ b/modules/jooby-assets-nodejs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-assets-requirejs/README.md b/modules/jooby-assets-requirejs/README.md index 47588a6ff0..8818bf3f3e 100644 --- a/modules/jooby-assets-requirejs/README.md +++ b/modules/jooby-assets-requirejs/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-requirejs/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-requirejs/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-requirejs.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-requirejs/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-requirejs/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-requirejs/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-requirejs.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-requirejs/1.6.2) [![jooby-assets-requirejs website](https://img.shields.io/badge/jooby-assets-requirejs-brightgreen.svg)](http://jooby.org/doc/assets-requirejs) # rjs @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-requirejs - 1.6.1 + 1.6.2 provided ``` diff --git a/modules/jooby-assets-requirejs/pom.xml b/modules/jooby-assets-requirejs/pom.xml index a1c288f9bb..7caa8a9238 100644 --- a/modules/jooby-assets-requirejs/pom.xml +++ b/modules/jooby-assets-requirejs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-assets-rollup/README.md b/modules/jooby-assets-rollup/README.md index 87d0497f31..ece176f4d6 100644 --- a/modules/jooby-assets-rollup/README.md +++ b/modules/jooby-assets-rollup/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-rollup/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-rollup/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-rollup.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-rollup/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-rollup/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-rollup/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-rollup.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-rollup/1.6.2) [![jooby-assets-rollup website](https://img.shields.io/badge/jooby-assets-rollup-brightgreen.svg)](http://jooby.org/doc/assets-rollup) # rollup.js @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-rollup.js - 1.6.1 + 1.6.2 provided ``` diff --git a/modules/jooby-assets-rollup/pom.xml b/modules/jooby-assets-rollup/pom.xml index 761f7415cb..f6d2d2b919 100644 --- a/modules/jooby-assets-rollup/pom.xml +++ b/modules/jooby-assets-rollup/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-assets-sass/README.md b/modules/jooby-assets-sass/README.md index fe2ade9b95..b3f1e7e9e3 100644 --- a/modules/jooby-assets-sass/README.md +++ b/modules/jooby-assets-sass/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-sass/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-sass/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-sass.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-sass/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-sass/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-sass/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-sass.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-sass/1.6.2) [![jooby-assets-sass website](https://img.shields.io/badge/jooby-assets-sass-brightgreen.svg)](http://jooby.org/doc/assets-sass) # sass @@ -13,7 +13,7 @@ org.jooby jooby-assets-sass - 1.6.1 + 1.6.2 provided ``` diff --git a/modules/jooby-assets-sass/pom.xml b/modules/jooby-assets-sass/pom.xml index 7d299cbf0a..18c5b386e5 100644 --- a/modules/jooby-assets-sass/pom.xml +++ b/modules/jooby-assets-sass/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-assets-svg-sprites/README.md b/modules/jooby-assets-svg-sprites/README.md index be90ea6729..1a71f416c4 100644 --- a/modules/jooby-assets-svg-sprites/README.md +++ b/modules/jooby-assets-svg-sprites/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-svg-sprites/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-svg-sprites/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-svg-sprites.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-svg-sprites/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-svg-sprites/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-svg-sprites/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-svg-sprites.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-svg-sprites/1.6.2) [![jooby-assets-svg-sprites website](https://img.shields.io/badge/jooby-assets-svg-sprites-brightgreen.svg)](http://jooby.org/doc/assets-svg-sprites) # svg-sprites @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-svg-sprites - 1.6.1 + 1.6.2 provided ``` diff --git a/modules/jooby-assets-svg-sprites/pom.xml b/modules/jooby-assets-svg-sprites/pom.xml index 331576d872..e9113f3995 100644 --- a/modules/jooby-assets-svg-sprites/pom.xml +++ b/modules/jooby-assets-svg-sprites/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-assets-svg-symbol/README.md b/modules/jooby-assets-svg-symbol/README.md index 71d65ef755..aac4f6f16c 100644 --- a/modules/jooby-assets-svg-symbol/README.md +++ b/modules/jooby-assets-svg-symbol/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-svg-symbol/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-svg-symbol/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-svg-symbol.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-svg-symbol/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-svg-symbol/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-svg-symbol/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-svg-symbol.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-svg-symbol/1.6.2) [![jooby-assets-svg-symbol website](https://img.shields.io/badge/jooby-assets-svg-symbol-brightgreen.svg)](http://jooby.org/doc/assets-svg-symbol) # svg-symbol @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-svg-symbol - 1.6.1 + 1.6.2 provided ``` diff --git a/modules/jooby-assets-svg-symbol/pom.xml b/modules/jooby-assets-svg-symbol/pom.xml index 734cb32ce9..e65009977d 100644 --- a/modules/jooby-assets-svg-symbol/pom.xml +++ b/modules/jooby-assets-svg-symbol/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-assets-uglify/README.md b/modules/jooby-assets-uglify/README.md index 1934513332..23b9fcd90b 100644 --- a/modules/jooby-assets-uglify/README.md +++ b/modules/jooby-assets-uglify/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-uglify/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-uglify/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-uglify.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-uglify/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-uglify/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-uglify/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-uglify.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-uglify/1.6.2) [![jooby-assets-uglify website](https://img.shields.io/badge/jooby-assets-uglify-brightgreen.svg)](http://jooby.org/doc/assets-uglify) # uglify @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-uglify - 1.6.1 + 1.6.2 provided ``` diff --git a/modules/jooby-assets-uglify/pom.xml b/modules/jooby-assets-uglify/pom.xml index 37aba44b26..a2d630803e 100644 --- a/modules/jooby-assets-uglify/pom.xml +++ b/modules/jooby-assets-uglify/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-assets-yui-compressor/README.md b/modules/jooby-assets-yui-compressor/README.md index c5fd172c61..5a44fd09f0 100644 --- a/modules/jooby-assets-yui-compressor/README.md +++ b/modules/jooby-assets-yui-compressor/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-yui-compressor/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-yui-compressor/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-yui-compressor.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-yui-compressor/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-yui-compressor/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-yui-compressor/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-yui-compressor.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-yui-compressor/1.6.2) [![jooby-assets-yui-compressor website](https://img.shields.io/badge/jooby-assets-yui-compressor-brightgreen.svg)](http://jooby.org/doc/assets-yui-compressor) # yui-css @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-yui-compressor - 1.6.1 + 1.6.2 provided ``` diff --git a/modules/jooby-assets-yui-compressor/pom.xml b/modules/jooby-assets-yui-compressor/pom.xml index 6772caecfa..ed4b7802b2 100644 --- a/modules/jooby-assets-yui-compressor/pom.xml +++ b/modules/jooby-assets-yui-compressor/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-assets/README.md b/modules/jooby-assets/README.md index 491353a61d..eee5a69653 100644 --- a/modules/jooby-assets/README.md +++ b/modules/jooby-assets/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets.svg)](https://javadoc.io/doc/org.jooby/jooby-assets/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets.svg)](https://javadoc.io/doc/org.jooby/jooby-assets/1.6.2) [![jooby-assets website](https://img.shields.io/badge/jooby-assets-brightgreen.svg)](http://jooby.org/doc/assets) # assets @@ -13,7 +13,7 @@ A variety of processors are available: ([jshint](https://github.com/jooby-projec org.jooby jooby-assets - 1.6.1 + 1.6.2 ``` diff --git a/modules/jooby-assets/pom.xml b/modules/jooby-assets/pom.xml index 3d91bb1714..99863932ae 100644 --- a/modules/jooby-assets/pom.xml +++ b/modules/jooby-assets/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-aws/README.md b/modules/jooby-aws/README.md index 1db2a3c4fe..05349c78e1 100644 --- a/modules/jooby-aws/README.md +++ b/modules/jooby-aws/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-aws/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-aws/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-aws.svg)](https://javadoc.io/doc/org.jooby/jooby-aws/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-aws/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-aws/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-aws.svg)](https://javadoc.io/doc/org.jooby/jooby-aws/1.6.2) [![jooby-aws website](https://img.shields.io/badge/jooby-aws-brightgreen.svg)](http://jooby.org/doc/aws) # aws @@ -15,7 +15,7 @@ Small utility module that exports ```AmazonWebServiceClient``` services. org.jooby jooby-aws - 1.6.1 + 1.6.2 ``` diff --git a/modules/jooby-aws/pom.xml b/modules/jooby-aws/pom.xml index 8752458a03..f54454733d 100644 --- a/modules/jooby-aws/pom.xml +++ b/modules/jooby-aws/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-banner/README.md b/modules/jooby-banner/README.md index 5b6d1ea016..f5f8e96216 100644 --- a/modules/jooby-banner/README.md +++ b/modules/jooby-banner/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-banner/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-banner/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-banner.svg)](https://javadoc.io/doc/org.jooby/jooby-banner/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-banner/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-banner/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-banner.svg)](https://javadoc.io/doc/org.jooby/jooby-banner/1.6.2) [![jooby-banner website](https://img.shields.io/badge/jooby-banner-brightgreen.svg)](http://jooby.org/doc/banner) # banner @@ -11,7 +11,7 @@ Prints out an ASCII art banner on startup using org.jooby jooby-caffeine - 1.6.1 + 1.6.2 ``` diff --git a/modules/jooby-caffeine/pom.xml b/modules/jooby-caffeine/pom.xml index 8a39080df1..888b3adce8 100644 --- a/modules/jooby-caffeine/pom.xml +++ b/modules/jooby-caffeine/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-camel/README.md b/modules/jooby-camel/README.md index 8c1d9bdad8..7e2ab12cba 100644 --- a/modules/jooby-camel/README.md +++ b/modules/jooby-camel/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-camel/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-camel/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-camel.svg)](https://javadoc.io/doc/org.jooby/jooby-camel/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-camel/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-camel/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-camel.svg)](https://javadoc.io/doc/org.jooby/jooby-camel/1.6.2) [![jooby-camel website](https://img.shields.io/badge/jooby-camel-brightgreen.svg)](http://jooby.org/doc/camel) # camel @@ -26,7 +26,7 @@ depend on [camel-guice](http://camel.apache.org/guice.html), but it provides sim org.jooby jooby-camel - 1.6.1 + 1.6.2 ``` diff --git a/modules/jooby-camel/pom.xml b/modules/jooby-camel/pom.xml index 9456c80770..b46033ae7c 100644 --- a/modules/jooby-camel/pom.xml +++ b/modules/jooby-camel/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-cassandra/README.md b/modules/jooby-cassandra/README.md index d32365d01d..9d72443bd1 100644 --- a/modules/jooby-cassandra/README.md +++ b/modules/jooby-cassandra/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-cassandra/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-cassandra/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-cassandra.svg)](https://javadoc.io/doc/org.jooby/jooby-cassandra/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-cassandra/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-cassandra/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-cassandra.svg)](https://javadoc.io/doc/org.jooby/jooby-cassandra/1.6.2) [![jooby-cassandra website](https://img.shields.io/badge/jooby-cassandra-brightgreen.svg)](http://jooby.org/doc/cassandra) # cassandra @@ -13,7 +13,7 @@ This module offers cassandra database org.jooby jooby-cassandra - 1.6.1 + 1.6.2 ``` @@ -211,7 +211,7 @@ A [Session.Store](/apidocs/org/jooby/cassandra/CassandraSessionStore.html) power org.jooby jooby-cassandra - 1.6.1 + 1.6.2 ``` diff --git a/modules/jooby-cassandra/pom.xml b/modules/jooby-cassandra/pom.xml index 702ce90bb7..81b6fad516 100644 --- a/modules/jooby-cassandra/pom.xml +++ b/modules/jooby-cassandra/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-commons-email/README.md b/modules/jooby-commons-email/README.md index 97a5e291c1..8b2ef71a40 100644 --- a/modules/jooby-commons-email/README.md +++ b/modules/jooby-commons-email/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-commons-email/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-commons-email/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-commons-email.svg)](https://javadoc.io/doc/org.jooby/jooby-commons-email/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-commons-email/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-commons-email/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-commons-email.svg)](https://javadoc.io/doc/org.jooby/jooby-commons-email/1.6.2) [![jooby-commons-email website](https://img.shields.io/badge/jooby-commons-email-brightgreen.svg)](http://jooby.org/doc/commons-email) # commons-email @@ -19,7 +19,7 @@ Small but helpful module that provides access to ```Email``` instances. org.jooby jooby-commons-email - 1.6.1 + 1.6.2 ``` diff --git a/modules/jooby-commons-email/pom.xml b/modules/jooby-commons-email/pom.xml index 9fb1f7371c..be71a3a404 100644 --- a/modules/jooby-commons-email/pom.xml +++ b/modules/jooby-commons-email/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-consul/README.md b/modules/jooby-consul/README.md index 05cd53e22d..a42fcafb89 100644 --- a/modules/jooby-consul/README.md +++ b/modules/jooby-consul/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-consul/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-consul/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-consul.svg)](https://javadoc.io/doc/org.jooby/jooby-consul/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-consul/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-consul/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-consul.svg)](https://javadoc.io/doc/org.jooby/jooby-consul/1.6.2) [![jooby-consul website](https://img.shields.io/badge/jooby-consul-brightgreen.svg)](http://jooby.org/doc/consul) # consul @@ -15,7 +15,7 @@ Also register the application as a service and setup a health check. org.jooby jooby-consul - 1.6.1 + 1.6.2 ``` diff --git a/modules/jooby-consul/pom.xml b/modules/jooby-consul/pom.xml index 8fcda66ef5..f530bab5b9 100644 --- a/modules/jooby-consul/pom.xml +++ b/modules/jooby-consul/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-couchbase/README.md b/modules/jooby-couchbase/README.md index ee3e671aec..2579e52ab0 100644 --- a/modules/jooby-couchbase/README.md +++ b/modules/jooby-couchbase/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-couchbase/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-couchbase/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-couchbase.svg)](https://javadoc.io/doc/org.jooby/jooby-couchbase/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-couchbase/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-couchbase/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-couchbase.svg)](https://javadoc.io/doc/org.jooby/jooby-couchbase/1.6.2) [![jooby-couchbase website](https://img.shields.io/badge/jooby-couchbase-brightgreen.svg)](http://jooby.org/doc/couchbase) # couchbase @@ -13,7 +13,7 @@ This module provides couchbase access via org.jooby jooby-couchbase - 1.6.1 + 1.6.2 ``` @@ -307,7 +307,7 @@ A [Session.Store](/apidocs/org/jooby/couchbase/CouchbaseSessionStore) powered by org.jooby jooby-couchbase - 1.6.1 + 1.6.2 ``` diff --git a/modules/jooby-couchbase/pom.xml b/modules/jooby-couchbase/pom.xml index 33ad861f64..458f8bd2f5 100644 --- a/modules/jooby-couchbase/pom.xml +++ b/modules/jooby-couchbase/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-crash/README.md b/modules/jooby-crash/README.md index 1081d6970c..2364a8f4e8 100644 --- a/modules/jooby-crash/README.md +++ b/modules/jooby-crash/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-crash/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-crash/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-crash.svg)](https://javadoc.io/doc/org.jooby/jooby-crash/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-crash/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-crash/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-crash.svg)](https://javadoc.io/doc/org.jooby/jooby-crash/1.6.2) [![jooby-crash website](https://img.shields.io/badge/jooby-crash-brightgreen.svg)](http://jooby.org/doc/crash) # crash @@ -11,7 +11,7 @@ org.jooby jooby-crash - 1.6.1 + 1.6.2 ``` diff --git a/modules/jooby-crash/pom.xml b/modules/jooby-crash/pom.xml index b88781acda..176db0ec01 100644 --- a/modules/jooby-crash/pom.xml +++ b/modules/jooby-crash/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-csl/README.md b/modules/jooby-csl/README.md index 48ebe830ef..f308b5553d 100644 --- a/modules/jooby-csl/README.md +++ b/modules/jooby-csl/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-csl/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-csl/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-csl.svg)](https://javadoc.io/doc/org.jooby/jooby-csl/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-csl/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-csl/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-csl.svg)](https://javadoc.io/doc/org.jooby/jooby-csl/1.6.2) [![jooby-csl website](https://img.shields.io/badge/jooby-csl-brightgreen.svg)](http://jooby.org/doc/csl) # csl @@ -11,7 +11,7 @@ org.jooby jooby-csl - 1.6.1 + 1.6.2 ``` diff --git a/modules/jooby-csl/pom.xml b/modules/jooby-csl/pom.xml index 7f255320ce..7ec7beeef1 100644 --- a/modules/jooby-csl/pom.xml +++ b/modules/jooby-csl/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-dist/pom.xml b/modules/jooby-dist/pom.xml index f56be7de29..a5f7c46a2f 100644 --- a/modules/jooby-dist/pom.xml +++ b/modules/jooby-dist/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-ebean/README.md b/modules/jooby-ebean/README.md index 15dadb5805..fe4d24f2dc 100644 --- a/modules/jooby-ebean/README.md +++ b/modules/jooby-ebean/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-ebean/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-ebean/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-ebean.svg)](https://javadoc.io/doc/org.jooby/jooby-ebean/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-ebean/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-ebean/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-ebean.svg)](https://javadoc.io/doc/org.jooby/jooby-ebean/1.6.2) [![jooby-ebean website](https://img.shields.io/badge/jooby-ebean-brightgreen.svg)](http://jooby.org/doc/ebean) # ebean @@ -17,7 +17,7 @@ Object-Relational-Mapping via [Ebean ORM](http://ebean-orm.github.io). It config org.jooby jooby-ebean - 1.6.1 + 1.6.2 ``` diff --git a/modules/jooby-ebean/pom.xml b/modules/jooby-ebean/pom.xml index cc09b83913..2ba0729351 100644 --- a/modules/jooby-ebean/pom.xml +++ b/modules/jooby-ebean/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-ehcache/README.md b/modules/jooby-ehcache/README.md index e424ba0781..08875bb632 100644 --- a/modules/jooby-ehcache/README.md +++ b/modules/jooby-ehcache/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-ehcache/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-ehcache/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-ehcache.svg)](https://javadoc.io/doc/org.jooby/jooby-ehcache/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-ehcache/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-ehcache/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-ehcache.svg)](https://javadoc.io/doc/org.jooby/jooby-ehcache/1.6.2) [![jooby-ehcache website](https://img.shields.io/badge/jooby-ehcache-brightgreen.svg)](http://jooby.org/doc/ehcache) # ehcache @@ -16,7 +16,7 @@ Provides advanced cache features via [Ehcache](http://ehcache.org) org.jooby jooby-ehcache - 1.6.1 + 1.6.2 ``` @@ -120,7 +120,7 @@ Please note the ```default``` cache works as a template and isn't a real/usable org.jooby jooby-ehcache - 1.6.1 + 1.6.2 ``` diff --git a/modules/jooby-ehcache/pom.xml b/modules/jooby-ehcache/pom.xml index eec38e8394..50ad2d62f0 100644 --- a/modules/jooby-ehcache/pom.xml +++ b/modules/jooby-ehcache/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-elasticsearch/README.md b/modules/jooby-elasticsearch/README.md index f1be78ba2d..4cd9276dc1 100644 --- a/modules/jooby-elasticsearch/README.md +++ b/modules/jooby-elasticsearch/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-elasticsearch/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-elasticsearch/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-elasticsearch.svg)](https://javadoc.io/doc/org.jooby/jooby-elasticsearch/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-elasticsearch/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-elasticsearch/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-elasticsearch.svg)](https://javadoc.io/doc/org.jooby/jooby-elasticsearch/1.6.2) [![jooby-elasticsearch website](https://img.shields.io/badge/jooby-elasticsearch-brightgreen.svg)](http://jooby.org/doc/elasticsearch) # elasticsearch @@ -15,7 +15,7 @@ Open Source, Distributed, RESTful Search Engine via [Elastic Search](https://git org.jooby jooby-elasticsearch - 1.6.1 + 1.6.2 ``` diff --git a/modules/jooby-elasticsearch/pom.xml b/modules/jooby-elasticsearch/pom.xml index 3144853fdd..7f5ed5ca8f 100644 --- a/modules/jooby-elasticsearch/pom.xml +++ b/modules/jooby-elasticsearch/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-eventbus/README.md b/modules/jooby-eventbus/README.md index e7cc0a6815..807447b119 100644 --- a/modules/jooby-eventbus/README.md +++ b/modules/jooby-eventbus/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-eventbus/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-eventbus/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-eventbus.svg)](https://javadoc.io/doc/org.jooby/jooby-eventbus/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-eventbus/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-eventbus/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-eventbus.svg)](https://javadoc.io/doc/org.jooby/jooby-eventbus/1.6.2) [![jooby-eventbus website](https://img.shields.io/badge/jooby-eventbus-brightgreen.svg)](http://jooby.org/doc/eventbus) # EventBus @@ -15,7 +15,7 @@ org.jooby jooby-eventbus - 1.6.1 + 1.6.2 ``` diff --git a/modules/jooby-eventbus/pom.xml b/modules/jooby-eventbus/pom.xml index 2eb1319b38..58768842db 100644 --- a/modules/jooby-eventbus/pom.xml +++ b/modules/jooby-eventbus/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-executor/README.md b/modules/jooby-executor/README.md index 481e7c38bd..aa69f07e69 100644 --- a/modules/jooby-executor/README.md +++ b/modules/jooby-executor/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-executor/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-executor/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-executor.svg)](https://javadoc.io/doc/org.jooby/jooby-executor/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-executor/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-executor/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-executor.svg)](https://javadoc.io/doc/org.jooby/jooby-executor/1.6.2) [![jooby-executor website](https://img.shields.io/badge/jooby-executor-brightgreen.svg)](http://jooby.org/doc/executor) # executor @@ -15,7 +15,7 @@ Manage the life cycle of {@link ExecutorService} and build async apps, schedule org.jooby jooby-executor - 1.6.1 + 1.6.2 ``` diff --git a/modules/jooby-executor/pom.xml b/modules/jooby-executor/pom.xml index 1202a350d8..9dcb34f1ac 100644 --- a/modules/jooby-executor/pom.xml +++ b/modules/jooby-executor/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-exposed/README.md b/modules/jooby-exposed/README.md index 5061a0536b..6e07046cbb 100644 --- a/modules/jooby-exposed/README.md +++ b/modules/jooby-exposed/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-exposed/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-exposed/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-exposed.svg)](https://javadoc.io/doc/org.jooby/jooby-exposed/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-exposed/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-exposed/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-exposed.svg)](https://javadoc.io/doc/org.jooby/jooby-exposed/1.6.2) [![jooby-exposed website](https://img.shields.io/badge/jooby-exposed-brightgreen.svg)](http://jooby.org/doc/exposed) # exposed diff --git a/modules/jooby-exposed/pom.xml b/modules/jooby-exposed/pom.xml index 540c6929d7..1e760ca56f 100644 --- a/modules/jooby-exposed/pom.xml +++ b/modules/jooby-exposed/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-filewatcher/README.md b/modules/jooby-filewatcher/README.md index 93031d57f0..05c410b781 100644 --- a/modules/jooby-filewatcher/README.md +++ b/modules/jooby-filewatcher/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-filewatcher/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-filewatcher/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-filewatcher.svg)](https://javadoc.io/doc/org.jooby/jooby-filewatcher/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-filewatcher/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-filewatcher/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-filewatcher.svg)](https://javadoc.io/doc/org.jooby/jooby-filewatcher/1.6.2) [![jooby-filewatcher website](https://img.shields.io/badge/jooby-filewatcher-brightgreen.svg)](http://jooby.org/doc/filewatcher) # file watcher @@ -11,7 +11,7 @@ Watches for file system changes or event. It uses a watch service to monitor a d org.jooby jooby-file watcher - 1.6.1 + 1.6.2 ``` diff --git a/modules/jooby-filewatcher/pom.xml b/modules/jooby-filewatcher/pom.xml index 0223ffae5a..d483fb212d 100644 --- a/modules/jooby-filewatcher/pom.xml +++ b/modules/jooby-filewatcher/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-flyway/README.md b/modules/jooby-flyway/README.md index 2a3cc0bcd8..fc7acadb04 100644 --- a/modules/jooby-flyway/README.md +++ b/modules/jooby-flyway/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-flyway/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-flyway/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-flyway.svg)](https://javadoc.io/doc/org.jooby/jooby-flyway/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-flyway/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-flyway/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-flyway.svg)](https://javadoc.io/doc/org.jooby/jooby-flyway/1.6.2) [![jooby-flyway website](https://img.shields.io/badge/jooby-flyway-brightgreen.svg)](http://jooby.org/doc/flyway) # flyway @@ -15,7 +15,7 @@ This module run [Flyway](http://flywaydb.org) on startup and apply database migr org.jooby jooby-flyway - 1.6.1 + 1.6.2 ``` diff --git a/modules/jooby-flyway/pom.xml b/modules/jooby-flyway/pom.xml index 96d97b1660..d13a84d667 100644 --- a/modules/jooby-flyway/pom.xml +++ b/modules/jooby-flyway/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-frontend/README.md b/modules/jooby-frontend/README.md index 810f518119..c38c564a7e 100644 --- a/modules/jooby-frontend/README.md +++ b/modules/jooby-frontend/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-frontend/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-frontend/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-frontend.svg)](https://javadoc.io/doc/org.jooby/jooby-frontend/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-frontend/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-frontend/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-frontend.svg)](https://javadoc.io/doc/org.jooby/jooby-frontend/1.6.2) [![jooby-frontend website](https://img.shields.io/badge/jooby-frontend-brightgreen.svg)](http://jooby.org/doc/frontend) # frontend @@ -12,7 +12,7 @@ runs npm, w org.jooby jooby-frontend - 1.6.1 + 1.6.2 ``` diff --git a/modules/jooby-frontend/pom.xml b/modules/jooby-frontend/pom.xml index 5947fa15bc..3509bc0bb4 100644 --- a/modules/jooby-frontend/pom.xml +++ b/modules/jooby-frontend/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-ftl/README.md b/modules/jooby-ftl/README.md index c335d8d434..441296bb90 100644 --- a/modules/jooby-ftl/README.md +++ b/modules/jooby-ftl/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-ftl/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-ftl/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-ftl.svg)](https://javadoc.io/doc/org.jooby/jooby-ftl/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-ftl/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-ftl/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-ftl.svg)](https://javadoc.io/doc/org.jooby/jooby-ftl/1.6.2) [![jooby-ftl website](https://img.shields.io/badge/jooby-ftl-brightgreen.svg)](http://jooby.org/doc/ftl) # freemarker @@ -16,7 +16,7 @@ org.jooby jooby-ftl - 1.6.1 + 1.6.2 ``` diff --git a/modules/jooby-ftl/pom.xml b/modules/jooby-ftl/pom.xml index 00feeeeac1..7f19781633 100644 --- a/modules/jooby-ftl/pom.xml +++ b/modules/jooby-ftl/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-gradle-plugin/README.md b/modules/jooby-gradle-plugin/README.md index dd2f3baecf..47ab36ae7c 100644 --- a/modules/jooby-gradle-plugin/README.md +++ b/modules/jooby-gradle-plugin/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-gradle-plugin/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-gradle-plugin/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-gradle-plugin.svg)](https://javadoc.io/doc/org.jooby/jooby-gradle-plugin/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-gradle-plugin/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-gradle-plugin/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-gradle-plugin.svg)](https://javadoc.io/doc/org.jooby/jooby-gradle-plugin/1.6.2) [![jooby-gradle-plugin website](https://img.shields.io/badge/jooby-gradle-plugin-brightgreen.svg)](http://jooby.org/doc/gradle-plugin) # gradle plugin @@ -21,7 +21,7 @@ buildscript { dependencies { /** joobyRun */ - classpath group: 'org.jooby', name: 'jooby-gradle-plugin', version: '1.6.1' + classpath group: 'org.jooby', name: 'jooby-gradle-plugin', version: '1.6.2' } } diff --git a/modules/jooby-gradle-plugin/pom.xml b/modules/jooby-gradle-plugin/pom.xml index b4449137fd..fd284c4f33 100644 --- a/modules/jooby-gradle-plugin/pom.xml +++ b/modules/jooby-gradle-plugin/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-gson/README.md b/modules/jooby-gson/README.md index d950bdea2f..1391d37fb2 100644 --- a/modules/jooby-gson/README.md +++ b/modules/jooby-gson/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-gson/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-gson/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-gson.svg)](https://javadoc.io/doc/org.jooby/jooby-gson/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-gson/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-gson/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-gson.svg)](https://javadoc.io/doc/org.jooby/jooby-gson/1.6.2) [![jooby-gson website](https://img.shields.io/badge/jooby-gson-brightgreen.svg)](http://jooby.org/doc/gson) # gson @@ -17,7 +17,7 @@ JSON support via [Gson](https://github.com/google/gson) library. org.jooby jooby-gson - 1.6.1 + 1.6.2 ``` diff --git a/modules/jooby-gson/pom.xml b/modules/jooby-gson/pom.xml index c86ee56454..daada58a3d 100644 --- a/modules/jooby-gson/pom.xml +++ b/modules/jooby-gson/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-guava-cache/README.md b/modules/jooby-guava-cache/README.md index fa91715d00..ebf1cff68b 100644 --- a/modules/jooby-guava-cache/README.md +++ b/modules/jooby-guava-cache/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-guava-cache/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-guava-cache/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-guava-cache.svg)](https://javadoc.io/doc/org.jooby/jooby-guava-cache/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-guava-cache/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-guava-cache/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-guava-cache.svg)](https://javadoc.io/doc/org.jooby/jooby-guava-cache/1.6.2) [![jooby-guava-cache website](https://img.shields.io/badge/jooby-guava-cache-brightgreen.svg)](http://jooby.org/doc/guava-cache) # guava-cache @@ -15,7 +15,7 @@ Provides cache solution and session storage via: Hibernate ORM org.jooby jooby-hbm - 1.6.1 + 1.6.2 ``` diff --git a/modules/jooby-hbm/pom.xml b/modules/jooby-hbm/pom.xml index 6abfbcf801..ce3c2f669f 100644 --- a/modules/jooby-hbm/pom.xml +++ b/modules/jooby-hbm/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-hbs/README.md b/modules/jooby-hbs/README.md index fabb00bcd2..5eeb58628d 100644 --- a/modules/jooby-hbs/README.md +++ b/modules/jooby-hbs/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-hbs/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-hbs/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-hbs.svg)](https://javadoc.io/doc/org.jooby/jooby-hbs/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-hbs/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-hbs/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-hbs.svg)](https://javadoc.io/doc/org.jooby/jooby-hbs/1.6.2) [![jooby-hbs website](https://img.shields.io/badge/jooby-hbs-brightgreen.svg)](http://jooby.org/doc/hbs) # handlebars @@ -16,7 +16,7 @@ Logic-less and semantic templates via [Handlebars.java](https://github.com/jknac org.jooby jooby-hbs - 1.6.1 + 1.6.2 ``` diff --git a/modules/jooby-hbs/pom.xml b/modules/jooby-hbs/pom.xml index f02dd0f65f..5fd4b68d3e 100644 --- a/modules/jooby-hbs/pom.xml +++ b/modules/jooby-hbs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-hbv/README.md b/modules/jooby-hbv/README.md index 6c8cb009f3..61b8edb16b 100644 --- a/modules/jooby-hbv/README.md +++ b/modules/jooby-hbv/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-hbv/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-hbv/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-hbv.svg)](https://javadoc.io/doc/org.jooby/jooby-hbv/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-hbv/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-hbv/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-hbv.svg)](https://javadoc.io/doc/org.jooby/jooby-hbv/1.6.2) [![jooby-hbv website](https://img.shields.io/badge/jooby-hbv-brightgreen.svg)](http://jooby.org/doc/hbv) # hibernate validator @@ -17,7 +17,7 @@ Bean validation via [Hibernate Validator](hibernate.org/validator). org.jooby jooby-hbv - 1.6.1 + 1.6.2 ``` @@ -38,6 +38,19 @@ Bean validation via [Hibernate Validator](hibernate.org/validator). }); } ``` +### in combination with JSON parser +Jooby does not have a validation API or a validation API for HTTP bodies. Instead, this validator _wraps_ existing body parsers as they simply return the first deserialized object. Consequently, this module must be imported _before_ you import any parser! +If you were to use the [Jackson JSON parser module](../jackson/jackson.md) it would look like this: + +```java +{ + // must be imported before any body parser + use(new Hbv()); + use(new Jackson()); + + // routes go here +} +``` ## automatic validations of HTTP params and body diff --git a/modules/jooby-hbv/pom.xml b/modules/jooby-hbv/pom.xml index f6e661c397..d1ea6d53cf 100644 --- a/modules/jooby-hbv/pom.xml +++ b/modules/jooby-hbv/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-jackson/README.md b/modules/jooby-jackson/README.md index a7e80a8a47..06613ec760 100644 --- a/modules/jooby-jackson/README.md +++ b/modules/jooby-jackson/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jackson/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jackson/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jackson.svg)](https://javadoc.io/doc/org.jooby/jooby-jackson/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jackson/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jackson/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jackson.svg)](https://javadoc.io/doc/org.jooby/jooby-jackson/1.6.2) [![jooby-jackson website](https://img.shields.io/badge/jooby-jackson-brightgreen.svg)](http://jooby.org/doc/jackson) # jackson @@ -17,7 +17,7 @@ JSON support from the excellent [Jackson](https://github.com/FasterXML/jackson) org.jooby jooby-jackson - 1.6.1 + 1.6.2 ``` diff --git a/modules/jooby-jackson/pom.xml b/modules/jooby-jackson/pom.xml index f0efc72769..09cd7f34bc 100644 --- a/modules/jooby-jackson/pom.xml +++ b/modules/jooby-jackson/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-jade/README.md b/modules/jooby-jade/README.md index 034d2755ff..bf9fc04cca 100644 --- a/modules/jooby-jade/README.md +++ b/modules/jooby-jade/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jade/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jade/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jade.svg)](https://javadoc.io/doc/org.jooby/jooby-jade/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jade/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jade/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jade.svg)](https://javadoc.io/doc/org.jooby/jooby-jade/1.6.2) [![jooby-jade website](https://img.shields.io/badge/jooby-jade-brightgreen.svg)](http://jooby.org/doc/jade) # jade @@ -16,7 +16,7 @@ org.jooby jooby-jade - 1.6.1 + 1.6.2 ``` diff --git a/modules/jooby-jade/pom.xml b/modules/jooby-jade/pom.xml index fc674280a4..60b5940883 100644 --- a/modules/jooby-jade/pom.xml +++ b/modules/jooby-jade/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-jdbc/README.md b/modules/jooby-jdbc/README.md index 99887f9eff..c51d33c7ad 100644 --- a/modules/jooby-jdbc/README.md +++ b/modules/jooby-jdbc/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jdbc/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jdbc/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jdbc.svg)](https://javadoc.io/doc/org.jooby/jooby-jdbc/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jdbc/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jdbc/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jdbc.svg)](https://javadoc.io/doc/org.jooby/jooby-jdbc/1.6.2) [![jooby-jdbc website](https://img.shields.io/badge/jooby-jdbc-brightgreen.svg)](http://jooby.org/doc/jdbc) # jdbc @@ -15,7 +15,7 @@ Production-ready jdbc data source, powered by the [HikariCP](https://github.com/ org.jooby jooby-jdbc - 1.6.1 + 1.6.2 ``` diff --git a/modules/jooby-jdbc/pom.xml b/modules/jooby-jdbc/pom.xml index f24376632c..74b79c7324 100644 --- a/modules/jooby-jdbc/pom.xml +++ b/modules/jooby-jdbc/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-jdbi/README.md b/modules/jooby-jdbi/README.md index 963fe6fa13..b674706774 100644 --- a/modules/jooby-jdbi/README.md +++ b/modules/jooby-jdbi/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jdbi/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jdbi/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jdbi.svg)](https://javadoc.io/doc/org.jooby/jooby-jdbi/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jdbi/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jdbi/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jdbi.svg)](https://javadoc.io/doc/org.jooby/jooby-jdbi/1.6.2) [![jooby-jdbi website](https://img.shields.io/badge/jooby-jdbi-brightgreen.svg)](http://jooby.org/doc/jdbi) # jdbi @@ -21,7 +21,7 @@ org.jooby jooby-jdbi - 1.6.1 + 1.6.2 ``` diff --git a/modules/jooby-jdbi/pom.xml b/modules/jooby-jdbi/pom.xml index 87db4145c7..4304f3050d 100644 --- a/modules/jooby-jdbi/pom.xml +++ b/modules/jooby-jdbi/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-jdbi3/README.md b/modules/jooby-jdbi3/README.md index 84415c7c09..33799883cd 100644 --- a/modules/jooby-jdbi3/README.md +++ b/modules/jooby-jdbi3/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jdbi3/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jdbi3/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jdbi3.svg)](https://javadoc.io/doc/org.jooby/jooby-jdbi3/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jdbi3/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jdbi3/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jdbi3.svg)](https://javadoc.io/doc/org.jooby/jooby-jdbi3/1.6.2) [![jooby-jdbi3 website](https://img.shields.io/badge/jooby-jdbi3-brightgreen.svg)](http://jooby.org/doc/jdbi3) # jdbi @@ -17,7 +17,7 @@ org.jooby jooby-jdbi3 - 1.6.1 + 1.6.2 ``` diff --git a/modules/jooby-jdbi3/pom.xml b/modules/jooby-jdbi3/pom.xml index a9ffe34047..8b18d80514 100644 --- a/modules/jooby-jdbi3/pom.xml +++ b/modules/jooby-jdbi3/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-jedis/README.md b/modules/jooby-jedis/README.md index f72c10084c..ab1a360780 100644 --- a/modules/jooby-jedis/README.md +++ b/modules/jooby-jedis/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jedis/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jedis/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jedis.svg)](https://javadoc.io/doc/org.jooby/jooby-jedis/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jedis/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jedis/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jedis.svg)](https://javadoc.io/doc/org.jooby/jooby-jedis/1.6.2) [![jooby-jedis website](https://img.shields.io/badge/jooby-jedis-brightgreen.svg)](http://jooby.org/doc/jedis) # jedis @@ -11,7 +11,7 @@ org.jooby jooby-jedis - 1.6.1 + 1.6.2 ``` @@ -99,7 +99,7 @@ For more information about [Jedis](https://github.com/xetorthio/jedis) checkout org.jooby jooby-jedis - 1.6.1 + 1.6.2 ``` diff --git a/modules/jooby-jedis/pom.xml b/modules/jooby-jedis/pom.xml index 14fa37ae73..a5449e296c 100644 --- a/modules/jooby-jedis/pom.xml +++ b/modules/jooby-jedis/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-jetty/README.md b/modules/jooby-jetty/README.md index 7aaab69306..eb087354b7 100644 --- a/modules/jooby-jetty/README.md +++ b/modules/jooby-jetty/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jetty/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jetty/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jetty.svg)](https://javadoc.io/doc/org.jooby/jooby-jetty/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jetty/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jetty/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jetty.svg)](https://javadoc.io/doc/org.jooby/jooby-jetty/1.6.2) [![jooby-jetty website](https://img.shields.io/badge/jooby-jetty-brightgreen.svg)](http://jooby.org/doc/jetty) # jetty @@ -15,7 +15,7 @@ org.jooby jooby-jetty - 1.6.1 + 1.6.2 ``` diff --git a/modules/jooby-jetty/pom.xml b/modules/jooby-jetty/pom.xml index 3dfa5e07cb..bb84bdd166 100644 --- a/modules/jooby-jetty/pom.xml +++ b/modules/jooby-jetty/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-jongo/README.md b/modules/jooby-jongo/README.md index 9cefe9c779..a258c4f285 100644 --- a/modules/jooby-jongo/README.md +++ b/modules/jooby-jongo/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jongo/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jongo/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jongo.svg)](https://javadoc.io/doc/org.jooby/jooby-jongo/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jongo/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jongo/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jongo.svg)](https://javadoc.io/doc/org.jooby/jooby-jongo/1.6.2) [![jooby-jongo website](https://img.shields.io/badge/jooby-jongo-brightgreen.svg)](http://jooby.org/doc/jongo) # jongo @@ -17,7 +17,7 @@ org.jooby jooby-jongo - 1.6.1 + 1.6.2 ``` diff --git a/modules/jooby-jongo/pom.xml b/modules/jooby-jongo/pom.xml index 6f60602f41..ba1de5e875 100644 --- a/modules/jooby-jongo/pom.xml +++ b/modules/jooby-jongo/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-jooq/README.md b/modules/jooby-jooq/README.md index 5064ddc59c..cbd85428e3 100644 --- a/modules/jooby-jooq/README.md +++ b/modules/jooby-jooq/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jooq/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jooq/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jooq.svg)](https://javadoc.io/doc/org.jooby/jooby-jooq/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jooq/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jooq/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jooq.svg)](https://javadoc.io/doc/org.jooby/jooby-jooq/1.6.2) [![jooby-jooq website](https://img.shields.io/badge/jooby-jooq-brightgreen.svg)](http://jooby.org/doc/jooq) # jOOQ @@ -17,7 +17,7 @@ org.jooby jooby-jooq - 1.6.1 + 1.6.2 ``` diff --git a/modules/jooby-jooq/pom.xml b/modules/jooby-jooq/pom.xml index 1cb8c29522..bbd9b27fe3 100644 --- a/modules/jooby-jooq/pom.xml +++ b/modules/jooby-jooq/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-lang-kotlin/README.md b/modules/jooby-lang-kotlin/README.md index a6208bb764..edda71fc19 100644 --- a/modules/jooby-lang-kotlin/README.md +++ b/modules/jooby-lang-kotlin/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-lang-kotlin/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-lang-kotlin/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-lang-kotlin.svg)](https://javadoc.io/doc/org.jooby/jooby-lang-kotlin/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-lang-kotlin/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-lang-kotlin/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-lang-kotlin.svg)](https://javadoc.io/doc/org.jooby/jooby-lang-kotlin/1.6.2) [![jooby-lang-kotlin website](https://img.shields.io/badge/jooby-lang-kotlin-brightgreen.svg)](http://jooby.org/doc/lang-kotlin) # kotlin @@ -11,7 +11,7 @@ A tiny module that makes a Jooby application more Kotlin idiomatic. org.jooby jooby-lang-kotlin - 1.6.1 + 1.6.2 ``` diff --git a/modules/jooby-lang-kotlin/pom.xml b/modules/jooby-lang-kotlin/pom.xml index cf57317012..af398231e5 100644 --- a/modules/jooby-lang-kotlin/pom.xml +++ b/modules/jooby-lang-kotlin/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-livereload/README.md b/modules/jooby-livereload/README.md index 8ffd2b397e..9d4dc20d1b 100644 --- a/modules/jooby-livereload/README.md +++ b/modules/jooby-livereload/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-livereload/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-livereload/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-livereload.svg)](https://javadoc.io/doc/org.jooby/jooby-livereload/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-livereload/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-livereload/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-livereload.svg)](https://javadoc.io/doc/org.jooby/jooby-livereload/1.6.2) [![jooby-livereload website](https://img.shields.io/badge/jooby-livereload-brightgreen.svg)](http://jooby.org/doc/livereload) # liveReload @@ -18,7 +18,7 @@ Even cooler, when you change a CSS file or an image, the browser is updated inst org.jooby jooby-livereload - 1.6.1 + 1.6.2 ``` diff --git a/modules/jooby-livereload/pom.xml b/modules/jooby-livereload/pom.xml index 12116d5a9b..30a4e88ff2 100644 --- a/modules/jooby-livereload/pom.xml +++ b/modules/jooby-livereload/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 jooby-livereload jooby-livereload diff --git a/modules/jooby-maven-plugin/README.md b/modules/jooby-maven-plugin/README.md index d5dfb75fe7..5a1e67909b 100644 --- a/modules/jooby-maven-plugin/README.md +++ b/modules/jooby-maven-plugin/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-maven-plugin/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-maven-plugin/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-maven-plugin.svg)](https://javadoc.io/doc/org.jooby/jooby-maven-plugin/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-maven-plugin/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-maven-plugin/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-maven-plugin.svg)](https://javadoc.io/doc/org.jooby/jooby-maven-plugin/1.6.2) [![jooby-maven-plugin website](https://img.shields.io/badge/jooby-maven-plugin-brightgreen.svg)](http://jooby.org/doc/maven-plugin) # maven @@ -43,7 +43,7 @@ It's worth to mention that dynamic reload of classes is done via [JBoss Modules] org.jooby jooby-maven-plugin - 1.6.1 + 1.6.2 ${application.class} @@ -117,7 +117,7 @@ List of commands to execute before starting the ```application```. Useful for [n org.jooby jooby-maven-plugin - 1.6.1 + 1.6.2 ${application.class} @@ -138,7 +138,7 @@ Set one or more ```JVM args```: org.jooby jooby-maven-plugin - 1.6.1 + 1.6.2 ${application.class} true diff --git a/modules/jooby-maven-plugin/pom.xml b/modules/jooby-maven-plugin/pom.xml index 561e759a72..0b834fc73f 100644 --- a/modules/jooby-maven-plugin/pom.xml +++ b/modules/jooby-maven-plugin/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-metrics/README.md b/modules/jooby-metrics/README.md index 0784778a74..33a55ad87c 100644 --- a/modules/jooby-metrics/README.md +++ b/modules/jooby-metrics/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-metrics/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-metrics/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-metrics.svg)](https://javadoc.io/doc/org.jooby/jooby-metrics/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-metrics/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-metrics/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-metrics.svg)](https://javadoc.io/doc/org.jooby/jooby-metrics/1.6.2) [![jooby-metrics website](https://img.shields.io/badge/jooby-metrics-brightgreen.svg)](http://jooby.org/doc/metrics) # metrics @@ -11,7 +11,7 @@ org.jooby jooby-metrics - 1.6.1 + 1.6.2 ``` diff --git a/modules/jooby-metrics/pom.xml b/modules/jooby-metrics/pom.xml index d2acaa867f..d6839e0908 100644 --- a/modules/jooby-metrics/pom.xml +++ b/modules/jooby-metrics/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-micrometer/README.md b/modules/jooby-micrometer/README.md index 559aa6aaba..af994397e6 100644 --- a/modules/jooby-micrometer/README.md +++ b/modules/jooby-micrometer/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-micrometer/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-micrometer/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-micrometer.svg)](https://javadoc.io/doc/org.jooby/jooby-micrometer/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-micrometer/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-micrometer/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-micrometer.svg)](https://javadoc.io/doc/org.jooby/jooby-micrometer/1.6.2) [![jooby-micrometer website](https://img.shields.io/badge/jooby-micrometer-brightgreen.svg)](http://jooby.org/doc/micrometer) # micrometer @@ -11,7 +11,7 @@ org.jooby jooby-micrometer - 1.6.1 + 1.6.2 ``` diff --git a/modules/jooby-micrometer/pom.xml b/modules/jooby-micrometer/pom.xml index 1e84f41dfc..242f270df2 100644 --- a/modules/jooby-micrometer/pom.xml +++ b/modules/jooby-micrometer/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-mongodb-rx/README.md b/modules/jooby-mongodb-rx/README.md index c103d4abed..c0777d73d5 100644 --- a/modules/jooby-mongodb-rx/README.md +++ b/modules/jooby-mongodb-rx/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-mongodb-rx/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-mongodb-rx/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-mongodb-rx.svg)](https://javadoc.io/doc/org.jooby/jooby-mongodb-rx/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-mongodb-rx/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-mongodb-rx/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-mongodb-rx.svg)](https://javadoc.io/doc/org.jooby/jooby-mongodb-rx/1.6.2) [![jooby-mongodb-rx website](https://img.shields.io/badge/jooby-mongodb-rx-brightgreen.svg)](http://jooby.org/doc/mongodb-rx) # mongodb-rx @@ -16,7 +16,7 @@ A MongoDB based driver providing support for React org.jooby jooby-mongodb-rx - 1.6.1 + 1.6.2 ``` diff --git a/modules/jooby-mongodb-rx/pom.xml b/modules/jooby-mongodb-rx/pom.xml index 97658473be..467749f6ee 100644 --- a/modules/jooby-mongodb-rx/pom.xml +++ b/modules/jooby-mongodb-rx/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-mongodb/README.md b/modules/jooby-mongodb/README.md index 2c2a71e149..c302be56b7 100644 --- a/modules/jooby-mongodb/README.md +++ b/modules/jooby-mongodb/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-mongodb/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-mongodb/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-mongodb.svg)](https://javadoc.io/doc/org.jooby/jooby-mongodb/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-mongodb/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-mongodb/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-mongodb.svg)](https://javadoc.io/doc/org.jooby/jooby-mongodb/1.6.2) [![jooby-mongodb website](https://img.shields.io/badge/jooby-mongodb-brightgreen.svg)](http://jooby.org/doc/mongodb) # mongodb driver @@ -17,7 +17,7 @@ org.jooby jooby-mongodb - 1.6.1 + 1.6.2 ``` @@ -117,7 +117,7 @@ Use [named](/apidocs/org/jooby/mongodb/Mongodb.html#-named) when you need two or org.jooby jooby-mongodb - 1.6.1 + 1.6.2 ``` diff --git a/modules/jooby-mongodb/pom.xml b/modules/jooby-mongodb/pom.xml index 438b8f9d67..3bc444e68b 100644 --- a/modules/jooby-mongodb/pom.xml +++ b/modules/jooby-mongodb/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-morphia/README.md b/modules/jooby-morphia/README.md index f3bc66c6be..54afacde11 100644 --- a/modules/jooby-morphia/README.md +++ b/modules/jooby-morphia/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-morphia/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-morphia/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-morphia.svg)](https://javadoc.io/doc/org.jooby/jooby-morphia/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-morphia/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-morphia/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-morphia.svg)](https://javadoc.io/doc/org.jooby/jooby-morphia/1.6.2) [![jooby-morphia website](https://img.shields.io/badge/jooby-morphia-brightgreen.svg)](http://jooby.org/doc/morphia) # morphia @@ -16,7 +16,7 @@ Extends the [mongodb](https://github.com/jooby-project/jooby/tree/master/jooby-m org.jooby jooby-morphia - 1.6.1 + 1.6.2 ``` diff --git a/modules/jooby-morphia/pom.xml b/modules/jooby-morphia/pom.xml index d774150818..683777ab71 100644 --- a/modules/jooby-morphia/pom.xml +++ b/modules/jooby-morphia/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-neo4j/README.md b/modules/jooby-neo4j/README.md index 744409308d..8ab39222b7 100644 --- a/modules/jooby-neo4j/README.md +++ b/modules/jooby-neo4j/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-neo4j/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-neo4j/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-neo4j.svg)](https://javadoc.io/doc/org.jooby/jooby-neo4j/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-neo4j/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-neo4j/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-neo4j.svg)](https://javadoc.io/doc/org.jooby/jooby-neo4j/1.6.2) [![jooby-neo4j website](https://img.shields.io/badge/jooby-neo4j-brightgreen.svg)](http://jooby.org/doc/neo4j) # neo4j @@ -13,7 +13,7 @@ This module give you access to neo4j and org.jooby jooby-neo4j - 1.6.1 + 1.6.2 ``` @@ -176,7 +176,7 @@ A [Session.Store](/apidocs/org/jooby/neo4j/Neo4jSessionStore) powered by org.jooby jooby-neo4j - 1.6.1 + 1.6.2 ``` diff --git a/modules/jooby-neo4j/pom.xml b/modules/jooby-neo4j/pom.xml index 19a6a9c136..29c9c8e04a 100644 --- a/modules/jooby-neo4j/pom.xml +++ b/modules/jooby-neo4j/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-netty/README.md b/modules/jooby-netty/README.md index 620960aa34..9dfdbf8214 100644 --- a/modules/jooby-netty/README.md +++ b/modules/jooby-netty/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-netty/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-netty/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-netty.svg)](https://javadoc.io/doc/org.jooby/jooby-netty/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-netty/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-netty/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-netty.svg)](https://javadoc.io/doc/org.jooby/jooby-netty/1.6.2) [![jooby-netty website](https://img.shields.io/badge/jooby-netty-brightgreen.svg)](http://jooby.org/doc/netty) # netty @@ -15,7 +15,7 @@ org.jooby jooby-netty - 1.6.1 + 1.6.2 ``` diff --git a/modules/jooby-netty/pom.xml b/modules/jooby-netty/pom.xml index 28c06aef1f..231f34aa01 100644 --- a/modules/jooby-netty/pom.xml +++ b/modules/jooby-netty/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-pac4j/README.md b/modules/jooby-pac4j/README.md index b94839c18a..2159a90c2e 100644 --- a/modules/jooby-pac4j/README.md +++ b/modules/jooby-pac4j/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-pac4j/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-pac4j/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-pac4j.svg)](https://javadoc.io/doc/org.jooby/jooby-pac4j/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-pac4j/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-pac4j/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-pac4j.svg)](https://javadoc.io/doc/org.jooby/jooby-pac4j/1.6.2) [![jooby-pac4j website](https://img.shields.io/badge/jooby-pac4j-brightgreen.svg)](http://jooby.org/doc/pac4j) # pac4j @@ -22,7 +22,7 @@ Authentication module via: [Pac4j 1.x](https://github.com/pac4j/pac4j). org.jooby jooby-pac4j - 1.6.1 + 1.6.2 ``` diff --git a/modules/jooby-pac4j/pom.xml b/modules/jooby-pac4j/pom.xml index 8f40ffab38..86c78d30f4 100644 --- a/modules/jooby-pac4j/pom.xml +++ b/modules/jooby-pac4j/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-pac4j2/README.md b/modules/jooby-pac4j2/README.md index d593818a61..de490a5be5 100644 --- a/modules/jooby-pac4j2/README.md +++ b/modules/jooby-pac4j2/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-pac4j2/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-pac4j2/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-pac4j2.svg)](https://javadoc.io/doc/org.jooby/jooby-pac4j2/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-pac4j2/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-pac4j2/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-pac4j2.svg)](https://javadoc.io/doc/org.jooby/jooby-pac4j2/1.6.2) [![jooby-pac4j2 website](https://img.shields.io/badge/jooby-pac4j2-brightgreen.svg)](http://jooby.org/doc/pac4j2) # pac4j module @@ -19,7 +19,7 @@ Authentication module via: Pac4j 2.x org.jooby jooby-pac4j2 - 1.6.1 + 1.6.2 ``` diff --git a/modules/jooby-pac4j2/pom.xml b/modules/jooby-pac4j2/pom.xml index 2620a8331a..27b39da130 100644 --- a/modules/jooby-pac4j2/pom.xml +++ b/modules/jooby-pac4j2/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-pebble/README.md b/modules/jooby-pebble/README.md index b0a54fef07..ee126f10d7 100644 --- a/modules/jooby-pebble/README.md +++ b/modules/jooby-pebble/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-pebble/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-pebble/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-pebble.svg)](https://javadoc.io/doc/org.jooby/jooby-pebble/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-pebble/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-pebble/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-pebble.svg)](https://javadoc.io/doc/org.jooby/jooby-pebble/1.6.2) [![jooby-pebble website](https://img.shields.io/badge/jooby-pebble-brightgreen.svg)](http://jooby.org/doc/pebble) # pebble @@ -16,7 +16,7 @@ org.jooby jooby-pebble - 1.6.1 + 1.6.2 ``` diff --git a/modules/jooby-pebble/pom.xml b/modules/jooby-pebble/pom.xml index 6fd1fef4a0..56a2b85399 100644 --- a/modules/jooby-pebble/pom.xml +++ b/modules/jooby-pebble/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-quartz/README.md b/modules/jooby-quartz/README.md index 826d98c57c..c905951540 100644 --- a/modules/jooby-quartz/README.md +++ b/modules/jooby-quartz/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-quartz/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-quartz/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-quartz.svg)](https://javadoc.io/doc/org.jooby/jooby-quartz/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-quartz/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-quartz/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-quartz.svg)](https://javadoc.io/doc/org.jooby/jooby-quartz/1.6.2) [![jooby-quartz website](https://img.shields.io/badge/jooby-quartz-brightgreen.svg)](http://jooby.org/doc/quartz) # quartz @@ -11,7 +11,7 @@ Cron triggers, job scheduling and async processing via [Quartz](http://quartz-sc org.jooby jooby-quartz - 1.6.1 + 1.6.2 ``` diff --git a/modules/jooby-quartz/pom.xml b/modules/jooby-quartz/pom.xml index 33b5e799ff..d63a24b85a 100644 --- a/modules/jooby-quartz/pom.xml +++ b/modules/jooby-quartz/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-querydsl/README.md b/modules/jooby-querydsl/README.md index f22439c0b2..98f7889b6d 100644 --- a/modules/jooby-querydsl/README.md +++ b/modules/jooby-querydsl/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-querydsl/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-querydsl/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-querydsl.svg)](https://javadoc.io/doc/org.jooby/jooby-querydsl/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-querydsl/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-querydsl/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-querydsl.svg)](https://javadoc.io/doc/org.jooby/jooby-querydsl/1.6.2) [![jooby-querydsl website](https://img.shields.io/badge/jooby-querydsl-brightgreen.svg)](http://jooby.org/doc/querydsl) # queryDSL @@ -17,7 +17,7 @@ SQL abstraction provided by QueryDSL using org.jooby jooby-querydsl - 1.6.1 + 1.6.2 ``` diff --git a/modules/jooby-querydsl/pom.xml b/modules/jooby-querydsl/pom.xml index 3db655ce46..9a0ca4252d 100644 --- a/modules/jooby-querydsl/pom.xml +++ b/modules/jooby-querydsl/pom.xml @@ -4,7 +4,7 @@ modules org.jooby - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-reactor/README.md b/modules/jooby-reactor/README.md index 1ae718ed83..4ee877a2f8 100644 --- a/modules/jooby-reactor/README.md +++ b/modules/jooby-reactor/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-reactor/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-reactor/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-reactor.svg)](https://javadoc.io/doc/org.jooby/jooby-reactor/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-reactor/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-reactor/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-reactor.svg)](https://javadoc.io/doc/org.jooby/jooby-reactor/1.6.2) [![jooby-reactor website](https://img.shields.io/badge/jooby-reactor-brightgreen.svg)](http://jooby.org/doc/reactor) # reactor @@ -11,7 +11,7 @@ org.jooby jooby-reactor - 1.6.1 + 1.6.2 ``` diff --git a/modules/jooby-reactor/pom.xml b/modules/jooby-reactor/pom.xml index 5a2aa617bb..b29ef9a02f 100644 --- a/modules/jooby-reactor/pom.xml +++ b/modules/jooby-reactor/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-requery/README.md b/modules/jooby-requery/README.md index 5e0c62ad68..b7e694905c 100644 --- a/modules/jooby-requery/README.md +++ b/modules/jooby-requery/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-requery/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-requery/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-requery.svg)](https://javadoc.io/doc/org.jooby/jooby-requery/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-requery/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-requery/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-requery.svg)](https://javadoc.io/doc/org.jooby/jooby-requery/1.6.2) [![jooby-requery website](https://img.shields.io/badge/jooby-requery-brightgreen.svg)](http://jooby.org/doc/requery) # requery @@ -15,7 +15,7 @@ Safe, clean and efficient database access via Reactive Ext org.jooby jooby-rxjava - 1.6.1 + 1.6.2 ``` diff --git a/modules/jooby-rxjava/pom.xml b/modules/jooby-rxjava/pom.xml index 4e0335aea8..0a325d9b07 100644 --- a/modules/jooby-rxjava/pom.xml +++ b/modules/jooby-rxjava/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-scanner/README.md b/modules/jooby-scanner/README.md index 91c7952458..185a73d941 100644 --- a/modules/jooby-scanner/README.md +++ b/modules/jooby-scanner/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-scanner/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-scanner/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-scanner.svg)](https://javadoc.io/doc/org.jooby/jooby-scanner/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-scanner/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-scanner/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-scanner.svg)](https://javadoc.io/doc/org.jooby/jooby-scanner/1.6.2) [![jooby-scanner website](https://img.shields.io/badge/jooby-scanner-brightgreen.svg)](http://jooby.org/doc/scanner) # scanner @@ -13,7 +13,7 @@ This module provides `class-path` scanning services for `MVC routes`, `services` org.jooby jooby-scanner - 1.6.1 + 1.6.2 ``` diff --git a/modules/jooby-scanner/pom.xml b/modules/jooby-scanner/pom.xml index a5c64fd286..d6ff3958d3 100644 --- a/modules/jooby-scanner/pom.xml +++ b/modules/jooby-scanner/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-servlet/README.md b/modules/jooby-servlet/README.md index 387ad62d6c..319b89fdaf 100644 --- a/modules/jooby-servlet/README.md +++ b/modules/jooby-servlet/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-servlet/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-servlet/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-servlet.svg)](https://javadoc.io/doc/org.jooby/jooby-servlet/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-servlet/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-servlet/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-servlet.svg)](https://javadoc.io/doc/org.jooby/jooby-servlet/1.6.2) [![jooby-servlet website](https://img.shields.io/badge/jooby-servlet-brightgreen.svg)](http://jooby.org/doc/servlet) # servlets diff --git a/modules/jooby-servlet/pom.xml b/modules/jooby-servlet/pom.xml index 757f54c205..4f1875cdf0 100644 --- a/modules/jooby-servlet/pom.xml +++ b/modules/jooby-servlet/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-sitemap/README.md b/modules/jooby-sitemap/README.md index 76b5339af2..6d091a3249 100644 --- a/modules/jooby-sitemap/README.md +++ b/modules/jooby-sitemap/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-sitemap/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-sitemap/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-sitemap.svg)](https://javadoc.io/doc/org.jooby/jooby-sitemap/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-sitemap/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-sitemap/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-sitemap.svg)](https://javadoc.io/doc/org.jooby/jooby-sitemap/1.6.2) [![jooby-sitemap website](https://img.shields.io/badge/jooby-sitemap-brightgreen.svg)](http://jooby.org/doc/sitemap) # sitemap @@ -15,7 +15,7 @@ Generate sitemap.xml files org.jooby jooby-sitemap - 1.6.1 + 1.6.2 ``` diff --git a/modules/jooby-sitemap/pom.xml b/modules/jooby-sitemap/pom.xml index d24b5531e3..fc39f6cf00 100644 --- a/modules/jooby-sitemap/pom.xml +++ b/modules/jooby-sitemap/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-spymemcached/README.md b/modules/jooby-spymemcached/README.md index b4c424d874..929a116cf4 100644 --- a/modules/jooby-spymemcached/README.md +++ b/modules/jooby-spymemcached/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-spymemcached/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-spymemcached/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-spymemcached.svg)](https://javadoc.io/doc/org.jooby/jooby-spymemcached/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-spymemcached/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-spymemcached/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-spymemcached.svg)](https://javadoc.io/doc/org.jooby/jooby-spymemcached/1.6.2) [![jooby-spymemcached website](https://img.shields.io/badge/jooby-spymemcached-brightgreen.svg)](http://jooby.org/doc/spymemcached) # spymemcached @@ -15,7 +15,7 @@ Provides memcached access via [SpyMemcached](https://github.com/dustin/java-memc org.jooby jooby-spymemcached - 1.6.1 + 1.6.2 ``` @@ -65,7 +65,7 @@ or programmatically: org.jooby jooby-spymemcached - 1.6.1 + 1.6.2 ``` diff --git a/modules/jooby-spymemcached/pom.xml b/modules/jooby-spymemcached/pom.xml index b89e66e36c..680ee0df74 100644 --- a/modules/jooby-spymemcached/pom.xml +++ b/modules/jooby-spymemcached/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-thymeleaf/README.md b/modules/jooby-thymeleaf/README.md index 2809226149..05987f56d1 100644 --- a/modules/jooby-thymeleaf/README.md +++ b/modules/jooby-thymeleaf/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-thymeleaf/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-thymeleaf/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-thymeleaf.svg)](https://javadoc.io/doc/org.jooby/jooby-thymeleaf/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-thymeleaf/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-thymeleaf/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-thymeleaf.svg)](https://javadoc.io/doc/org.jooby/jooby-thymeleaf/1.6.2) [![jooby-thymeleaf website](https://img.shields.io/badge/jooby-thymeleaf-brightgreen.svg)](http://jooby.org/doc/thymeleaf) # thymeleaf @@ -11,7 +11,7 @@ org.jooby jooby-thymeleaf - 1.6.1 + 1.6.2 ``` diff --git a/modules/jooby-thymeleaf/pom.xml b/modules/jooby-thymeleaf/pom.xml index 7372b15460..44f30bccb9 100644 --- a/modules/jooby-thymeleaf/pom.xml +++ b/modules/jooby-thymeleaf/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-unbescape/README.md b/modules/jooby-unbescape/README.md index 207b1b2cae..a84182523d 100644 --- a/modules/jooby-unbescape/README.md +++ b/modules/jooby-unbescape/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-unbescape/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-unbescape/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-unbescape.svg)](https://javadoc.io/doc/org.jooby/jooby-unbescape/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-unbescape/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-unbescape/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-unbescape.svg)](https://javadoc.io/doc/org.jooby/jooby-unbescape/1.6.2) [![jooby-unbescape website](https://img.shields.io/badge/jooby-unbescape-brightgreen.svg)](http://jooby.org/doc/unbescape) # unbescape @@ -11,7 +11,7 @@ org.jooby jooby-unbescape - 1.6.1 + 1.6.2 ``` diff --git a/modules/jooby-unbescape/pom.xml b/modules/jooby-unbescape/pom.xml index 805dae921f..68148b8dd8 100644 --- a/modules/jooby-unbescape/pom.xml +++ b/modules/jooby-unbescape/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-undertow/README.md b/modules/jooby-undertow/README.md index 2c67762fb8..524b5033b6 100644 --- a/modules/jooby-undertow/README.md +++ b/modules/jooby-undertow/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-undertow/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-undertow/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-undertow.svg)](https://javadoc.io/doc/org.jooby/jooby-undertow/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-undertow/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-undertow/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-undertow.svg)](https://javadoc.io/doc/org.jooby/jooby-undertow/1.6.2) [![jooby-undertow website](https://img.shields.io/badge/jooby-undertow-brightgreen.svg)](http://jooby.org/doc/undertow) # undertow @@ -15,7 +15,7 @@ org.jooby jooby-undertow - 1.6.1 + 1.6.2 ``` diff --git a/modules/jooby-undertow/pom.xml b/modules/jooby-undertow/pom.xml index 5a3613e6c3..61e28c0f53 100644 --- a/modules/jooby-undertow/pom.xml +++ b/modules/jooby-undertow/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-whoops/README.md b/modules/jooby-whoops/README.md index d1042fcad0..52e482c57b 100644 --- a/modules/jooby-whoops/README.md +++ b/modules/jooby-whoops/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-whoops/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-whoops/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-whoops.svg)](https://javadoc.io/doc/org.jooby/jooby-whoops/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-whoops/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-whoops/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-whoops.svg)](https://javadoc.io/doc/org.jooby/jooby-whoops/1.6.2) [![jooby-whoops website](https://img.shields.io/badge/jooby-whoops-brightgreen.svg)](http://jooby.org/doc/whoops) # whoops @@ -15,7 +15,7 @@ Pretty error page that helps you debug your web application. org.jooby jooby-whoops - 1.6.1 + 1.6.2 ``` diff --git a/modules/jooby-whoops/pom.xml b/modules/jooby-whoops/pom.xml index dc7dec515f..21481a468a 100644 --- a/modules/jooby-whoops/pom.xml +++ b/modules/jooby-whoops/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/jooby-yasson/README.md b/modules/jooby-yasson/README.md index 0817b37ef3..89e81a546f 100644 --- a/modules/jooby-yasson/README.md +++ b/modules/jooby-yasson/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-yasson/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-yasson/1.6.1) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-yasson.svg)](https://javadoc.io/doc/org.jooby/jooby-yasson/1.6.1) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-yasson/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-yasson/1.6.2) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-yasson.svg)](https://javadoc.io/doc/org.jooby/jooby-yasson/1.6.2) [![jooby-yasson website](https://img.shields.io/badge/jooby-yasson-brightgreen.svg)](http://jooby.org/doc/yasson) # yasson @@ -17,7 +17,7 @@ JSON support via [yasson](https://github.com/eclipse-ee4j/yasson) library. org.jooby jooby-yasson - 1.6.1 + 1.6.2 ``` diff --git a/modules/jooby-yasson/pom.xml b/modules/jooby-yasson/pom.xml index b53b4ff730..b2c6fcf8fd 100644 --- a/modules/jooby-yasson/pom.xml +++ b/modules/jooby-yasson/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2-SNAPSHOT + 1.6.2 4.0.0 diff --git a/modules/pom.xml b/modules/pom.xml index 5e886bb075..b8f1ae0b76 100644 --- a/modules/pom.xml +++ b/modules/pom.xml @@ -6,7 +6,7 @@ org.jooby jooby-project - 1.6.2-SNAPSHOT + 1.6.2 modules diff --git a/pom.xml b/pom.xml index aa5e3e7159..95382b58b4 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ 4.0.0 org.jooby jooby-project - 1.6.2-SNAPSHOT + 1.6.2 pom jooby-project @@ -3221,7 +3221,7 @@ org.eclipse.jdt.apt.processorOptions/defaultOverwrite=true 5.2.0 1.11.3 3.0.2 - 1.2.51 + 1.3.31 1.17.2 1.2 1.2.3 From ec6235cb36778816c5b40f6224ff0136e5c71b19 Mon Sep 17 00:00:00 2001 From: Edgar Espina Date: Wed, 5 Jun 2019 16:39:21 -0300 Subject: [PATCH 58/93] prepare for next development cycle --- jooby/pom.xml | 2 +- modules/coverage-report/pom.xml | 2 +- modules/jooby-akka/pom.xml | 2 +- modules/jooby-apitool/pom.xml | 2 +- modules/jooby-archetype/pom.xml | 2 +- modules/jooby-assets-autoprefixer/pom.xml | 2 +- modules/jooby-assets-babel/pom.xml | 2 +- modules/jooby-assets-clean-css/pom.xml | 2 +- modules/jooby-assets-closure-compiler/pom.xml | 2 +- modules/jooby-assets-csslint/pom.xml | 2 +- modules/jooby-assets-j2v8/pom.xml | 2 +- modules/jooby-assets-jscs/pom.xml | 2 +- modules/jooby-assets-jshint/pom.xml | 2 +- modules/jooby-assets-less/pom.xml | 2 +- modules/jooby-assets-less4j/pom.xml | 2 +- modules/jooby-assets-ng-annotate/pom.xml | 2 +- modules/jooby-assets-nodejs/pom.xml | 2 +- modules/jooby-assets-requirejs/pom.xml | 2 +- modules/jooby-assets-rollup/pom.xml | 2 +- modules/jooby-assets-sass/pom.xml | 2 +- modules/jooby-assets-svg-sprites/pom.xml | 2 +- modules/jooby-assets-svg-symbol/pom.xml | 2 +- modules/jooby-assets-uglify/pom.xml | 2 +- modules/jooby-assets-yui-compressor/pom.xml | 2 +- modules/jooby-assets/pom.xml | 2 +- modules/jooby-aws/pom.xml | 2 +- modules/jooby-banner/pom.xml | 2 +- modules/jooby-caffeine/pom.xml | 2 +- modules/jooby-camel/pom.xml | 2 +- modules/jooby-cassandra/pom.xml | 2 +- modules/jooby-commons-email/pom.xml | 2 +- modules/jooby-consul/pom.xml | 2 +- modules/jooby-couchbase/pom.xml | 2 +- modules/jooby-crash/pom.xml | 2 +- modules/jooby-csl/pom.xml | 2 +- modules/jooby-dist/pom.xml | 2 +- modules/jooby-ebean/pom.xml | 2 +- modules/jooby-ehcache/pom.xml | 2 +- modules/jooby-elasticsearch/pom.xml | 2 +- modules/jooby-eventbus/pom.xml | 2 +- modules/jooby-executor/pom.xml | 2 +- modules/jooby-exposed/pom.xml | 2 +- modules/jooby-filewatcher/pom.xml | 2 +- modules/jooby-flyway/pom.xml | 2 +- modules/jooby-frontend/pom.xml | 2 +- modules/jooby-ftl/pom.xml | 2 +- modules/jooby-gradle-plugin/pom.xml | 2 +- modules/jooby-gson/pom.xml | 2 +- modules/jooby-guava-cache/pom.xml | 2 +- modules/jooby-hazelcast/pom.xml | 2 +- modules/jooby-hbm/pom.xml | 2 +- modules/jooby-hbs/pom.xml | 2 +- modules/jooby-hbv/pom.xml | 2 +- modules/jooby-jackson/pom.xml | 2 +- modules/jooby-jade/pom.xml | 2 +- modules/jooby-jdbc/pom.xml | 2 +- modules/jooby-jdbi/pom.xml | 2 +- modules/jooby-jdbi3/pom.xml | 2 +- modules/jooby-jedis/pom.xml | 2 +- modules/jooby-jetty/pom.xml | 2 +- modules/jooby-jongo/pom.xml | 2 +- modules/jooby-jooq/pom.xml | 2 +- modules/jooby-lang-kotlin/pom.xml | 2 +- modules/jooby-livereload/pom.xml | 2 +- modules/jooby-maven-plugin/pom.xml | 2 +- modules/jooby-metrics/pom.xml | 2 +- modules/jooby-micrometer/pom.xml | 2 +- modules/jooby-mongodb-rx/pom.xml | 2 +- modules/jooby-mongodb/pom.xml | 2 +- modules/jooby-morphia/pom.xml | 2 +- modules/jooby-neo4j/pom.xml | 2 +- modules/jooby-netty/pom.xml | 2 +- modules/jooby-pac4j/pom.xml | 2 +- modules/jooby-pac4j2/pom.xml | 2 +- modules/jooby-pebble/pom.xml | 2 +- modules/jooby-quartz/pom.xml | 2 +- modules/jooby-querydsl/pom.xml | 2 +- modules/jooby-reactor/pom.xml | 2 +- modules/jooby-requery/pom.xml | 2 +- modules/jooby-rocker/pom.xml | 2 +- modules/jooby-run/pom.xml | 2 +- modules/jooby-rxjava-jdbc/pom.xml | 2 +- modules/jooby-rxjava/pom.xml | 2 +- modules/jooby-scanner/pom.xml | 2 +- modules/jooby-servlet/pom.xml | 2 +- modules/jooby-sitemap/pom.xml | 2 +- modules/jooby-spymemcached/pom.xml | 2 +- modules/jooby-thymeleaf/pom.xml | 2 +- modules/jooby-unbescape/pom.xml | 2 +- modules/jooby-undertow/pom.xml | 2 +- modules/jooby-whoops/pom.xml | 2 +- modules/jooby-yasson/pom.xml | 2 +- modules/pom.xml | 2 +- pom.xml | 2 +- 94 files changed, 94 insertions(+), 94 deletions(-) diff --git a/jooby/pom.xml b/jooby/pom.xml index bdfff6a403..831bd830ed 100644 --- a/jooby/pom.xml +++ b/jooby/pom.xml @@ -6,7 +6,7 @@ org.jooby jooby-project - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/coverage-report/pom.xml b/modules/coverage-report/pom.xml index d3114d9178..7d343f7167 100644 --- a/modules/coverage-report/pom.xml +++ b/modules/coverage-report/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-akka/pom.xml b/modules/jooby-akka/pom.xml index 850daf5c9b..f45fc80133 100644 --- a/modules/jooby-akka/pom.xml +++ b/modules/jooby-akka/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-apitool/pom.xml b/modules/jooby-apitool/pom.xml index 86c5cfd74f..96b7177969 100644 --- a/modules/jooby-apitool/pom.xml +++ b/modules/jooby-apitool/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-archetype/pom.xml b/modules/jooby-archetype/pom.xml index 71989c556b..cc552e64df 100644 --- a/modules/jooby-archetype/pom.xml +++ b/modules/jooby-archetype/pom.xml @@ -7,7 +7,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT jooby-archetype diff --git a/modules/jooby-assets-autoprefixer/pom.xml b/modules/jooby-assets-autoprefixer/pom.xml index 40f2370846..7465326fad 100644 --- a/modules/jooby-assets-autoprefixer/pom.xml +++ b/modules/jooby-assets-autoprefixer/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-babel/pom.xml b/modules/jooby-assets-babel/pom.xml index 2499ff3b28..90bf1e9da5 100644 --- a/modules/jooby-assets-babel/pom.xml +++ b/modules/jooby-assets-babel/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-clean-css/pom.xml b/modules/jooby-assets-clean-css/pom.xml index c2e0d82bf5..6979128c9b 100644 --- a/modules/jooby-assets-clean-css/pom.xml +++ b/modules/jooby-assets-clean-css/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-closure-compiler/pom.xml b/modules/jooby-assets-closure-compiler/pom.xml index 48af6e3e04..b9fe60aac2 100644 --- a/modules/jooby-assets-closure-compiler/pom.xml +++ b/modules/jooby-assets-closure-compiler/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-csslint/pom.xml b/modules/jooby-assets-csslint/pom.xml index 4074744891..ecf57083fb 100644 --- a/modules/jooby-assets-csslint/pom.xml +++ b/modules/jooby-assets-csslint/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-j2v8/pom.xml b/modules/jooby-assets-j2v8/pom.xml index c8bd9e49c0..781e636bd2 100644 --- a/modules/jooby-assets-j2v8/pom.xml +++ b/modules/jooby-assets-j2v8/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-jscs/pom.xml b/modules/jooby-assets-jscs/pom.xml index a37f6ea37d..ec39e50b57 100644 --- a/modules/jooby-assets-jscs/pom.xml +++ b/modules/jooby-assets-jscs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-jshint/pom.xml b/modules/jooby-assets-jshint/pom.xml index 48e220edde..9bf2020b58 100644 --- a/modules/jooby-assets-jshint/pom.xml +++ b/modules/jooby-assets-jshint/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-less/pom.xml b/modules/jooby-assets-less/pom.xml index a326adf5cb..582b7788a5 100644 --- a/modules/jooby-assets-less/pom.xml +++ b/modules/jooby-assets-less/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-less4j/pom.xml b/modules/jooby-assets-less4j/pom.xml index a4e405a7d4..244a5e5cde 100644 --- a/modules/jooby-assets-less4j/pom.xml +++ b/modules/jooby-assets-less4j/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-ng-annotate/pom.xml b/modules/jooby-assets-ng-annotate/pom.xml index b8ec118741..aa30e77ebc 100644 --- a/modules/jooby-assets-ng-annotate/pom.xml +++ b/modules/jooby-assets-ng-annotate/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-nodejs/pom.xml b/modules/jooby-assets-nodejs/pom.xml index ca4e9f91a9..b47b4db586 100644 --- a/modules/jooby-assets-nodejs/pom.xml +++ b/modules/jooby-assets-nodejs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-requirejs/pom.xml b/modules/jooby-assets-requirejs/pom.xml index 7caa8a9238..605a03280b 100644 --- a/modules/jooby-assets-requirejs/pom.xml +++ b/modules/jooby-assets-requirejs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-rollup/pom.xml b/modules/jooby-assets-rollup/pom.xml index f6d2d2b919..85073030e8 100644 --- a/modules/jooby-assets-rollup/pom.xml +++ b/modules/jooby-assets-rollup/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-sass/pom.xml b/modules/jooby-assets-sass/pom.xml index 18c5b386e5..f3c7d0df51 100644 --- a/modules/jooby-assets-sass/pom.xml +++ b/modules/jooby-assets-sass/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-svg-sprites/pom.xml b/modules/jooby-assets-svg-sprites/pom.xml index e9113f3995..569d3f4b04 100644 --- a/modules/jooby-assets-svg-sprites/pom.xml +++ b/modules/jooby-assets-svg-sprites/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-svg-symbol/pom.xml b/modules/jooby-assets-svg-symbol/pom.xml index e65009977d..db18fac22c 100644 --- a/modules/jooby-assets-svg-symbol/pom.xml +++ b/modules/jooby-assets-svg-symbol/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-uglify/pom.xml b/modules/jooby-assets-uglify/pom.xml index a2d630803e..d3d20f488c 100644 --- a/modules/jooby-assets-uglify/pom.xml +++ b/modules/jooby-assets-uglify/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-yui-compressor/pom.xml b/modules/jooby-assets-yui-compressor/pom.xml index ed4b7802b2..c9e79b5306 100644 --- a/modules/jooby-assets-yui-compressor/pom.xml +++ b/modules/jooby-assets-yui-compressor/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets/pom.xml b/modules/jooby-assets/pom.xml index 99863932ae..64c3d7a518 100644 --- a/modules/jooby-assets/pom.xml +++ b/modules/jooby-assets/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-aws/pom.xml b/modules/jooby-aws/pom.xml index f54454733d..997ae7d970 100644 --- a/modules/jooby-aws/pom.xml +++ b/modules/jooby-aws/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-banner/pom.xml b/modules/jooby-banner/pom.xml index 4311130460..7c2df6125b 100644 --- a/modules/jooby-banner/pom.xml +++ b/modules/jooby-banner/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-caffeine/pom.xml b/modules/jooby-caffeine/pom.xml index 888b3adce8..942ff63f6d 100644 --- a/modules/jooby-caffeine/pom.xml +++ b/modules/jooby-caffeine/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-camel/pom.xml b/modules/jooby-camel/pom.xml index b46033ae7c..c31748d5d6 100644 --- a/modules/jooby-camel/pom.xml +++ b/modules/jooby-camel/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-cassandra/pom.xml b/modules/jooby-cassandra/pom.xml index 81b6fad516..5bc14b9380 100644 --- a/modules/jooby-cassandra/pom.xml +++ b/modules/jooby-cassandra/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-commons-email/pom.xml b/modules/jooby-commons-email/pom.xml index be71a3a404..9766be00a2 100644 --- a/modules/jooby-commons-email/pom.xml +++ b/modules/jooby-commons-email/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-consul/pom.xml b/modules/jooby-consul/pom.xml index f530bab5b9..a70a0bde3f 100644 --- a/modules/jooby-consul/pom.xml +++ b/modules/jooby-consul/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-couchbase/pom.xml b/modules/jooby-couchbase/pom.xml index 458f8bd2f5..575ba4a390 100644 --- a/modules/jooby-couchbase/pom.xml +++ b/modules/jooby-couchbase/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-crash/pom.xml b/modules/jooby-crash/pom.xml index 176db0ec01..625c0d77ff 100644 --- a/modules/jooby-crash/pom.xml +++ b/modules/jooby-crash/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-csl/pom.xml b/modules/jooby-csl/pom.xml index 7ec7beeef1..dbb517848c 100644 --- a/modules/jooby-csl/pom.xml +++ b/modules/jooby-csl/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-dist/pom.xml b/modules/jooby-dist/pom.xml index a5f7c46a2f..d379495548 100644 --- a/modules/jooby-dist/pom.xml +++ b/modules/jooby-dist/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-ebean/pom.xml b/modules/jooby-ebean/pom.xml index 2ba0729351..bdd43364d2 100644 --- a/modules/jooby-ebean/pom.xml +++ b/modules/jooby-ebean/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-ehcache/pom.xml b/modules/jooby-ehcache/pom.xml index 50ad2d62f0..658c4f3d7d 100644 --- a/modules/jooby-ehcache/pom.xml +++ b/modules/jooby-ehcache/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-elasticsearch/pom.xml b/modules/jooby-elasticsearch/pom.xml index 7f5ed5ca8f..a21957f980 100644 --- a/modules/jooby-elasticsearch/pom.xml +++ b/modules/jooby-elasticsearch/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-eventbus/pom.xml b/modules/jooby-eventbus/pom.xml index 58768842db..433e113d23 100644 --- a/modules/jooby-eventbus/pom.xml +++ b/modules/jooby-eventbus/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-executor/pom.xml b/modules/jooby-executor/pom.xml index 9dcb34f1ac..54478c5563 100644 --- a/modules/jooby-executor/pom.xml +++ b/modules/jooby-executor/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-exposed/pom.xml b/modules/jooby-exposed/pom.xml index 1e760ca56f..67881f01b7 100644 --- a/modules/jooby-exposed/pom.xml +++ b/modules/jooby-exposed/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-filewatcher/pom.xml b/modules/jooby-filewatcher/pom.xml index d483fb212d..59d18296ae 100644 --- a/modules/jooby-filewatcher/pom.xml +++ b/modules/jooby-filewatcher/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-flyway/pom.xml b/modules/jooby-flyway/pom.xml index d13a84d667..a8c8f7c163 100644 --- a/modules/jooby-flyway/pom.xml +++ b/modules/jooby-flyway/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-frontend/pom.xml b/modules/jooby-frontend/pom.xml index 3509bc0bb4..671c08dc9c 100644 --- a/modules/jooby-frontend/pom.xml +++ b/modules/jooby-frontend/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-ftl/pom.xml b/modules/jooby-ftl/pom.xml index 7f19781633..6d0bedf397 100644 --- a/modules/jooby-ftl/pom.xml +++ b/modules/jooby-ftl/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-gradle-plugin/pom.xml b/modules/jooby-gradle-plugin/pom.xml index fd284c4f33..08f66c8678 100644 --- a/modules/jooby-gradle-plugin/pom.xml +++ b/modules/jooby-gradle-plugin/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-gson/pom.xml b/modules/jooby-gson/pom.xml index daada58a3d..ff5568bb82 100644 --- a/modules/jooby-gson/pom.xml +++ b/modules/jooby-gson/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-guava-cache/pom.xml b/modules/jooby-guava-cache/pom.xml index 1a992b2196..374989429d 100644 --- a/modules/jooby-guava-cache/pom.xml +++ b/modules/jooby-guava-cache/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-hazelcast/pom.xml b/modules/jooby-hazelcast/pom.xml index 40c45ebd36..c94636e5dd 100644 --- a/modules/jooby-hazelcast/pom.xml +++ b/modules/jooby-hazelcast/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-hbm/pom.xml b/modules/jooby-hbm/pom.xml index ce3c2f669f..6899967d37 100644 --- a/modules/jooby-hbm/pom.xml +++ b/modules/jooby-hbm/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-hbs/pom.xml b/modules/jooby-hbs/pom.xml index 5fd4b68d3e..2547523625 100644 --- a/modules/jooby-hbs/pom.xml +++ b/modules/jooby-hbs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-hbv/pom.xml b/modules/jooby-hbv/pom.xml index d1ea6d53cf..8eb2734d2b 100644 --- a/modules/jooby-hbv/pom.xml +++ b/modules/jooby-hbv/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-jackson/pom.xml b/modules/jooby-jackson/pom.xml index 09cd7f34bc..2abebfe020 100644 --- a/modules/jooby-jackson/pom.xml +++ b/modules/jooby-jackson/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-jade/pom.xml b/modules/jooby-jade/pom.xml index 60b5940883..2f418c0b51 100644 --- a/modules/jooby-jade/pom.xml +++ b/modules/jooby-jade/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-jdbc/pom.xml b/modules/jooby-jdbc/pom.xml index 74b79c7324..a25111d8c7 100644 --- a/modules/jooby-jdbc/pom.xml +++ b/modules/jooby-jdbc/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-jdbi/pom.xml b/modules/jooby-jdbi/pom.xml index 4304f3050d..1e18410a0c 100644 --- a/modules/jooby-jdbi/pom.xml +++ b/modules/jooby-jdbi/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-jdbi3/pom.xml b/modules/jooby-jdbi3/pom.xml index 8b18d80514..1dc1334019 100644 --- a/modules/jooby-jdbi3/pom.xml +++ b/modules/jooby-jdbi3/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-jedis/pom.xml b/modules/jooby-jedis/pom.xml index a5449e296c..734879ca81 100644 --- a/modules/jooby-jedis/pom.xml +++ b/modules/jooby-jedis/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-jetty/pom.xml b/modules/jooby-jetty/pom.xml index bb84bdd166..6fc13d82f1 100644 --- a/modules/jooby-jetty/pom.xml +++ b/modules/jooby-jetty/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-jongo/pom.xml b/modules/jooby-jongo/pom.xml index ba1de5e875..205da6799e 100644 --- a/modules/jooby-jongo/pom.xml +++ b/modules/jooby-jongo/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-jooq/pom.xml b/modules/jooby-jooq/pom.xml index bbd9b27fe3..23040fced2 100644 --- a/modules/jooby-jooq/pom.xml +++ b/modules/jooby-jooq/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-lang-kotlin/pom.xml b/modules/jooby-lang-kotlin/pom.xml index af398231e5..a00cd9bb4b 100644 --- a/modules/jooby-lang-kotlin/pom.xml +++ b/modules/jooby-lang-kotlin/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-livereload/pom.xml b/modules/jooby-livereload/pom.xml index 30a4e88ff2..44395d2289 100644 --- a/modules/jooby-livereload/pom.xml +++ b/modules/jooby-livereload/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT jooby-livereload jooby-livereload diff --git a/modules/jooby-maven-plugin/pom.xml b/modules/jooby-maven-plugin/pom.xml index 0b834fc73f..6c58ccf057 100644 --- a/modules/jooby-maven-plugin/pom.xml +++ b/modules/jooby-maven-plugin/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-metrics/pom.xml b/modules/jooby-metrics/pom.xml index d6839e0908..2e76a275ab 100644 --- a/modules/jooby-metrics/pom.xml +++ b/modules/jooby-metrics/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-micrometer/pom.xml b/modules/jooby-micrometer/pom.xml index 242f270df2..2882351b51 100644 --- a/modules/jooby-micrometer/pom.xml +++ b/modules/jooby-micrometer/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-mongodb-rx/pom.xml b/modules/jooby-mongodb-rx/pom.xml index 467749f6ee..e100af2552 100644 --- a/modules/jooby-mongodb-rx/pom.xml +++ b/modules/jooby-mongodb-rx/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-mongodb/pom.xml b/modules/jooby-mongodb/pom.xml index 3bc444e68b..c67ced9a28 100644 --- a/modules/jooby-mongodb/pom.xml +++ b/modules/jooby-mongodb/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-morphia/pom.xml b/modules/jooby-morphia/pom.xml index 683777ab71..b11d6773a3 100644 --- a/modules/jooby-morphia/pom.xml +++ b/modules/jooby-morphia/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-neo4j/pom.xml b/modules/jooby-neo4j/pom.xml index 29c9c8e04a..5929c7bd9a 100644 --- a/modules/jooby-neo4j/pom.xml +++ b/modules/jooby-neo4j/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-netty/pom.xml b/modules/jooby-netty/pom.xml index 231f34aa01..4995426372 100644 --- a/modules/jooby-netty/pom.xml +++ b/modules/jooby-netty/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-pac4j/pom.xml b/modules/jooby-pac4j/pom.xml index 86c78d30f4..a31f56fd19 100644 --- a/modules/jooby-pac4j/pom.xml +++ b/modules/jooby-pac4j/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-pac4j2/pom.xml b/modules/jooby-pac4j2/pom.xml index 27b39da130..acccd95251 100644 --- a/modules/jooby-pac4j2/pom.xml +++ b/modules/jooby-pac4j2/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-pebble/pom.xml b/modules/jooby-pebble/pom.xml index 56a2b85399..9fc5aa7f22 100644 --- a/modules/jooby-pebble/pom.xml +++ b/modules/jooby-pebble/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-quartz/pom.xml b/modules/jooby-quartz/pom.xml index d63a24b85a..e66bac256d 100644 --- a/modules/jooby-quartz/pom.xml +++ b/modules/jooby-quartz/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-querydsl/pom.xml b/modules/jooby-querydsl/pom.xml index 9a0ca4252d..cd1f8fa8a4 100644 --- a/modules/jooby-querydsl/pom.xml +++ b/modules/jooby-querydsl/pom.xml @@ -4,7 +4,7 @@ modules org.jooby - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-reactor/pom.xml b/modules/jooby-reactor/pom.xml index b29ef9a02f..fb03fbff83 100644 --- a/modules/jooby-reactor/pom.xml +++ b/modules/jooby-reactor/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-requery/pom.xml b/modules/jooby-requery/pom.xml index 09426aa6db..66cb394bfa 100644 --- a/modules/jooby-requery/pom.xml +++ b/modules/jooby-requery/pom.xml @@ -4,7 +4,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT jooby-requery requery module diff --git a/modules/jooby-rocker/pom.xml b/modules/jooby-rocker/pom.xml index 9db22b18b0..9983d63393 100644 --- a/modules/jooby-rocker/pom.xml +++ b/modules/jooby-rocker/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT jooby-rocker jooby-rocker diff --git a/modules/jooby-run/pom.xml b/modules/jooby-run/pom.xml index 16d81d3e69..5562fe087b 100644 --- a/modules/jooby-run/pom.xml +++ b/modules/jooby-run/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-rxjava-jdbc/pom.xml b/modules/jooby-rxjava-jdbc/pom.xml index b84f922813..b45b25f665 100644 --- a/modules/jooby-rxjava-jdbc/pom.xml +++ b/modules/jooby-rxjava-jdbc/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-rxjava/pom.xml b/modules/jooby-rxjava/pom.xml index 0a325d9b07..486638b5d9 100644 --- a/modules/jooby-rxjava/pom.xml +++ b/modules/jooby-rxjava/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-scanner/pom.xml b/modules/jooby-scanner/pom.xml index d6ff3958d3..cd04b51343 100644 --- a/modules/jooby-scanner/pom.xml +++ b/modules/jooby-scanner/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-servlet/pom.xml b/modules/jooby-servlet/pom.xml index 4f1875cdf0..ebc1cbf3e1 100644 --- a/modules/jooby-servlet/pom.xml +++ b/modules/jooby-servlet/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-sitemap/pom.xml b/modules/jooby-sitemap/pom.xml index fc39f6cf00..4da541509b 100644 --- a/modules/jooby-sitemap/pom.xml +++ b/modules/jooby-sitemap/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-spymemcached/pom.xml b/modules/jooby-spymemcached/pom.xml index 680ee0df74..58e9243bf8 100644 --- a/modules/jooby-spymemcached/pom.xml +++ b/modules/jooby-spymemcached/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-thymeleaf/pom.xml b/modules/jooby-thymeleaf/pom.xml index 44f30bccb9..994ee7c28a 100644 --- a/modules/jooby-thymeleaf/pom.xml +++ b/modules/jooby-thymeleaf/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-unbescape/pom.xml b/modules/jooby-unbescape/pom.xml index 68148b8dd8..e7999697d5 100644 --- a/modules/jooby-unbescape/pom.xml +++ b/modules/jooby-unbescape/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-undertow/pom.xml b/modules/jooby-undertow/pom.xml index 61e28c0f53..eb5b727e40 100644 --- a/modules/jooby-undertow/pom.xml +++ b/modules/jooby-undertow/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-whoops/pom.xml b/modules/jooby-whoops/pom.xml index 21481a468a..19b41f019c 100644 --- a/modules/jooby-whoops/pom.xml +++ b/modules/jooby-whoops/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/jooby-yasson/pom.xml b/modules/jooby-yasson/pom.xml index b2c6fcf8fd..aac644e1c0 100644 --- a/modules/jooby-yasson/pom.xml +++ b/modules/jooby-yasson/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.2 + 1.6.3-SNAPSHOT 4.0.0 diff --git a/modules/pom.xml b/modules/pom.xml index b8f1ae0b76..c697b28259 100644 --- a/modules/pom.xml +++ b/modules/pom.xml @@ -6,7 +6,7 @@ org.jooby jooby-project - 1.6.2 + 1.6.3-SNAPSHOT modules diff --git a/pom.xml b/pom.xml index 95382b58b4..eac7891109 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ 4.0.0 org.jooby jooby-project - 1.6.2 + 1.6.3-SNAPSHOT pom jooby-project From 1a0db172cf0b2c8bdcb36c738621df79df1edb4e Mon Sep 17 00:00:00 2001 From: vokl0313 Date: Fri, 14 Jun 2019 22:49:18 +0300 Subject: [PATCH 59/93] apitool parser complex map types parsing --- .../apitool/TypeJsonDeserializer.java | 5 +- .../internal/apitool/ComplexMapTypesTest.java | 60 +++++++++++++++++++ 2 files changed, 62 insertions(+), 3 deletions(-) create mode 100644 modules/jooby-apitool/src/test/java/org/jooby/internal/apitool/ComplexMapTypesTest.java diff --git a/modules/jooby-apitool/src/main/java/org/jooby/internal/apitool/TypeJsonDeserializer.java b/modules/jooby-apitool/src/main/java/org/jooby/internal/apitool/TypeJsonDeserializer.java index 3159d7ce97..2414964c06 100644 --- a/modules/jooby-apitool/src/main/java/org/jooby/internal/apitool/TypeJsonDeserializer.java +++ b/modules/jooby-apitool/src/main/java/org/jooby/internal/apitool/TypeJsonDeserializer.java @@ -213,7 +213,6 @@ import java.lang.reflect.Array; import java.lang.reflect.Type; import java.util.ArrayList; -import java.util.Arrays; import java.util.List; class TypeJsonDeserializer extends JsonDeserializer { @@ -243,8 +242,8 @@ private static List parse(final ClassLoader loader, final String type, fin if (ch == '<') { Type owner = BytecodeRouteParser.loadType(loader, singleType.toString()); List parameters = parse(loader, type, i + 1); - return Arrays.asList( - Types.newParameterizedType(owner, parameters.toArray(new Type[parameters.size()]))); + types.add(Types.newParameterizedType(owner, parameters.toArray(new Type[parameters.size()]))); + return types; } else if (ch == ',') { Type element = BytecodeRouteParser.loadType(loader, singleType.toString()); types.add(element); diff --git a/modules/jooby-apitool/src/test/java/org/jooby/internal/apitool/ComplexMapTypesTest.java b/modules/jooby-apitool/src/test/java/org/jooby/internal/apitool/ComplexMapTypesTest.java new file mode 100644 index 0000000000..d7cc5b2e1a --- /dev/null +++ b/modules/jooby-apitool/src/test/java/org/jooby/internal/apitool/ComplexMapTypesTest.java @@ -0,0 +1,60 @@ +package org.jooby.internal.apitool; + +import com.fasterxml.jackson.databind.ObjectMapper; +import com.google.inject.util.Types; +import org.junit.Test; + +import java.lang.reflect.ParameterizedType; +import java.lang.reflect.Type; +import java.util.UUID; + +import static org.junit.Assert.assertEquals; + +public class ComplexMapTypesTest { + + public static class TypeWrapper { + private Type type; + + public Type getType() { + return type; + } + + public void setType(Type type) { + this.type = type; + } + } + + @Test + public void shouldDeserializeMapWithListProperly() throws Exception { + ObjectMapper mapper = BytecodeRouteParser.mapper; + TypeWrapper expected = new TypeWrapper(); + ParameterizedType type = Types.mapOf(UUID.class, Types.listOf(Integer.class)); + expected.setType(type); + String json = mapper.writeValueAsString(expected); + TypeWrapper actual = mapper.readValue(json, TypeWrapper.class); + assertEquals(expected.getType(), actual.getType()); + } + + @Test + public void shouldDeserializeMapWithMapWithListProperly() throws Exception { + ObjectMapper mapper = BytecodeRouteParser.mapper; + TypeWrapper expected = new TypeWrapper(); + ParameterizedType type = Types.mapOf(UUID.class, Types.mapOf(UUID.class, Types.listOf(Integer.class))); + expected.setType(type); + String json = mapper.writeValueAsString(expected); + TypeWrapper actual = mapper.readValue(json, TypeWrapper.class); + assertEquals(expected.getType(), actual.getType()); + } + + @Test + public void shouldDeserializeListWithMapWithListProperly() throws Exception { + ObjectMapper mapper = BytecodeRouteParser.mapper; + TypeWrapper expected = new TypeWrapper(); + ParameterizedType type = Types.listOf(Types.mapOf(UUID.class, Types.mapOf(UUID.class, Types.listOf(Integer.class)))); + expected.setType(type); + String json = mapper.writeValueAsString(expected); + TypeWrapper actual = mapper.readValue(json, TypeWrapper.class); + assertEquals(expected.getType(), actual.getType()); + } + +} From 0eefab958640f0c52bddf3dec975d5853c50891f Mon Sep 17 00:00:00 2001 From: Alexander Reelsen Date: Tue, 2 Jul 2019 14:16:48 +0200 Subject: [PATCH 60/93] Upgrade to Elasticsearch 7.2.0 REST client This allows to use the fully fledged high level REST client from Elasticsearch. This also keeps the low level rest client available, so that it can be accessed as well in jooby apps. --- .../ElasticsearchClientAPIFeature.java | 5 ++++ modules/jooby-bom/pom.xml | 2 +- modules/jooby-elasticsearch/pom.xml | 2 +- .../jooby/elasticsearch/Elasticsearch.java | 23 ++++++++++++------- .../elasticsearch/ElasticsearchTest.java | 11 ++++++++- pom.xml | 6 ++--- 6 files changed, 35 insertions(+), 14 deletions(-) diff --git a/modules/coverage-report/src/test/java/org/jooby/elasticsearch/ElasticsearchClientAPIFeature.java b/modules/coverage-report/src/test/java/org/jooby/elasticsearch/ElasticsearchClientAPIFeature.java index 9e8cdd03b0..45e56afcaa 100644 --- a/modules/coverage-report/src/test/java/org/jooby/elasticsearch/ElasticsearchClientAPIFeature.java +++ b/modules/coverage-report/src/test/java/org/jooby/elasticsearch/ElasticsearchClientAPIFeature.java @@ -1,6 +1,7 @@ package org.jooby.elasticsearch; import org.elasticsearch.client.RestClient; +import org.elasticsearch.client.RestHighLevelClient; import org.jooby.test.ServerFeature; import org.junit.Test; @@ -11,6 +12,7 @@ public class ElasticsearchClientAPIFeature extends ServerFeature { use(new Elasticsearch()); get("/", req -> req.require(RestClient.class).getClass().getName()); + get("/hlrc", req -> req.require(RestHighLevelClient.class).getClass().getName()); } @@ -19,6 +21,9 @@ public void boot() throws Exception { request() .get("/") .expect("org.elasticsearch.client.RestClient"); + request() + .get("/hlrc") + .expect("org.elasticsearch.client.RestHighLevelClient"); } } diff --git a/modules/jooby-bom/pom.xml b/modules/jooby-bom/pom.xml index 4298aa51e6..c48b1885a6 100644 --- a/modules/jooby-bom/pom.xml +++ b/modules/jooby-bom/pom.xml @@ -40,7 +40,7 @@ 11.11.2 11.18.2 2.10.5 - 5.5.3 + 7.2.0 5.1.3 2.3.28 1.6 diff --git a/modules/jooby-elasticsearch/pom.xml b/modules/jooby-elasticsearch/pom.xml index a21957f980..8e213e4d1d 100644 --- a/modules/jooby-elasticsearch/pom.xml +++ b/modules/jooby-elasticsearch/pom.xml @@ -42,7 +42,7 @@ org.elasticsearch.client - rest + elasticsearch-rest-high-level-client diff --git a/modules/jooby-elasticsearch/src/main/java/org/jooby/elasticsearch/Elasticsearch.java b/modules/jooby-elasticsearch/src/main/java/org/jooby/elasticsearch/Elasticsearch.java index 02d189e8e5..52efddc9c9 100644 --- a/modules/jooby-elasticsearch/src/main/java/org/jooby/elasticsearch/Elasticsearch.java +++ b/modules/jooby-elasticsearch/src/main/java/org/jooby/elasticsearch/Elasticsearch.java @@ -207,6 +207,7 @@ import org.apache.http.HttpHost; import org.elasticsearch.client.RestClient; +import org.elasticsearch.client.RestHighLevelClient; import org.jooby.Env; import org.jooby.Jooby; @@ -219,7 +220,7 @@ * Full text search and analytics via Elastic * Search. *

- * Provides a RESTFul client. + * Provides a high and low level Elasticsearch REST client. * *

usage

* @@ -231,17 +232,20 @@ *

client API

*

- * The module exposes a {@link RestClient} instance + * The module exposes a {@link RestHighLevelClient} and a low-level {@link RestClient} instance *

* *
{@code
  *
  * put("/:id", req -> {
  *   // index a document
- *   RestClient client = req.require(RestClient.class);
- *   StringEntity data = new StringEntity("{\"foo\":\"bar\"}");
- *   return client.performRequest("PUT", "/twitter/tweet/" + req.param("id").value(), Collections.emptyMap(), data)
- *     .getEntity().getContent();
+ *   IndexRequest indexRequest = new IndexRequest("posts")
+ *     .id("1")
+ *     .source("user", "kimchy",
+ *         "postDate", new Date(),
+ *         "message", "trying out Elasticsearch");
+ *   RestHighLevelClient client = req.require(RestHighLevelClient .class);
+ *   return client.index(request, RequestOptions.DEFAULT).toString();
  * });
  *
  * }
@@ -264,10 +268,13 @@ public Elasticsearch(final String ... hosts) { @Override public void configure(final Env env, final Config config, final Binder binder) { HttpHost[] httpHosts = Arrays.stream(hosts).map(HttpHost::create).toArray(HttpHost[]::new); - RestClient restClient = RestClient.builder(httpHosts).build(); + RestHighLevelClient restHighLevelClient = new RestHighLevelClient(RestClient.builder(httpHosts)); + RestClient restClient = restHighLevelClient.getLowLevelClient(); + binder.bind(RestClient.class).toInstance(restClient); + binder.bind(RestHighLevelClient.class).toInstance(restHighLevelClient); - env.onStop(restClient::close); + env.onStop(restHighLevelClient::close); } @Override diff --git a/modules/jooby-elasticsearch/src/test/java/org/jooby/elasticsearch/ElasticsearchTest.java b/modules/jooby-elasticsearch/src/test/java/org/jooby/elasticsearch/ElasticsearchTest.java index 603d967240..2cfc3fd643 100644 --- a/modules/jooby-elasticsearch/src/test/java/org/jooby/elasticsearch/ElasticsearchTest.java +++ b/modules/jooby-elasticsearch/src/test/java/org/jooby/elasticsearch/ElasticsearchTest.java @@ -7,6 +7,7 @@ import com.typesafe.config.ConfigFactory; import static org.easymock.EasyMock.expect; import org.elasticsearch.client.RestClient; +import org.elasticsearch.client.RestHighLevelClient; import org.jooby.Env; import org.jooby.test.MockUnit; import org.jooby.funzy.Throwing; @@ -32,16 +33,21 @@ public class ElasticsearchTest { private MockUnit.Block nb = unit -> { RestClient client = unit.mock(RestClient.class); unit.registerMock(RestClient.class, client); + RestHighLevelClient restHighLevelClient = unit.mock(RestHighLevelClient.class); + unit.registerMock(RestHighLevelClient.class, restHighLevelClient); }; @SuppressWarnings("unchecked") private MockUnit.Block bindings = unit -> { AnnotatedBindingBuilder abbclient = unit.mock(AnnotatedBindingBuilder.class); abbclient.toInstance(unit.capture(RestClient.class)); - //abbclient.toInstance(anyObject(RestClient.class)); + + AnnotatedBindingBuilder defclient = unit.mock(AnnotatedBindingBuilder.class); + defclient.toInstance(unit.capture(RestHighLevelClient.class)); Binder binder = unit.get(Binder.class); expect(binder.bind(RestClient.class)).andReturn(abbclient); + expect(binder.bind(RestHighLevelClient.class)).andReturn(defclient); }; @Test @@ -57,6 +63,9 @@ public void defaults() throws Exception { List captured = unit.captured(RestClient.class); assert captured.size() == 1; + List capturedHighLevelRestClient = unit.captured(RestHighLevelClient.class); + assert capturedHighLevelRestClient.size() == 1; + List callbacks = unit.captured(Throwing.Runnable.class); callbacks.get(0).run(); }); diff --git a/pom.xml b/pom.xml index eac7891109..9bc071b55e 100644 --- a/pom.xml +++ b/pom.xml @@ -1114,8 +1114,8 @@ org.elasticsearch.client - rest - ${elasticsearch} + elasticsearch-rest-high-level-client + ${elasticsearch.version} @@ -3181,7 +3181,7 @@ org.eclipse.jdt.apt.processorOptions/defaultOverwrite=true 11.11.2 11.18.2 2.10.5 - 5.5.3 + 7.2.0 5.1.3 2.3.28 1.6 From 13a5fe84384660a1aea4f208be3d67ed941cdd50 Mon Sep 17 00:00:00 2001 From: Edgar Espina Date: Mon, 15 Jul 2019 19:32:29 -0300 Subject: [PATCH 61/93] Jooby 1.6.x throws exception for empty cookies #1331 --- .../java/org/jooby/internal/RequestImpl.java | 2 +- .../test/java/org/jooby/issues/Issue1331.java | 25 +++++++++++++++++++ 2 files changed, 26 insertions(+), 1 deletion(-) create mode 100644 modules/coverage-report/src/test/java/org/jooby/issues/Issue1331.java diff --git a/jooby/src/main/java/org/jooby/internal/RequestImpl.java b/jooby/src/main/java/org/jooby/internal/RequestImpl.java index 4a4ed35425..52732f946d 100644 --- a/jooby/src/main/java/org/jooby/internal/RequestImpl.java +++ b/jooby/src/main/java/org/jooby/internal/RequestImpl.java @@ -436,7 +436,7 @@ public Map headers() { public Mutant cookie(final String name) { List values = req.cookies().stream().filter(c -> c.name().equalsIgnoreCase(name)) .findFirst() - .map(cookie -> ImmutableList.of(cookie.value().get())) + .map(cookie -> ImmutableList.of(cookie.value().orElse(""))) .orElse(ImmutableList.of()); return new MutantImpl(require(ParserExecutor.class), diff --git a/modules/coverage-report/src/test/java/org/jooby/issues/Issue1331.java b/modules/coverage-report/src/test/java/org/jooby/issues/Issue1331.java new file mode 100644 index 0000000000..9d447ae4c3 --- /dev/null +++ b/modules/coverage-report/src/test/java/org/jooby/issues/Issue1331.java @@ -0,0 +1,25 @@ +package org.jooby.issues; + +import org.jooby.test.ServerFeature; +import org.junit.Test; + +public class Issue1331 extends ServerFeature { + + { + get("/1331", req -> { + return req.cookie("login").value("not set"); + }); + } + + @Test + public void shouldNotFailOnEmptyCookies() throws Exception { + request() + .get("/1331") + .header("Cookie", "login=;Version=1;Path=/1331") + .expect(""); + request() + .get("/1331") + .expect("not set"); + } + +} From 13b1020240d853c0011dbe2fbb3632c8cfd130bf Mon Sep 17 00:00:00 2001 From: Edgar Espina Date: Mon, 15 Jul 2019 21:16:59 -0300 Subject: [PATCH 62/93] Problem with jooby-requery event listeners fix #1296 --- .../requery/ProxyEntityStateListener.java | 259 ++++++++++++++++++ .../jooby/requery/ProxyStatementListener.java | 259 ++++++++++++++++++ .../requery/ProxyTransactionListener.java | 259 ++++++++++++++++++ .../main/java/org/jooby/requery/Requery.java | 33 ++- .../java/org/jooby/requery/RequeryTest.java | 23 +- 5 files changed, 815 insertions(+), 18 deletions(-) create mode 100644 modules/jooby-requery/src/main/java/org/jooby/requery/ProxyEntityStateListener.java create mode 100644 modules/jooby-requery/src/main/java/org/jooby/requery/ProxyStatementListener.java create mode 100644 modules/jooby-requery/src/main/java/org/jooby/requery/ProxyTransactionListener.java diff --git a/modules/jooby-requery/src/main/java/org/jooby/requery/ProxyEntityStateListener.java b/modules/jooby-requery/src/main/java/org/jooby/requery/ProxyEntityStateListener.java new file mode 100644 index 0000000000..ca8246d315 --- /dev/null +++ b/modules/jooby-requery/src/main/java/org/jooby/requery/ProxyEntityStateListener.java @@ -0,0 +1,259 @@ +/** + * Apache License + * Version 2.0, January 2004 + * http://www.apache.org/licenses/ + * + * TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + * + * 1. Definitions. + * + * "License" shall mean the terms and conditions for use, reproduction, + * and distribution as defined by Sections 1 through 9 of this document. + * + * "Licensor" shall mean the copyright owner or entity authorized by + * the copyright owner that is granting the License. + * + * "Legal Entity" shall mean the union of the acting entity and all + * other entities that control, are controlled by, or are under common + * control with that entity. For the purposes of this definition, + * "control" means (i) the power, direct or indirect, to cause the + * direction or management of such entity, whether by contract or + * otherwise, or (ii) ownership of fifty percent (50%) or more of the + * outstanding shares, or (iii) beneficial ownership of such entity. + * + * "You" (or "Your") shall mean an individual or Legal Entity + * exercising permissions granted by this License. + * + * "Source" form shall mean the preferred form for making modifications, + * including but not limited to software source code, documentation + * source, and configuration files. + * + * "Object" form shall mean any form resulting from mechanical + * transformation or translation of a Source form, including but + * not limited to compiled object code, generated documentation, + * and conversions to other media types. + * + * "Work" shall mean the work of authorship, whether in Source or + * Object form, made available under the License, as indicated by a + * copyright notice that is included in or attached to the work + * (an example is provided in the Appendix below). + * + * "Derivative Works" shall mean any work, whether in Source or Object + * form, that is based on (or derived from) the Work and for which the + * editorial revisions, annotations, elaborations, or other modifications + * represent, as a whole, an original work of authorship. For the purposes + * of this License, Derivative Works shall not include works that remain + * separable from, or merely link (or bind by name) to the interfaces of, + * the Work and Derivative Works thereof. + * + * "Contribution" shall mean any work of authorship, including + * the original version of the Work and any modifications or additions + * to that Work or Derivative Works thereof, that is intentionally + * submitted to Licensor for inclusion in the Work by the copyright owner + * or by an individual or Legal Entity authorized to submit on behalf of + * the copyright owner. For the purposes of this definition, "submitted" + * means any form of electronic, verbal, or written communication sent + * to the Licensor or its representatives, including but not limited to + * communication on electronic mailing lists, source code control systems, + * and issue tracking systems that are managed by, or on behalf of, the + * Licensor for the purpose of discussing and improving the Work, but + * excluding communication that is conspicuously marked or otherwise + * designated in writing by the copyright owner as "Not a Contribution." + * + * "Contributor" shall mean Licensor and any individual or Legal Entity + * on behalf of whom a Contribution has been received by Licensor and + * subsequently incorporated within the Work. + * + * 2. Grant of Copyright License. Subject to the terms and conditions of + * this License, each Contributor hereby grants to You a perpetual, + * worldwide, non-exclusive, no-charge, royalty-free, irrevocable + * copyright license to reproduce, prepare Derivative Works of, + * publicly display, publicly perform, sublicense, and distribute the + * Work and such Derivative Works in Source or Object form. + * + * 3. Grant of Patent License. Subject to the terms and conditions of + * this License, each Contributor hereby grants to You a perpetual, + * worldwide, non-exclusive, no-charge, royalty-free, irrevocable + * (except as stated in this section) patent license to make, have made, + * use, offer to sell, sell, import, and otherwise transfer the Work, + * where such license applies only to those patent claims licensable + * by such Contributor that are necessarily infringed by their + * Contribution(s) alone or by combination of their Contribution(s) + * with the Work to which such Contribution(s) was submitted. If You + * institute patent litigation against any entity (including a + * cross-claim or counterclaim in a lawsuit) alleging that the Work + * or a Contribution incorporated within the Work constitutes direct + * or contributory patent infringement, then any patent licenses + * granted to You under this License for that Work shall terminate + * as of the date such litigation is filed. + * + * 4. Redistribution. You may reproduce and distribute copies of the + * Work or Derivative Works thereof in any medium, with or without + * modifications, and in Source or Object form, provided that You + * meet the following conditions: + * + * (a) You must give any other recipients of the Work or + * Derivative Works a copy of this License; and + * + * (b) You must cause any modified files to carry prominent notices + * stating that You changed the files; and + * + * (c) You must retain, in the Source form of any Derivative Works + * that You distribute, all copyright, patent, trademark, and + * attribution notices from the Source form of the Work, + * excluding those notices that do not pertain to any part of + * the Derivative Works; and + * + * (d) If the Work includes a "NOTICE" text file as part of its + * distribution, then any Derivative Works that You distribute must + * include a readable copy of the attribution notices contained + * within such NOTICE file, excluding those notices that do not + * pertain to any part of the Derivative Works, in at least one + * of the following places: within a NOTICE text file distributed + * as part of the Derivative Works; within the Source form or + * documentation, if provided along with the Derivative Works; or, + * within a display generated by the Derivative Works, if and + * wherever such third-party notices normally appear. The contents + * of the NOTICE file are for informational purposes only and + * do not modify the License. You may add Your own attribution + * notices within Derivative Works that You distribute, alongside + * or as an addendum to the NOTICE text from the Work, provided + * that such additional attribution notices cannot be construed + * as modifying the License. + * + * You may add Your own copyright statement to Your modifications and + * may provide additional or different license terms and conditions + * for use, reproduction, or distribution of Your modifications, or + * for any such Derivative Works as a whole, provided Your use, + * reproduction, and distribution of the Work otherwise complies with + * the conditions stated in this License. + * + * 5. Submission of Contributions. Unless You explicitly state otherwise, + * any Contribution intentionally submitted for inclusion in the Work + * by You to the Licensor shall be under the terms and conditions of + * this License, without any additional terms or conditions. + * Notwithstanding the above, nothing herein shall supersede or modify + * the terms of any separate license agreement you may have executed + * with Licensor regarding such Contributions. + * + * 6. Trademarks. This License does not grant permission to use the trade + * names, trademarks, service marks, or product names of the Licensor, + * except as required for reasonable and customary use in describing the + * origin of the Work and reproducing the content of the NOTICE file. + * + * 7. Disclaimer of Warranty. Unless required by applicable law or + * agreed to in writing, Licensor provides the Work (and each + * Contributor provides its Contributions) on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + * implied, including, without limitation, any warranties or conditions + * of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + * PARTICULAR PURPOSE. You are solely responsible for determining the + * appropriateness of using or redistributing the Work and assume any + * risks associated with Your exercise of permissions under this License. + * + * 8. Limitation of Liability. In no event and under no legal theory, + * whether in tort (including negligence), contract, or otherwise, + * unless required by applicable law (such as deliberate and grossly + * negligent acts) or agreed to in writing, shall any Contributor be + * liable to You for damages, including any direct, indirect, special, + * incidental, or consequential damages of any character arising as a + * result of this License or out of the use or inability to use the + * Work (including but not limited to damages for loss of goodwill, + * work stoppage, computer failure or malfunction, or any and all + * other commercial damages or losses), even if such Contributor + * has been advised of the possibility of such damages. + * + * 9. Accepting Warranty or Additional Liability. While redistributing + * the Work or Derivative Works thereof, You may choose to offer, + * and charge a fee for, acceptance of support, warranty, indemnity, + * or other liability obligations and/or rights consistent with this + * License. However, in accepting such obligations, You may act only + * on Your own behalf and on Your sole responsibility, not on behalf + * of any other Contributor, and only if You agree to indemnify, + * defend, and hold each Contributor harmless for any liability + * incurred by, or claims asserted against, such Contributor by reason + * of your accepting any such warranty or additional liability. + * + * END OF TERMS AND CONDITIONS + * + * APPENDIX: How to apply the Apache License to your work. + * + * To apply the Apache License to your work, attach the following + * boilerplate notice, with the fields enclosed by brackets "{}" + * replaced with your own identifying information. (Don't include + * the brackets!) The text should be enclosed in the appropriate + * comment syntax for the file format. We also recommend that a + * file or class name and description of purpose be included on the + * same "printed page" as the copyright notice for easier + * identification within third-party archives. + * + * Copyright 2014 Edgar Espina + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.jooby.requery; + +import io.requery.sql.EntityStateListener; +import org.jooby.Registry; + +import java.util.function.Consumer; + +class ProxyEntityStateListener implements EntityStateListener, Consumer { + + private Class type; + + private Registry registry; + + public ProxyEntityStateListener(Class type) { + this.type = type; + } + + @Override public void accept(Registry registry) { + this.registry = registry; + } + + private EntityStateListener forwarding() { + if (registry == null) { + throw new IllegalStateException("Registry was not set"); + } + return (EntityStateListener) registry.require(type); + } + + @Override public void postDelete(Object entity) { + forwarding().postDelete(entity); + } + + @Override public void postInsert(Object entity) { + forwarding().postInsert(entity); + } + + @Override public void postLoad(Object entity) { + forwarding().postLoad(entity); + } + + @Override public void postUpdate(Object entity) { + forwarding().postUpdate(entity); + } + + @Override public void preDelete(Object entity) { + forwarding().preDelete(entity); + } + + @Override public void preInsert(Object entity) { + forwarding().preInsert(entity); + } + + @Override public void preUpdate(Object entity) { + forwarding().preUpdate(entity); + } +} diff --git a/modules/jooby-requery/src/main/java/org/jooby/requery/ProxyStatementListener.java b/modules/jooby-requery/src/main/java/org/jooby/requery/ProxyStatementListener.java new file mode 100644 index 0000000000..db25ad6f30 --- /dev/null +++ b/modules/jooby-requery/src/main/java/org/jooby/requery/ProxyStatementListener.java @@ -0,0 +1,259 @@ +/** + * Apache License + * Version 2.0, January 2004 + * http://www.apache.org/licenses/ + * + * TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + * + * 1. Definitions. + * + * "License" shall mean the terms and conditions for use, reproduction, + * and distribution as defined by Sections 1 through 9 of this document. + * + * "Licensor" shall mean the copyright owner or entity authorized by + * the copyright owner that is granting the License. + * + * "Legal Entity" shall mean the union of the acting entity and all + * other entities that control, are controlled by, or are under common + * control with that entity. For the purposes of this definition, + * "control" means (i) the power, direct or indirect, to cause the + * direction or management of such entity, whether by contract or + * otherwise, or (ii) ownership of fifty percent (50%) or more of the + * outstanding shares, or (iii) beneficial ownership of such entity. + * + * "You" (or "Your") shall mean an individual or Legal Entity + * exercising permissions granted by this License. + * + * "Source" form shall mean the preferred form for making modifications, + * including but not limited to software source code, documentation + * source, and configuration files. + * + * "Object" form shall mean any form resulting from mechanical + * transformation or translation of a Source form, including but + * not limited to compiled object code, generated documentation, + * and conversions to other media types. + * + * "Work" shall mean the work of authorship, whether in Source or + * Object form, made available under the License, as indicated by a + * copyright notice that is included in or attached to the work + * (an example is provided in the Appendix below). + * + * "Derivative Works" shall mean any work, whether in Source or Object + * form, that is based on (or derived from) the Work and for which the + * editorial revisions, annotations, elaborations, or other modifications + * represent, as a whole, an original work of authorship. For the purposes + * of this License, Derivative Works shall not include works that remain + * separable from, or merely link (or bind by name) to the interfaces of, + * the Work and Derivative Works thereof. + * + * "Contribution" shall mean any work of authorship, including + * the original version of the Work and any modifications or additions + * to that Work or Derivative Works thereof, that is intentionally + * submitted to Licensor for inclusion in the Work by the copyright owner + * or by an individual or Legal Entity authorized to submit on behalf of + * the copyright owner. For the purposes of this definition, "submitted" + * means any form of electronic, verbal, or written communication sent + * to the Licensor or its representatives, including but not limited to + * communication on electronic mailing lists, source code control systems, + * and issue tracking systems that are managed by, or on behalf of, the + * Licensor for the purpose of discussing and improving the Work, but + * excluding communication that is conspicuously marked or otherwise + * designated in writing by the copyright owner as "Not a Contribution." + * + * "Contributor" shall mean Licensor and any individual or Legal Entity + * on behalf of whom a Contribution has been received by Licensor and + * subsequently incorporated within the Work. + * + * 2. Grant of Copyright License. Subject to the terms and conditions of + * this License, each Contributor hereby grants to You a perpetual, + * worldwide, non-exclusive, no-charge, royalty-free, irrevocable + * copyright license to reproduce, prepare Derivative Works of, + * publicly display, publicly perform, sublicense, and distribute the + * Work and such Derivative Works in Source or Object form. + * + * 3. Grant of Patent License. Subject to the terms and conditions of + * this License, each Contributor hereby grants to You a perpetual, + * worldwide, non-exclusive, no-charge, royalty-free, irrevocable + * (except as stated in this section) patent license to make, have made, + * use, offer to sell, sell, import, and otherwise transfer the Work, + * where such license applies only to those patent claims licensable + * by such Contributor that are necessarily infringed by their + * Contribution(s) alone or by combination of their Contribution(s) + * with the Work to which such Contribution(s) was submitted. If You + * institute patent litigation against any entity (including a + * cross-claim or counterclaim in a lawsuit) alleging that the Work + * or a Contribution incorporated within the Work constitutes direct + * or contributory patent infringement, then any patent licenses + * granted to You under this License for that Work shall terminate + * as of the date such litigation is filed. + * + * 4. Redistribution. You may reproduce and distribute copies of the + * Work or Derivative Works thereof in any medium, with or without + * modifications, and in Source or Object form, provided that You + * meet the following conditions: + * + * (a) You must give any other recipients of the Work or + * Derivative Works a copy of this License; and + * + * (b) You must cause any modified files to carry prominent notices + * stating that You changed the files; and + * + * (c) You must retain, in the Source form of any Derivative Works + * that You distribute, all copyright, patent, trademark, and + * attribution notices from the Source form of the Work, + * excluding those notices that do not pertain to any part of + * the Derivative Works; and + * + * (d) If the Work includes a "NOTICE" text file as part of its + * distribution, then any Derivative Works that You distribute must + * include a readable copy of the attribution notices contained + * within such NOTICE file, excluding those notices that do not + * pertain to any part of the Derivative Works, in at least one + * of the following places: within a NOTICE text file distributed + * as part of the Derivative Works; within the Source form or + * documentation, if provided along with the Derivative Works; or, + * within a display generated by the Derivative Works, if and + * wherever such third-party notices normally appear. The contents + * of the NOTICE file are for informational purposes only and + * do not modify the License. You may add Your own attribution + * notices within Derivative Works that You distribute, alongside + * or as an addendum to the NOTICE text from the Work, provided + * that such additional attribution notices cannot be construed + * as modifying the License. + * + * You may add Your own copyright statement to Your modifications and + * may provide additional or different license terms and conditions + * for use, reproduction, or distribution of Your modifications, or + * for any such Derivative Works as a whole, provided Your use, + * reproduction, and distribution of the Work otherwise complies with + * the conditions stated in this License. + * + * 5. Submission of Contributions. Unless You explicitly state otherwise, + * any Contribution intentionally submitted for inclusion in the Work + * by You to the Licensor shall be under the terms and conditions of + * this License, without any additional terms or conditions. + * Notwithstanding the above, nothing herein shall supersede or modify + * the terms of any separate license agreement you may have executed + * with Licensor regarding such Contributions. + * + * 6. Trademarks. This License does not grant permission to use the trade + * names, trademarks, service marks, or product names of the Licensor, + * except as required for reasonable and customary use in describing the + * origin of the Work and reproducing the content of the NOTICE file. + * + * 7. Disclaimer of Warranty. Unless required by applicable law or + * agreed to in writing, Licensor provides the Work (and each + * Contributor provides its Contributions) on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + * implied, including, without limitation, any warranties or conditions + * of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + * PARTICULAR PURPOSE. You are solely responsible for determining the + * appropriateness of using or redistributing the Work and assume any + * risks associated with Your exercise of permissions under this License. + * + * 8. Limitation of Liability. In no event and under no legal theory, + * whether in tort (including negligence), contract, or otherwise, + * unless required by applicable law (such as deliberate and grossly + * negligent acts) or agreed to in writing, shall any Contributor be + * liable to You for damages, including any direct, indirect, special, + * incidental, or consequential damages of any character arising as a + * result of this License or out of the use or inability to use the + * Work (including but not limited to damages for loss of goodwill, + * work stoppage, computer failure or malfunction, or any and all + * other commercial damages or losses), even if such Contributor + * has been advised of the possibility of such damages. + * + * 9. Accepting Warranty or Additional Liability. While redistributing + * the Work or Derivative Works thereof, You may choose to offer, + * and charge a fee for, acceptance of support, warranty, indemnity, + * or other liability obligations and/or rights consistent with this + * License. However, in accepting such obligations, You may act only + * on Your own behalf and on Your sole responsibility, not on behalf + * of any other Contributor, and only if You agree to indemnify, + * defend, and hold each Contributor harmless for any liability + * incurred by, or claims asserted against, such Contributor by reason + * of your accepting any such warranty or additional liability. + * + * END OF TERMS AND CONDITIONS + * + * APPENDIX: How to apply the Apache License to your work. + * + * To apply the Apache License to your work, attach the following + * boilerplate notice, with the fields enclosed by brackets "{}" + * replaced with your own identifying information. (Don't include + * the brackets!) The text should be enclosed in the appropriate + * comment syntax for the file format. We also recommend that a + * file or class name and description of purpose be included on the + * same "printed page" as the copyright notice for easier + * identification within third-party archives. + * + * Copyright 2014 Edgar Espina + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.jooby.requery; + +import io.requery.sql.BoundParameters; +import io.requery.sql.StatementListener; +import org.jooby.Registry; + +import java.sql.Statement; +import java.util.function.Consumer; + +class ProxyStatementListener implements StatementListener, Consumer { + + private Class type; + + private Registry registry; + + public ProxyStatementListener(Class type) { + this.type = type; + } + + private StatementListener forwarding() { + if (registry == null) { + throw new IllegalStateException("Registry was not set"); + } + return (StatementListener) registry.require(type); + } + + @Override + public void beforeExecuteUpdate(Statement statement, String sql, BoundParameters parameters) { + forwarding().beforeExecuteUpdate(statement, sql, parameters); + } + + @Override public void afterExecuteUpdate(Statement statement, int count) { + forwarding().afterExecuteUpdate(statement, count); + } + + @Override public void beforeExecuteBatchUpdate(Statement statement, String sql) { + forwarding().beforeExecuteBatchUpdate(statement, sql); + } + + @Override public void afterExecuteBatchUpdate(Statement statement, int[] count) { + forwarding().afterExecuteBatchUpdate(statement, count); + } + + @Override + public void beforeExecuteQuery(Statement statement, String sql, BoundParameters parameters) { + forwarding().beforeExecuteQuery(statement, sql, parameters); + } + + @Override public void afterExecuteQuery(Statement statement) { + forwarding().afterExecuteQuery(statement); + } + + @Override public void accept(Registry registry) { + this.registry = registry; + } +} diff --git a/modules/jooby-requery/src/main/java/org/jooby/requery/ProxyTransactionListener.java b/modules/jooby-requery/src/main/java/org/jooby/requery/ProxyTransactionListener.java new file mode 100644 index 0000000000..9c28e9085d --- /dev/null +++ b/modules/jooby-requery/src/main/java/org/jooby/requery/ProxyTransactionListener.java @@ -0,0 +1,259 @@ +/** + * Apache License + * Version 2.0, January 2004 + * http://www.apache.org/licenses/ + * + * TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + * + * 1. Definitions. + * + * "License" shall mean the terms and conditions for use, reproduction, + * and distribution as defined by Sections 1 through 9 of this document. + * + * "Licensor" shall mean the copyright owner or entity authorized by + * the copyright owner that is granting the License. + * + * "Legal Entity" shall mean the union of the acting entity and all + * other entities that control, are controlled by, or are under common + * control with that entity. For the purposes of this definition, + * "control" means (i) the power, direct or indirect, to cause the + * direction or management of such entity, whether by contract or + * otherwise, or (ii) ownership of fifty percent (50%) or more of the + * outstanding shares, or (iii) beneficial ownership of such entity. + * + * "You" (or "Your") shall mean an individual or Legal Entity + * exercising permissions granted by this License. + * + * "Source" form shall mean the preferred form for making modifications, + * including but not limited to software source code, documentation + * source, and configuration files. + * + * "Object" form shall mean any form resulting from mechanical + * transformation or translation of a Source form, including but + * not limited to compiled object code, generated documentation, + * and conversions to other media types. + * + * "Work" shall mean the work of authorship, whether in Source or + * Object form, made available under the License, as indicated by a + * copyright notice that is included in or attached to the work + * (an example is provided in the Appendix below). + * + * "Derivative Works" shall mean any work, whether in Source or Object + * form, that is based on (or derived from) the Work and for which the + * editorial revisions, annotations, elaborations, or other modifications + * represent, as a whole, an original work of authorship. For the purposes + * of this License, Derivative Works shall not include works that remain + * separable from, or merely link (or bind by name) to the interfaces of, + * the Work and Derivative Works thereof. + * + * "Contribution" shall mean any work of authorship, including + * the original version of the Work and any modifications or additions + * to that Work or Derivative Works thereof, that is intentionally + * submitted to Licensor for inclusion in the Work by the copyright owner + * or by an individual or Legal Entity authorized to submit on behalf of + * the copyright owner. For the purposes of this definition, "submitted" + * means any form of electronic, verbal, or written communication sent + * to the Licensor or its representatives, including but not limited to + * communication on electronic mailing lists, source code control systems, + * and issue tracking systems that are managed by, or on behalf of, the + * Licensor for the purpose of discussing and improving the Work, but + * excluding communication that is conspicuously marked or otherwise + * designated in writing by the copyright owner as "Not a Contribution." + * + * "Contributor" shall mean Licensor and any individual or Legal Entity + * on behalf of whom a Contribution has been received by Licensor and + * subsequently incorporated within the Work. + * + * 2. Grant of Copyright License. Subject to the terms and conditions of + * this License, each Contributor hereby grants to You a perpetual, + * worldwide, non-exclusive, no-charge, royalty-free, irrevocable + * copyright license to reproduce, prepare Derivative Works of, + * publicly display, publicly perform, sublicense, and distribute the + * Work and such Derivative Works in Source or Object form. + * + * 3. Grant of Patent License. Subject to the terms and conditions of + * this License, each Contributor hereby grants to You a perpetual, + * worldwide, non-exclusive, no-charge, royalty-free, irrevocable + * (except as stated in this section) patent license to make, have made, + * use, offer to sell, sell, import, and otherwise transfer the Work, + * where such license applies only to those patent claims licensable + * by such Contributor that are necessarily infringed by their + * Contribution(s) alone or by combination of their Contribution(s) + * with the Work to which such Contribution(s) was submitted. If You + * institute patent litigation against any entity (including a + * cross-claim or counterclaim in a lawsuit) alleging that the Work + * or a Contribution incorporated within the Work constitutes direct + * or contributory patent infringement, then any patent licenses + * granted to You under this License for that Work shall terminate + * as of the date such litigation is filed. + * + * 4. Redistribution. You may reproduce and distribute copies of the + * Work or Derivative Works thereof in any medium, with or without + * modifications, and in Source or Object form, provided that You + * meet the following conditions: + * + * (a) You must give any other recipients of the Work or + * Derivative Works a copy of this License; and + * + * (b) You must cause any modified files to carry prominent notices + * stating that You changed the files; and + * + * (c) You must retain, in the Source form of any Derivative Works + * that You distribute, all copyright, patent, trademark, and + * attribution notices from the Source form of the Work, + * excluding those notices that do not pertain to any part of + * the Derivative Works; and + * + * (d) If the Work includes a "NOTICE" text file as part of its + * distribution, then any Derivative Works that You distribute must + * include a readable copy of the attribution notices contained + * within such NOTICE file, excluding those notices that do not + * pertain to any part of the Derivative Works, in at least one + * of the following places: within a NOTICE text file distributed + * as part of the Derivative Works; within the Source form or + * documentation, if provided along with the Derivative Works; or, + * within a display generated by the Derivative Works, if and + * wherever such third-party notices normally appear. The contents + * of the NOTICE file are for informational purposes only and + * do not modify the License. You may add Your own attribution + * notices within Derivative Works that You distribute, alongside + * or as an addendum to the NOTICE text from the Work, provided + * that such additional attribution notices cannot be construed + * as modifying the License. + * + * You may add Your own copyright statement to Your modifications and + * may provide additional or different license terms and conditions + * for use, reproduction, or distribution of Your modifications, or + * for any such Derivative Works as a whole, provided Your use, + * reproduction, and distribution of the Work otherwise complies with + * the conditions stated in this License. + * + * 5. Submission of Contributions. Unless You explicitly state otherwise, + * any Contribution intentionally submitted for inclusion in the Work + * by You to the Licensor shall be under the terms and conditions of + * this License, without any additional terms or conditions. + * Notwithstanding the above, nothing herein shall supersede or modify + * the terms of any separate license agreement you may have executed + * with Licensor regarding such Contributions. + * + * 6. Trademarks. This License does not grant permission to use the trade + * names, trademarks, service marks, or product names of the Licensor, + * except as required for reasonable and customary use in describing the + * origin of the Work and reproducing the content of the NOTICE file. + * + * 7. Disclaimer of Warranty. Unless required by applicable law or + * agreed to in writing, Licensor provides the Work (and each + * Contributor provides its Contributions) on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + * implied, including, without limitation, any warranties or conditions + * of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + * PARTICULAR PURPOSE. You are solely responsible for determining the + * appropriateness of using or redistributing the Work and assume any + * risks associated with Your exercise of permissions under this License. + * + * 8. Limitation of Liability. In no event and under no legal theory, + * whether in tort (including negligence), contract, or otherwise, + * unless required by applicable law (such as deliberate and grossly + * negligent acts) or agreed to in writing, shall any Contributor be + * liable to You for damages, including any direct, indirect, special, + * incidental, or consequential damages of any character arising as a + * result of this License or out of the use or inability to use the + * Work (including but not limited to damages for loss of goodwill, + * work stoppage, computer failure or malfunction, or any and all + * other commercial damages or losses), even if such Contributor + * has been advised of the possibility of such damages. + * + * 9. Accepting Warranty or Additional Liability. While redistributing + * the Work or Derivative Works thereof, You may choose to offer, + * and charge a fee for, acceptance of support, warranty, indemnity, + * or other liability obligations and/or rights consistent with this + * License. However, in accepting such obligations, You may act only + * on Your own behalf and on Your sole responsibility, not on behalf + * of any other Contributor, and only if You agree to indemnify, + * defend, and hold each Contributor harmless for any liability + * incurred by, or claims asserted against, such Contributor by reason + * of your accepting any such warranty or additional liability. + * + * END OF TERMS AND CONDITIONS + * + * APPENDIX: How to apply the Apache License to your work. + * + * To apply the Apache License to your work, attach the following + * boilerplate notice, with the fields enclosed by brackets "{}" + * replaced with your own identifying information. (Don't include + * the brackets!) The text should be enclosed in the appropriate + * comment syntax for the file format. We also recommend that a + * file or class name and description of purpose be included on the + * same "printed page" as the copyright notice for easier + * identification within third-party archives. + * + * Copyright 2014 Edgar Espina + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.jooby.requery; + +import io.requery.TransactionIsolation; +import io.requery.TransactionListener; +import io.requery.meta.Type; +import io.requery.sql.EntityStateListener; +import org.jooby.Registry; + +import java.util.Set; +import java.util.function.Consumer; + +class ProxyTransactionListener implements TransactionListener, Consumer { + + private Class type; + + private Registry registry; + + public ProxyTransactionListener(Class type) { + this.type = type; + } + + @Override public void accept(Registry registry) { + this.registry = registry; + } + + private TransactionListener forwarding() { + if (registry == null) { + throw new IllegalStateException("Registry was not set"); + } + return (TransactionListener) registry.require(type); + } + + @Override public void beforeBegin(TransactionIsolation isolation) { + forwarding().beforeBegin(isolation); + } + + @Override public void afterBegin(TransactionIsolation isolation) { + forwarding().afterBegin(isolation); + } + + @Override public void beforeCommit(Set> types) { + forwarding().beforeCommit(types); + } + + @Override public void afterCommit(Set> types) { + forwarding().afterCommit(types); + } + + @Override public void beforeRollback(Set> types) { + forwarding().beforeRollback(types); + } + + @Override public void afterRollback(Set> types) { + forwarding().afterRollback(types); + } +} diff --git a/modules/jooby-requery/src/main/java/org/jooby/requery/Requery.java b/modules/jooby-requery/src/main/java/org/jooby/requery/Requery.java index 03cbf337a4..d79a80d48f 100644 --- a/modules/jooby-requery/src/main/java/org/jooby/requery/Requery.java +++ b/modules/jooby-requery/src/main/java/org/jooby/requery/Requery.java @@ -205,8 +205,10 @@ import com.google.inject.name.Names; import io.requery.sql.KotlinEntityDataStore; + import static java.util.Objects.requireNonNull; +import java.util.ArrayList; import java.util.LinkedList; import java.util.List; import java.util.NoSuchElementException; @@ -215,6 +217,7 @@ import java.util.function.BiConsumer; import java.util.function.Consumer; import java.util.function.Function; +import java.util.stream.Collectors; import javax.inject.Provider; import javax.sql.DataSource; @@ -222,6 +225,7 @@ import org.jooby.Env; import org.jooby.Env.ServiceKey; import org.jooby.Jooby.Module; +import org.jooby.Registry; import org.jooby.jdbc.Jdbc; import org.slf4j.bridge.SLF4JBridgeHandler; @@ -588,6 +592,28 @@ public void configure(final Env env, final Config conf, final Binder binder) { if (callback != null) { callback.accept(conf, builder); } + List> proxies = new ArrayList<>(); + statements.stream() + .map(ProxyStatementListener::new) + .forEach(proxy -> { + builder.addStatementListener(proxy); + proxies.add(proxy); + }); + + states.stream() + .map(ProxyEntityStateListener::new) + .forEach(proxy -> { + builder.addEntityStateListener(proxy); + proxies.add(proxy); + }); + + transactions.stream() + .map(ProxyTransactionListener::new) + .forEach(proxy -> { + builder.addTransactionListenerFactory(() -> proxy); + proxies.add(proxy); + }); + Configuration configuration = builder.build(); Object newStore = store.apply(configuration); @@ -611,12 +637,7 @@ public void configure(final Env env, final Config conf, final Binder binder) { env.onStart(registry -> { schema(conf, schema, schema -> new SchemaModifier(dataSource, model).createTables(schema)); - states - .forEach(t -> builder.addEntityStateListener((EntityStateListener) registry.require(t))); - statements - .forEach(t -> builder.addStatementListener((StatementListener) registry.require(t))); - transactions.forEach(t -> builder - .addTransactionListenerFactory(() -> (TransactionListener) registry.require(t))); + proxies.forEach(consumer -> consumer.accept(registry)); }); } diff --git a/modules/jooby-requery/src/test/java/org/jooby/requery/RequeryTest.java b/modules/jooby-requery/src/test/java/org/jooby/requery/RequeryTest.java index 9056df2e49..9cae624f2c 100644 --- a/modules/jooby-requery/src/test/java/org/jooby/requery/RequeryTest.java +++ b/modules/jooby-requery/src/test/java/org/jooby/requery/RequeryTest.java @@ -28,16 +28,21 @@ import io.requery.sql.StatementListener; import io.requery.sql.TableCreationMode; import io.requery.util.function.Supplier; + import static org.easymock.EasyMock.eq; import static org.easymock.EasyMock.expect; import static org.easymock.EasyMock.isA; + import org.jooby.Env; import org.jooby.Env.ServiceKey; import org.jooby.Registry; import org.jooby.test.MockUnit; import org.jooby.test.MockUnit.Block; import org.jooby.funzy.Throwing; + import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertTrue; + import org.junit.Test; import org.junit.runner.RunWith; import org.powermock.core.classloader.annotations.PrepareForTest; @@ -339,10 +344,8 @@ public void preUpdate(final Object entity) { .expect(eds) .expect(unit -> { ConfigurationBuilder builder = unit.get(ConfigurationBuilder.class); - expect(builder.addEntityStateListener(listener)).andReturn(builder); - - Registry registry = unit.get(Registry.class); - expect(registry.require(MyListener.class)).andReturn(listener); + expect(builder.addEntityStateListener(isA(ProxyEntityStateListener.class))) + .andReturn(builder); }) .run(unit -> { new Requery(unit.get(EntityModel.class)) @@ -396,10 +399,8 @@ public void afterExecuteQuery(final Statement statement) { .expect(eds) .expect(unit -> { ConfigurationBuilder builder = unit.get(ConfigurationBuilder.class); - expect(builder.addStatementListener(listener)).andReturn(builder); - - Registry registry = unit.get(Registry.class); - expect(registry.require(MyListener.class)).andReturn(listener); + expect(builder.addStatementListener(isA(ProxyStatementListener.class))) + .andReturn(builder); }) .run(unit -> { new Requery(unit.get(EntityModel.class)) @@ -453,9 +454,6 @@ public void afterRollback(final Set> types) { ConfigurationBuilder builder = unit.get(ConfigurationBuilder.class); expect(builder.addTransactionListenerFactory(unit.capture(Supplier.class))) .andReturn(builder); - - Registry registry = unit.get(Registry.class); - expect(registry.require(MyListener.class)).andReturn(listener); }) .run(unit -> { new Requery(unit.get(EntityModel.class)) @@ -464,7 +462,8 @@ public void afterRollback(final Set> types) { }, unit -> { unit.captured(Throwing.Consumer.class).iterator().next() .accept(unit.get(Registry.class)); - assertEquals(listener, unit.captured(Supplier.class).iterator().next().get()); + assertTrue(unit.captured(Supplier.class).iterator().next() + .get() instanceof ProxyTransactionListener); }); } From 56d42b22f7c78ef7b629640480ea75531ef33440 Mon Sep 17 00:00:00 2001 From: Edgar Espina Date: Mon, 15 Jul 2019 21:37:28 -0300 Subject: [PATCH 63/93] ApiTool does not work with Sub Applications fix #1300 --- .../internal/apitool/BytecodeRouteParser.java | 20 ++++++- .../src/test/java/issues/Issue1300.java | 54 +++++++++++++++++++ .../jooby-apitool/src/test/java/kt/App1300.kt | 11 ++++ .../src/test/java/kt/SubRoute1300.kt | 9 ++++ 4 files changed, 93 insertions(+), 1 deletion(-) create mode 100644 modules/jooby-apitool/src/test/java/issues/Issue1300.java create mode 100644 modules/jooby-apitool/src/test/java/kt/App1300.kt create mode 100644 modules/jooby-apitool/src/test/java/kt/SubRoute1300.kt diff --git a/modules/jooby-apitool/src/main/java/org/jooby/internal/apitool/BytecodeRouteParser.java b/modules/jooby-apitool/src/main/java/org/jooby/internal/apitool/BytecodeRouteParser.java index b71da5a8bb..07d0f6efb0 100644 --- a/modules/jooby-apitool/src/main/java/org/jooby/internal/apitool/BytecodeRouteParser.java +++ b/modules/jooby-apitool/src/main/java/org/jooby/internal/apitool/BytecodeRouteParser.java @@ -748,7 +748,25 @@ private List kotlinLambda(final ClassLoader loader, final ClassNode owne .filter(and(is(MethodInsnNode.class), opcode(INVOKESPECIAL))) .findFirst() .map(MethodInsnNode.class::cast) - .ifPresent(n -> result.addAll(lambdas(loader, loadClass(n.owner)))); + .ifPresent(n -> { + List rlist = lambdas(loader, loadClass(n.owner)); + Insn.ldcFor(n).stream() + .map(e -> e.cst.toString()) + .findFirst() + .ifPresent(prefix -> { + IntStream.range(0, rlist.size()) + .forEach(i -> { + Object o = rlist.get(i); + if (o instanceof Lambda) { + rlist.set(i, ((Lambda) o).prefix(prefix)); + } else { + RouteMethod r = (RouteMethod) o; + r.pattern(prefix + r.pattern()); + } + }); + }); + result.addAll(rlist); + }); }) // path(String) {...} .on(path(loader, "org.jooby.Kooby"), it -> { diff --git a/modules/jooby-apitool/src/test/java/issues/Issue1300.java b/modules/jooby-apitool/src/test/java/issues/Issue1300.java new file mode 100644 index 0000000000..5c4d990067 --- /dev/null +++ b/modules/jooby-apitool/src/test/java/issues/Issue1300.java @@ -0,0 +1,54 @@ +package issues; + +import kt.App1300; +import org.jooby.apitool.ApiParser; +import org.jooby.apitool.ApiToolFeature; +import org.jooby.apitool.RouteMethod; +import org.junit.Test; + +import java.util.List; + +import static org.junit.Assert.assertEquals; + +public class Issue1300 extends ApiToolFeature { + + @Test + public void apitoolDoesNotListMvcNamespaced () throws Exception { + List routes = new ApiParser(dir()).parseFully(new App1300()); + + assertEquals("---\n" + + "swagger: \"2.0\"\n" + + "tags:\n" + + "- name: \"/route\"\n" + + "- name: \"/subroute/hello\"\n" + + "consumes:\n" + + "- \"application/json\"\n" + + "produces:\n" + + "- \"application/json\"\n" + + "paths:\n" + + " /route:\n" + + " get:\n" + + " tags:\n" + + " - \"/route\"\n" + + " operationId: \"getRoute\"\n" + + " parameters: []\n" + + " responses:\n" + + " 200:\n" + + " description: \"int\"\n" + + " schema:\n" + + " type: \"integer\"\n" + + " format: \"int32\"\n" + + " /subroute/hello:\n" + + " get:\n" + + " tags:\n" + + " - \"/subroute/hello\"\n" + + " operationId: \"getSubroutehello\"\n" + + " parameters: []\n" + + " responses:\n" + + " 200:\n" + + " description: \"String\"\n" + + " schema:\n" + + " type: \"string\"\n", yaml(swagger(routes), false)); + } + +} diff --git a/modules/jooby-apitool/src/test/java/kt/App1300.kt b/modules/jooby-apitool/src/test/java/kt/App1300.kt new file mode 100644 index 0000000000..8387a96b8d --- /dev/null +++ b/modules/jooby-apitool/src/test/java/kt/App1300.kt @@ -0,0 +1,11 @@ +package kt + +import org.jooby.Kooby + +class App1300 : Kooby({ + get("route") { + 123 + } + + use("subroute", SubRoute1300()) +}) diff --git a/modules/jooby-apitool/src/test/java/kt/SubRoute1300.kt b/modules/jooby-apitool/src/test/java/kt/SubRoute1300.kt new file mode 100644 index 0000000000..08a17e8078 --- /dev/null +++ b/modules/jooby-apitool/src/test/java/kt/SubRoute1300.kt @@ -0,0 +1,9 @@ +package kt + +import org.jooby.Kooby + +class SubRoute1300 : Kooby({ + get("hello") { + "word" + } +}) From 8059a1d0898fbc42ec8c9bf0b030942c9d1e061e Mon Sep 17 00:00:00 2001 From: Edgar Espina Date: Tue, 16 Jul 2019 08:38:32 -0300 Subject: [PATCH 64/93] revert commit of Issue1312.java --- .../test/java/org/jooby/issues/Issue1312.java | 44 ------------------- 1 file changed, 44 deletions(-) delete mode 100644 modules/coverage-report/src/test/java/org/jooby/issues/Issue1312.java diff --git a/modules/coverage-report/src/test/java/org/jooby/issues/Issue1312.java b/modules/coverage-report/src/test/java/org/jooby/issues/Issue1312.java deleted file mode 100644 index 7827cca3c1..0000000000 --- a/modules/coverage-report/src/test/java/org/jooby/issues/Issue1312.java +++ /dev/null @@ -1,44 +0,0 @@ -package org.jooby.issues; - -import org.jooby.test.ServerFeature; -import org.junit.Test; - -import java.util.ArrayList; -import java.util.List; -import java.util.Optional; - -public class Issue1312 extends ServerFeature { - - public static class Person { - String name; - - String country; - - Person child; - - - @Override - public String toString() { - String data = name + " " + country; - if (child!=null) { - data += "; child {" + child.toString() + "}"; - } - return data; - } - } - - { - get("/", req -> { - return req.params(Person.class); - }); - - } - - @Test - public void rootList() throws Exception { - request() - .get("/?name=P&country=AR&child.name=X&child.country=UY") - .expect("[Pedro PicaPiedra]"); - } - -} From 924fa8f1e36333fdcf12e76a35d0518d05346db6 Mon Sep 17 00:00:00 2001 From: Edgar Espina Date: Tue, 16 Jul 2019 08:59:18 -0300 Subject: [PATCH 65/93] upgrade server dependencies --- pom.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pom.xml b/pom.xml index 9bc071b55e..7bf18c6583 100644 --- a/pom.xml +++ b/pom.xml @@ -3213,7 +3213,7 @@ org.eclipse.jdt.apt.processorOptions/defaultOverwrite=true 3.3.0 2.9.0 1.19.4 - 9.4.18.v20190429 + 9.4.19.v20190610 1.4.0 1.11.3 2.1.3 @@ -3236,7 +3236,7 @@ org.eclipse.jdt.apt.processorOptions/defaultOverwrite=true 3.4.0.52.4 3.4.0.52 3.3.2 - 4.1.36.Final + 4.1.37.Final 1.9.9 2.3.1 2.4.0 @@ -3262,7 +3262,7 @@ org.eclipse.jdt.apt.processorOptions/defaultOverwrite=true 3.17.1 1.5.20 3.0.10.RELEASE - 2.0.21.Final + 2.0.22.Final 2.1 2.4.8 0.12.1 From da5d8c4721a6b033bf23baa2f953dc8fb2288ab3 Mon Sep 17 00:00:00 2001 From: Edgar Espina Date: Tue, 16 Jul 2019 10:04:44 -0300 Subject: [PATCH 66/93] Self-signed certs not working for Netty, when they are for Jetty. fix #1272 --- jooby/src/test/java/org/jooby/test/JoobySuite.java | 2 +- modules/coverage-report/pom.xml | 6 ++++++ pom.xml | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/jooby/src/test/java/org/jooby/test/JoobySuite.java b/jooby/src/test/java/org/jooby/test/JoobySuite.java index 3038cc0ea0..33af21d698 100644 --- a/jooby/src/test/java/org/jooby/test/JoobySuite.java +++ b/jooby/src/test/java/org/jooby/test/JoobySuite.java @@ -41,7 +41,7 @@ private List runners(final Class klass) throws InitializationError { filter = server::contains; } String[] servers = {"org.jooby.undertow.Undertow", "org.jooby.jetty.Jetty", - "org.jooby.netty.Netty" }; + }; for (String server : servers) { try { Class serverClass = getClass().getClassLoader().loadClass(server); diff --git a/modules/coverage-report/pom.xml b/modules/coverage-report/pom.xml index 7d343f7167..8adb69cb54 100644 --- a/modules/coverage-report/pom.xml +++ b/modules/coverage-report/pom.xml @@ -1168,6 +1168,12 @@ org.jooby jooby-netty ${project.version} + + + io.netty + netty-tcnative-boringssl-static + + diff --git a/pom.xml b/pom.xml index 7bf18c6583..43c18028c9 100644 --- a/pom.xml +++ b/pom.xml @@ -3160,7 +3160,7 @@ org.eclipse.jdt.apt.processorOptions/defaultOverwrite=true 2.1.2 1.11.358 3.3.4 - 2.0.20.Final + 2.0.25.Final 2.9.2 2.6.2 1.1 From 5212e261fe91ae85429631bb4a0825038d8186e6 Mon Sep 17 00:00:00 2001 From: Edgar Espina Date: Tue, 16 Jul 2019 11:30:22 -0300 Subject: [PATCH 67/93] If Accept is not perfect gzon will seralize the wrong thing. fix #930 --- .../test/java/org/jooby/test/JoobySuite.java | 2 +- .../test/java/org/jooby/issues/Issue930.java | 30 +++++++++++++++++++ 2 files changed, 31 insertions(+), 1 deletion(-) create mode 100644 modules/coverage-report/src/test/java/org/jooby/issues/Issue930.java diff --git a/jooby/src/test/java/org/jooby/test/JoobySuite.java b/jooby/src/test/java/org/jooby/test/JoobySuite.java index 33af21d698..3038cc0ea0 100644 --- a/jooby/src/test/java/org/jooby/test/JoobySuite.java +++ b/jooby/src/test/java/org/jooby/test/JoobySuite.java @@ -41,7 +41,7 @@ private List runners(final Class klass) throws InitializationError { filter = server::contains; } String[] servers = {"org.jooby.undertow.Undertow", "org.jooby.jetty.Jetty", - }; + "org.jooby.netty.Netty" }; for (String server : servers) { try { Class serverClass = getClass().getClassLoader().loadClass(server); diff --git a/modules/coverage-report/src/test/java/org/jooby/issues/Issue930.java b/modules/coverage-report/src/test/java/org/jooby/issues/Issue930.java new file mode 100644 index 0000000000..abe2f362d5 --- /dev/null +++ b/modules/coverage-report/src/test/java/org/jooby/issues/Issue930.java @@ -0,0 +1,30 @@ +package org.jooby.issues; + +import com.typesafe.config.ConfigFactory; +import com.typesafe.config.ConfigValueFactory; +import org.jooby.json.Gzon; +import org.jooby.json.Jackson; +import org.jooby.test.ServerFeature; +import org.junit.Test; + +public class Issue930 extends ServerFeature { + + { + use(ConfigFactory.empty().withValue("application.env", ConfigValueFactory.fromAnyRef("prod"))); + use(new Gzon()); + } + + @Test + public void gzonRenderJsonWithWideAcceptIsPresent() throws Exception { + request() + .get("/930") + .header("Accept", "application/json, */*") + .expect("{\"message\":\"Not Found(404): /930\",\"status\":404,\"reason\":\"Not Found\"}"); + + request() + .get("/930") + .header("Accept", "application/json") + .expect("{\"message\":\"Not Found(404): /930\",\"status\":404,\"reason\":\"Not Found\"}"); + } + +} From 766081ed44ee84392f187d7b09e0e28fa989a505 Mon Sep 17 00:00:00 2001 From: Edgar Espina Date: Tue, 16 Jul 2019 13:22:56 -0300 Subject: [PATCH 68/93] v1.6.3 --- README.md | 4 ++-- jooby/pom.xml | 2 +- modules/coverage-report/pom.xml | 2 +- modules/jooby-akka/README.md | 6 +++--- modules/jooby-akka/pom.xml | 2 +- modules/jooby-apitool/README.md | 8 ++++---- modules/jooby-apitool/pom.xml | 2 +- modules/jooby-archetype/pom.xml | 2 +- modules/jooby-assets-autoprefixer/README.md | 6 +++--- modules/jooby-assets-autoprefixer/pom.xml | 2 +- modules/jooby-assets-babel/README.md | 8 ++++---- modules/jooby-assets-babel/pom.xml | 2 +- modules/jooby-assets-clean-css/README.md | 6 +++--- modules/jooby-assets-clean-css/pom.xml | 2 +- modules/jooby-assets-closure-compiler/README.md | 6 +++--- modules/jooby-assets-closure-compiler/pom.xml | 2 +- modules/jooby-assets-csslint/README.md | 6 +++--- modules/jooby-assets-csslint/pom.xml | 2 +- modules/jooby-assets-j2v8/pom.xml | 2 +- modules/jooby-assets-jscs/README.md | 6 +++--- modules/jooby-assets-jscs/pom.xml | 2 +- modules/jooby-assets-jshint/README.md | 6 +++--- modules/jooby-assets-jshint/pom.xml | 2 +- modules/jooby-assets-less/README.md | 6 +++--- modules/jooby-assets-less/pom.xml | 2 +- modules/jooby-assets-less4j/README.md | 6 +++--- modules/jooby-assets-less4j/pom.xml | 2 +- modules/jooby-assets-ng-annotate/README.md | 6 +++--- modules/jooby-assets-ng-annotate/pom.xml | 2 +- modules/jooby-assets-nodejs/pom.xml | 2 +- modules/jooby-assets-requirejs/README.md | 6 +++--- modules/jooby-assets-requirejs/pom.xml | 2 +- modules/jooby-assets-rollup/README.md | 6 +++--- modules/jooby-assets-rollup/pom.xml | 2 +- modules/jooby-assets-sass/README.md | 6 +++--- modules/jooby-assets-sass/pom.xml | 2 +- modules/jooby-assets-svg-sprites/README.md | 6 +++--- modules/jooby-assets-svg-sprites/pom.xml | 2 +- modules/jooby-assets-svg-symbol/README.md | 6 +++--- modules/jooby-assets-svg-symbol/pom.xml | 2 +- modules/jooby-assets-uglify/README.md | 6 +++--- modules/jooby-assets-uglify/pom.xml | 2 +- modules/jooby-assets-yui-compressor/README.md | 6 +++--- modules/jooby-assets-yui-compressor/pom.xml | 2 +- modules/jooby-assets/README.md | 6 +++--- modules/jooby-assets/pom.xml | 2 +- modules/jooby-aws/README.md | 6 +++--- modules/jooby-aws/pom.xml | 2 +- modules/jooby-banner/README.md | 6 +++--- modules/jooby-banner/pom.xml | 2 +- modules/jooby-bom/pom.xml | 14 +++++++------- modules/jooby-caffeine/README.md | 6 +++--- modules/jooby-caffeine/pom.xml | 2 +- modules/jooby-camel/README.md | 6 +++--- modules/jooby-camel/pom.xml | 2 +- modules/jooby-cassandra/README.md | 8 ++++---- modules/jooby-cassandra/pom.xml | 2 +- modules/jooby-commons-email/README.md | 6 +++--- modules/jooby-commons-email/pom.xml | 2 +- modules/jooby-consul/README.md | 6 +++--- modules/jooby-consul/pom.xml | 2 +- modules/jooby-couchbase/README.md | 8 ++++---- modules/jooby-couchbase/pom.xml | 2 +- modules/jooby-crash/README.md | 6 +++--- modules/jooby-crash/pom.xml | 2 +- modules/jooby-csl/README.md | 6 +++--- modules/jooby-csl/pom.xml | 2 +- modules/jooby-dist/pom.xml | 2 +- modules/jooby-ebean/README.md | 6 +++--- modules/jooby-ebean/pom.xml | 2 +- modules/jooby-ehcache/README.md | 8 ++++---- modules/jooby-ehcache/pom.xml | 2 +- modules/jooby-elasticsearch/README.md | 6 +++--- modules/jooby-elasticsearch/pom.xml | 2 +- modules/jooby-eventbus/README.md | 6 +++--- modules/jooby-eventbus/pom.xml | 2 +- modules/jooby-executor/README.md | 6 +++--- modules/jooby-executor/pom.xml | 2 +- modules/jooby-exposed/README.md | 4 ++-- modules/jooby-exposed/pom.xml | 2 +- modules/jooby-filewatcher/README.md | 6 +++--- modules/jooby-filewatcher/pom.xml | 2 +- modules/jooby-flyway/README.md | 6 +++--- modules/jooby-flyway/pom.xml | 2 +- modules/jooby-frontend/README.md | 6 +++--- modules/jooby-frontend/pom.xml | 2 +- modules/jooby-ftl/README.md | 6 +++--- modules/jooby-ftl/pom.xml | 2 +- modules/jooby-gradle-plugin/README.md | 6 +++--- modules/jooby-gradle-plugin/pom.xml | 2 +- modules/jooby-gson/README.md | 6 +++--- modules/jooby-gson/pom.xml | 2 +- modules/jooby-guava-cache/README.md | 8 ++++---- modules/jooby-guava-cache/pom.xml | 2 +- modules/jooby-hazelcast/README.md | 8 ++++---- modules/jooby-hazelcast/pom.xml | 2 +- modules/jooby-hbm/README.md | 6 +++--- modules/jooby-hbm/pom.xml | 2 +- modules/jooby-hbs/README.md | 6 +++--- modules/jooby-hbs/pom.xml | 2 +- modules/jooby-hbv/README.md | 6 +++--- modules/jooby-hbv/pom.xml | 2 +- modules/jooby-jackson/README.md | 6 +++--- modules/jooby-jackson/pom.xml | 2 +- modules/jooby-jade/README.md | 6 +++--- modules/jooby-jade/pom.xml | 2 +- modules/jooby-jdbc/README.md | 6 +++--- modules/jooby-jdbc/pom.xml | 2 +- modules/jooby-jdbi/README.md | 6 +++--- modules/jooby-jdbi/pom.xml | 2 +- modules/jooby-jdbi3/README.md | 6 +++--- modules/jooby-jdbi3/pom.xml | 2 +- modules/jooby-jedis/README.md | 8 ++++---- modules/jooby-jedis/pom.xml | 2 +- modules/jooby-jetty/README.md | 6 +++--- modules/jooby-jetty/pom.xml | 2 +- modules/jooby-jongo/README.md | 6 +++--- modules/jooby-jongo/pom.xml | 2 +- modules/jooby-jooq/README.md | 6 +++--- modules/jooby-jooq/pom.xml | 2 +- modules/jooby-lang-kotlin/README.md | 6 +++--- modules/jooby-lang-kotlin/pom.xml | 2 +- modules/jooby-livereload/README.md | 6 +++--- modules/jooby-livereload/pom.xml | 2 +- modules/jooby-maven-plugin/README.md | 10 +++++----- modules/jooby-maven-plugin/pom.xml | 2 +- modules/jooby-metrics/README.md | 6 +++--- modules/jooby-metrics/pom.xml | 2 +- modules/jooby-micrometer/README.md | 6 +++--- modules/jooby-micrometer/pom.xml | 2 +- modules/jooby-mongodb-rx/README.md | 6 +++--- modules/jooby-mongodb-rx/pom.xml | 2 +- modules/jooby-mongodb/README.md | 8 ++++---- modules/jooby-mongodb/pom.xml | 2 +- modules/jooby-morphia/README.md | 6 +++--- modules/jooby-morphia/pom.xml | 2 +- modules/jooby-neo4j/README.md | 8 ++++---- modules/jooby-neo4j/pom.xml | 2 +- modules/jooby-netty/README.md | 6 +++--- modules/jooby-netty/pom.xml | 2 +- modules/jooby-pac4j/README.md | 6 +++--- modules/jooby-pac4j/pom.xml | 2 +- modules/jooby-pac4j2/README.md | 6 +++--- modules/jooby-pac4j2/pom.xml | 2 +- modules/jooby-pebble/README.md | 6 +++--- modules/jooby-pebble/pom.xml | 2 +- modules/jooby-quartz/README.md | 6 +++--- modules/jooby-quartz/pom.xml | 2 +- modules/jooby-querydsl/README.md | 6 +++--- modules/jooby-querydsl/pom.xml | 2 +- modules/jooby-reactor/README.md | 6 +++--- modules/jooby-reactor/pom.xml | 2 +- modules/jooby-requery/README.md | 6 +++--- modules/jooby-requery/pom.xml | 2 +- modules/jooby-rocker/README.md | 6 +++--- modules/jooby-rocker/pom.xml | 2 +- modules/jooby-run/pom.xml | 2 +- modules/jooby-rxjava-jdbc/README.md | 6 +++--- modules/jooby-rxjava-jdbc/pom.xml | 2 +- modules/jooby-rxjava/README.md | 6 +++--- modules/jooby-rxjava/pom.xml | 2 +- modules/jooby-scanner/README.md | 6 +++--- modules/jooby-scanner/pom.xml | 2 +- modules/jooby-servlet/README.md | 4 ++-- modules/jooby-servlet/pom.xml | 2 +- modules/jooby-sitemap/README.md | 6 +++--- modules/jooby-sitemap/pom.xml | 2 +- modules/jooby-spymemcached/README.md | 8 ++++---- modules/jooby-spymemcached/pom.xml | 2 +- modules/jooby-thymeleaf/README.md | 6 +++--- modules/jooby-thymeleaf/pom.xml | 2 +- modules/jooby-unbescape/README.md | 6 +++--- modules/jooby-unbescape/pom.xml | 2 +- modules/jooby-undertow/README.md | 6 +++--- modules/jooby-undertow/pom.xml | 2 +- modules/jooby-whoops/README.md | 6 +++--- modules/jooby-whoops/pom.xml | 2 +- modules/jooby-yasson/README.md | 6 +++--- modules/jooby-yasson/pom.xml | 2 +- modules/pom.xml | 2 +- pom.xml | 2 +- 181 files changed, 369 insertions(+), 369 deletions(-) diff --git a/README.md b/README.md index a394443379..a5c448f40f 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby.svg)](https://javadoc.io/doc/org.jooby/jooby/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby.svg)](https://javadoc.io/doc/org.jooby/jooby/1.6.3) [![Become a Patreon](https://img.shields.io/badge/patreon-donate-orange.svg)](https://patreon.com/edgarespina) [![Build Status](https://travis-ci.org/jooby-project/jooby.svg?branch=master)](https://travis-ci.org/jooby-project/jooby) [![coveralls.io](https://img.shields.io/coveralls/jooby-project/jooby.svg)](https://coveralls.io/r/jooby-project/jooby?branch=master) diff --git a/jooby/pom.xml b/jooby/pom.xml index 831bd830ed..292143088b 100644 --- a/jooby/pom.xml +++ b/jooby/pom.xml @@ -6,7 +6,7 @@ org.jooby jooby-project - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/coverage-report/pom.xml b/modules/coverage-report/pom.xml index 8adb69cb54..58a800d323 100644 --- a/modules/coverage-report/pom.xml +++ b/modules/coverage-report/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-akka/README.md b/modules/jooby-akka/README.md index 7dbc19b9d7..aa0a444d69 100644 --- a/modules/jooby-akka/README.md +++ b/modules/jooby-akka/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-akka/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-akka/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-akka.svg)](https://javadoc.io/doc/org.jooby/jooby-akka/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-akka/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-akka/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-akka.svg)](https://javadoc.io/doc/org.jooby/jooby-akka/1.6.3) [![jooby-akka website](https://img.shields.io/badge/jooby-akka-brightgreen.svg)](http://jooby.org/doc/akka) # akka @@ -15,7 +15,7 @@ Small module to build concurrent & distributed applications via [Akka](http://ak org.jooby jooby-akka - 1.6.2 + 1.6.3 ``` diff --git a/modules/jooby-akka/pom.xml b/modules/jooby-akka/pom.xml index f45fc80133..f9adbe2534 100644 --- a/modules/jooby-akka/pom.xml +++ b/modules/jooby-akka/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-apitool/README.md b/modules/jooby-apitool/README.md index 25c82a0c4d..b7be1de2b3 100644 --- a/modules/jooby-apitool/README.md +++ b/modules/jooby-apitool/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-apitool/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-apitool/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-apitool.svg)](https://javadoc.io/doc/org.jooby/jooby-apitool/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-apitool/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-apitool/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-apitool.svg)](https://javadoc.io/doc/org.jooby/jooby-apitool/1.6.3) [![jooby-apitool website](https://img.shields.io/badge/jooby-apitool-brightgreen.svg)](http://jooby.org/doc/apitool) # API tool @@ -23,7 +23,7 @@ This module generates live documentation from your HTTP API (source code). org.jooby jooby-apitool - 1.6.2 + 1.6.3 ``` @@ -187,7 +187,7 @@ Go to ```build.gradle``` and add these lines: ```gradke buildscript { dependencies { - classpath group: 'org.jooby', name: 'jooby-gradle-plugin', version: '1.6.2' + classpath group: 'org.jooby', name: 'jooby-gradle-plugin', version: '1.6.3' } } apply plugin: 'jooby' diff --git a/modules/jooby-apitool/pom.xml b/modules/jooby-apitool/pom.xml index 96b7177969..f5e2e1ae78 100644 --- a/modules/jooby-apitool/pom.xml +++ b/modules/jooby-apitool/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-archetype/pom.xml b/modules/jooby-archetype/pom.xml index cc552e64df..22026513c2 100644 --- a/modules/jooby-archetype/pom.xml +++ b/modules/jooby-archetype/pom.xml @@ -7,7 +7,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 jooby-archetype diff --git a/modules/jooby-assets-autoprefixer/README.md b/modules/jooby-assets-autoprefixer/README.md index 7f64b14c9d..41030c1c1f 100644 --- a/modules/jooby-assets-autoprefixer/README.md +++ b/modules/jooby-assets-autoprefixer/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-autoprefixer/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-autoprefixer/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-autoprefixer.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-autoprefixer/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-autoprefixer/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-autoprefixer/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-autoprefixer.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-autoprefixer/1.6.3) [![jooby-assets-autoprefixer website](https://img.shields.io/badge/jooby-assets-autoprefixer-brightgreen.svg)](http://jooby.org/doc/assets-autoprefixer) # auto-prefixer @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-autoprefixer - 1.6.2 + 1.6.3 provided ``` diff --git a/modules/jooby-assets-autoprefixer/pom.xml b/modules/jooby-assets-autoprefixer/pom.xml index 7465326fad..88d4590133 100644 --- a/modules/jooby-assets-autoprefixer/pom.xml +++ b/modules/jooby-assets-autoprefixer/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-assets-babel/README.md b/modules/jooby-assets-babel/README.md index b9a4e6e969..e314cae710 100644 --- a/modules/jooby-assets-babel/README.md +++ b/modules/jooby-assets-babel/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-babel/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-babel/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-babel.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-babel/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-babel/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-babel/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-babel.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-babel/1.6.3) [![jooby-assets-babel website](https://img.shields.io/badge/jooby-assets-babel-brightgreen.svg)](http://jooby.org/doc/assets-babel) # babel @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-babel - 1.6.2 + 1.6.3 provided ``` @@ -38,7 +38,7 @@ assets { org.jooby jooby-assets-babel - 1.6.2 + 1.6.3 provided ``` diff --git a/modules/jooby-assets-babel/pom.xml b/modules/jooby-assets-babel/pom.xml index 90bf1e9da5..a0f85bb55f 100644 --- a/modules/jooby-assets-babel/pom.xml +++ b/modules/jooby-assets-babel/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-assets-clean-css/README.md b/modules/jooby-assets-clean-css/README.md index 33cd9803f6..7ea116d798 100644 --- a/modules/jooby-assets-clean-css/README.md +++ b/modules/jooby-assets-clean-css/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-clean-css/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-clean-css/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-clean-css.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-clean-css/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-clean-css/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-clean-css/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-clean-css.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-clean-css/1.6.3) [![jooby-assets-clean-css website](https://img.shields.io/badge/jooby-assets-clean-css-brightgreen.svg)](http://jooby.org/doc/assets-clean-css) # clean-css @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-clean-css - 1.6.2 + 1.6.3 provided ``` diff --git a/modules/jooby-assets-clean-css/pom.xml b/modules/jooby-assets-clean-css/pom.xml index 6979128c9b..abb0b35525 100644 --- a/modules/jooby-assets-clean-css/pom.xml +++ b/modules/jooby-assets-clean-css/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-assets-closure-compiler/README.md b/modules/jooby-assets-closure-compiler/README.md index aae2bfa54a..13a26c89a4 100644 --- a/modules/jooby-assets-closure-compiler/README.md +++ b/modules/jooby-assets-closure-compiler/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-closure-compiler/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-closure-compiler/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-closure-compiler.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-closure-compiler/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-closure-compiler/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-closure-compiler/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-closure-compiler.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-closure-compiler/1.6.3) [![jooby-assets-closure-compiler website](https://img.shields.io/badge/jooby-assets-closure-compiler-brightgreen.svg)](http://jooby.org/doc/assets-closure-compiler) # closure-compiler @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-closure-compiler - 1.6.2 + 1.6.3 provided ``` diff --git a/modules/jooby-assets-closure-compiler/pom.xml b/modules/jooby-assets-closure-compiler/pom.xml index b9fe60aac2..02ee107be1 100644 --- a/modules/jooby-assets-closure-compiler/pom.xml +++ b/modules/jooby-assets-closure-compiler/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-assets-csslint/README.md b/modules/jooby-assets-csslint/README.md index 43a8443c61..5558e8ca51 100644 --- a/modules/jooby-assets-csslint/README.md +++ b/modules/jooby-assets-csslint/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-csslint/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-csslint/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-csslint.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-csslint/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-csslint/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-csslint/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-csslint.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-csslint/1.6.3) [![jooby-assets-csslint website](https://img.shields.io/badge/jooby-assets-csslint-brightgreen.svg)](http://jooby.org/doc/assets-csslint) # csslint @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-csslint - 1.6.2 + 1.6.3 provided ``` diff --git a/modules/jooby-assets-csslint/pom.xml b/modules/jooby-assets-csslint/pom.xml index ecf57083fb..a064084766 100644 --- a/modules/jooby-assets-csslint/pom.xml +++ b/modules/jooby-assets-csslint/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-assets-j2v8/pom.xml b/modules/jooby-assets-j2v8/pom.xml index 781e636bd2..dd7d1c6c9b 100644 --- a/modules/jooby-assets-j2v8/pom.xml +++ b/modules/jooby-assets-j2v8/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-assets-jscs/README.md b/modules/jooby-assets-jscs/README.md index 4d80791e98..0800232a93 100644 --- a/modules/jooby-assets-jscs/README.md +++ b/modules/jooby-assets-jscs/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-jscs/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-jscs/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-jscs.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-jscs/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-jscs/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-jscs/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-jscs.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-jscs/1.6.3) [![jooby-assets-jscs website](https://img.shields.io/badge/jooby-assets-jscs-brightgreen.svg)](http://jooby.org/doc/assets-jscs) # jscs @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-jscs - 1.6.2 + 1.6.3 provided ``` diff --git a/modules/jooby-assets-jscs/pom.xml b/modules/jooby-assets-jscs/pom.xml index ec39e50b57..23906f3fed 100644 --- a/modules/jooby-assets-jscs/pom.xml +++ b/modules/jooby-assets-jscs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-assets-jshint/README.md b/modules/jooby-assets-jshint/README.md index c5c4994b0c..2d39627a11 100644 --- a/modules/jooby-assets-jshint/README.md +++ b/modules/jooby-assets-jshint/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-jshint/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-jshint/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-jshint.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-jshint/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-jshint/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-jshint/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-jshint.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-jshint/1.6.3) [![jooby-assets-jshint website](https://img.shields.io/badge/jooby-assets-jshint-brightgreen.svg)](http://jooby.org/doc/assets-jshint) # jshint @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-jshint - 1.6.2 + 1.6.3 provided ``` diff --git a/modules/jooby-assets-jshint/pom.xml b/modules/jooby-assets-jshint/pom.xml index 9bf2020b58..99dce64a37 100644 --- a/modules/jooby-assets-jshint/pom.xml +++ b/modules/jooby-assets-jshint/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-assets-less/README.md b/modules/jooby-assets-less/README.md index a50aaaad10..62d8c79f3a 100644 --- a/modules/jooby-assets-less/README.md +++ b/modules/jooby-assets-less/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-less/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-less/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-less.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-less/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-less/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-less/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-less.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-less/1.6.3) [![jooby-assets-less website](https://img.shields.io/badge/jooby-assets-less-brightgreen.svg)](http://jooby.org/doc/assets-less) # less @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-less - 1.6.2 + 1.6.3 provided ``` diff --git a/modules/jooby-assets-less/pom.xml b/modules/jooby-assets-less/pom.xml index 582b7788a5..00366e5f7d 100644 --- a/modules/jooby-assets-less/pom.xml +++ b/modules/jooby-assets-less/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-assets-less4j/README.md b/modules/jooby-assets-less4j/README.md index bff27ed29d..bdcf94f7ec 100644 --- a/modules/jooby-assets-less4j/README.md +++ b/modules/jooby-assets-less4j/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-less4j/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-less4j/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-less4j.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-less4j/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-less4j/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-less4j/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-less4j.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-less4j/1.6.3) [![jooby-assets-less4j website](https://img.shields.io/badge/jooby-assets-less4j-brightgreen.svg)](http://jooby.org/doc/assets-less4j) # less4j @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-less4j - 1.6.2 + 1.6.3 provided ``` diff --git a/modules/jooby-assets-less4j/pom.xml b/modules/jooby-assets-less4j/pom.xml index 244a5e5cde..2266013968 100644 --- a/modules/jooby-assets-less4j/pom.xml +++ b/modules/jooby-assets-less4j/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-assets-ng-annotate/README.md b/modules/jooby-assets-ng-annotate/README.md index d2ebae2ec2..b160806db1 100644 --- a/modules/jooby-assets-ng-annotate/README.md +++ b/modules/jooby-assets-ng-annotate/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-ng-annotate/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-ng-annotate/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-ng-annotate.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-ng-annotate/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-ng-annotate/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-ng-annotate/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-ng-annotate.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-ng-annotate/1.6.3) [![jooby-assets-ng-annotate website](https://img.shields.io/badge/jooby-assets-ng-annotate-brightgreen.svg)](http://jooby.org/doc/assets-ng-annotate) # ng-annotate @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-ng-annotate - 1.6.2 + 1.6.3 provided ``` diff --git a/modules/jooby-assets-ng-annotate/pom.xml b/modules/jooby-assets-ng-annotate/pom.xml index aa30e77ebc..1214a46f3e 100644 --- a/modules/jooby-assets-ng-annotate/pom.xml +++ b/modules/jooby-assets-ng-annotate/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-assets-nodejs/pom.xml b/modules/jooby-assets-nodejs/pom.xml index b47b4db586..1a966718cf 100644 --- a/modules/jooby-assets-nodejs/pom.xml +++ b/modules/jooby-assets-nodejs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-assets-requirejs/README.md b/modules/jooby-assets-requirejs/README.md index 8818bf3f3e..4a6d3324a0 100644 --- a/modules/jooby-assets-requirejs/README.md +++ b/modules/jooby-assets-requirejs/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-requirejs/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-requirejs/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-requirejs.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-requirejs/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-requirejs/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-requirejs/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-requirejs.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-requirejs/1.6.3) [![jooby-assets-requirejs website](https://img.shields.io/badge/jooby-assets-requirejs-brightgreen.svg)](http://jooby.org/doc/assets-requirejs) # rjs @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-requirejs - 1.6.2 + 1.6.3 provided ``` diff --git a/modules/jooby-assets-requirejs/pom.xml b/modules/jooby-assets-requirejs/pom.xml index 605a03280b..45f34aebf9 100644 --- a/modules/jooby-assets-requirejs/pom.xml +++ b/modules/jooby-assets-requirejs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-assets-rollup/README.md b/modules/jooby-assets-rollup/README.md index ece176f4d6..3ac6224ef3 100644 --- a/modules/jooby-assets-rollup/README.md +++ b/modules/jooby-assets-rollup/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-rollup/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-rollup/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-rollup.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-rollup/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-rollup/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-rollup/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-rollup.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-rollup/1.6.3) [![jooby-assets-rollup website](https://img.shields.io/badge/jooby-assets-rollup-brightgreen.svg)](http://jooby.org/doc/assets-rollup) # rollup.js @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-rollup.js - 1.6.2 + 1.6.3 provided ``` diff --git a/modules/jooby-assets-rollup/pom.xml b/modules/jooby-assets-rollup/pom.xml index 85073030e8..9a684468aa 100644 --- a/modules/jooby-assets-rollup/pom.xml +++ b/modules/jooby-assets-rollup/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-assets-sass/README.md b/modules/jooby-assets-sass/README.md index b3f1e7e9e3..ee871a7358 100644 --- a/modules/jooby-assets-sass/README.md +++ b/modules/jooby-assets-sass/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-sass/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-sass/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-sass.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-sass/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-sass/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-sass/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-sass.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-sass/1.6.3) [![jooby-assets-sass website](https://img.shields.io/badge/jooby-assets-sass-brightgreen.svg)](http://jooby.org/doc/assets-sass) # sass @@ -13,7 +13,7 @@ org.jooby jooby-assets-sass - 1.6.2 + 1.6.3 provided ``` diff --git a/modules/jooby-assets-sass/pom.xml b/modules/jooby-assets-sass/pom.xml index f3c7d0df51..376b1b68bb 100644 --- a/modules/jooby-assets-sass/pom.xml +++ b/modules/jooby-assets-sass/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-assets-svg-sprites/README.md b/modules/jooby-assets-svg-sprites/README.md index 1a71f416c4..8d3afeafae 100644 --- a/modules/jooby-assets-svg-sprites/README.md +++ b/modules/jooby-assets-svg-sprites/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-svg-sprites/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-svg-sprites/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-svg-sprites.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-svg-sprites/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-svg-sprites/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-svg-sprites/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-svg-sprites.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-svg-sprites/1.6.3) [![jooby-assets-svg-sprites website](https://img.shields.io/badge/jooby-assets-svg-sprites-brightgreen.svg)](http://jooby.org/doc/assets-svg-sprites) # svg-sprites @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-svg-sprites - 1.6.2 + 1.6.3 provided ``` diff --git a/modules/jooby-assets-svg-sprites/pom.xml b/modules/jooby-assets-svg-sprites/pom.xml index 569d3f4b04..798b55eb5c 100644 --- a/modules/jooby-assets-svg-sprites/pom.xml +++ b/modules/jooby-assets-svg-sprites/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-assets-svg-symbol/README.md b/modules/jooby-assets-svg-symbol/README.md index aac4f6f16c..c838ac9701 100644 --- a/modules/jooby-assets-svg-symbol/README.md +++ b/modules/jooby-assets-svg-symbol/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-svg-symbol/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-svg-symbol/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-svg-symbol.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-svg-symbol/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-svg-symbol/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-svg-symbol/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-svg-symbol.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-svg-symbol/1.6.3) [![jooby-assets-svg-symbol website](https://img.shields.io/badge/jooby-assets-svg-symbol-brightgreen.svg)](http://jooby.org/doc/assets-svg-symbol) # svg-symbol @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-svg-symbol - 1.6.2 + 1.6.3 provided ``` diff --git a/modules/jooby-assets-svg-symbol/pom.xml b/modules/jooby-assets-svg-symbol/pom.xml index db18fac22c..be3aae332b 100644 --- a/modules/jooby-assets-svg-symbol/pom.xml +++ b/modules/jooby-assets-svg-symbol/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-assets-uglify/README.md b/modules/jooby-assets-uglify/README.md index 23b9fcd90b..78857f45fa 100644 --- a/modules/jooby-assets-uglify/README.md +++ b/modules/jooby-assets-uglify/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-uglify/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-uglify/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-uglify.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-uglify/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-uglify/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-uglify/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-uglify.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-uglify/1.6.3) [![jooby-assets-uglify website](https://img.shields.io/badge/jooby-assets-uglify-brightgreen.svg)](http://jooby.org/doc/assets-uglify) # uglify @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-uglify - 1.6.2 + 1.6.3 provided ``` diff --git a/modules/jooby-assets-uglify/pom.xml b/modules/jooby-assets-uglify/pom.xml index d3d20f488c..f26b6abc3e 100644 --- a/modules/jooby-assets-uglify/pom.xml +++ b/modules/jooby-assets-uglify/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-assets-yui-compressor/README.md b/modules/jooby-assets-yui-compressor/README.md index 5a44fd09f0..984a513844 100644 --- a/modules/jooby-assets-yui-compressor/README.md +++ b/modules/jooby-assets-yui-compressor/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-yui-compressor/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-yui-compressor/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-yui-compressor.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-yui-compressor/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-yui-compressor/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-yui-compressor/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-yui-compressor.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-yui-compressor/1.6.3) [![jooby-assets-yui-compressor website](https://img.shields.io/badge/jooby-assets-yui-compressor-brightgreen.svg)](http://jooby.org/doc/assets-yui-compressor) # yui-css @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-yui-compressor - 1.6.2 + 1.6.3 provided ``` diff --git a/modules/jooby-assets-yui-compressor/pom.xml b/modules/jooby-assets-yui-compressor/pom.xml index c9e79b5306..7ef6366605 100644 --- a/modules/jooby-assets-yui-compressor/pom.xml +++ b/modules/jooby-assets-yui-compressor/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-assets/README.md b/modules/jooby-assets/README.md index eee5a69653..cde96ba230 100644 --- a/modules/jooby-assets/README.md +++ b/modules/jooby-assets/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets.svg)](https://javadoc.io/doc/org.jooby/jooby-assets/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets.svg)](https://javadoc.io/doc/org.jooby/jooby-assets/1.6.3) [![jooby-assets website](https://img.shields.io/badge/jooby-assets-brightgreen.svg)](http://jooby.org/doc/assets) # assets @@ -13,7 +13,7 @@ A variety of processors are available: ([jshint](https://github.com/jooby-projec org.jooby jooby-assets - 1.6.2 + 1.6.3 ``` diff --git a/modules/jooby-assets/pom.xml b/modules/jooby-assets/pom.xml index 64c3d7a518..ebcb457626 100644 --- a/modules/jooby-assets/pom.xml +++ b/modules/jooby-assets/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-aws/README.md b/modules/jooby-aws/README.md index 05349c78e1..aa2b59cf14 100644 --- a/modules/jooby-aws/README.md +++ b/modules/jooby-aws/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-aws/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-aws/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-aws.svg)](https://javadoc.io/doc/org.jooby/jooby-aws/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-aws/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-aws/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-aws.svg)](https://javadoc.io/doc/org.jooby/jooby-aws/1.6.3) [![jooby-aws website](https://img.shields.io/badge/jooby-aws-brightgreen.svg)](http://jooby.org/doc/aws) # aws @@ -15,7 +15,7 @@ Small utility module that exports ```AmazonWebServiceClient``` services. org.jooby jooby-aws - 1.6.2 + 1.6.3 ``` diff --git a/modules/jooby-aws/pom.xml b/modules/jooby-aws/pom.xml index 997ae7d970..656fe470d5 100644 --- a/modules/jooby-aws/pom.xml +++ b/modules/jooby-aws/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-banner/README.md b/modules/jooby-banner/README.md index f5f8e96216..eb5c97f4cc 100644 --- a/modules/jooby-banner/README.md +++ b/modules/jooby-banner/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-banner/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-banner/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-banner.svg)](https://javadoc.io/doc/org.jooby/jooby-banner/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-banner/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-banner/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-banner.svg)](https://javadoc.io/doc/org.jooby/jooby-banner/1.6.3) [![jooby-banner website](https://img.shields.io/badge/jooby-banner-brightgreen.svg)](http://jooby.org/doc/banner) # banner @@ -11,7 +11,7 @@ Prints out an ASCII art banner on startup using org.jooby jooby-caffeine - 1.6.2 + 1.6.3 ``` diff --git a/modules/jooby-caffeine/pom.xml b/modules/jooby-caffeine/pom.xml index 942ff63f6d..d2afdc40e7 100644 --- a/modules/jooby-caffeine/pom.xml +++ b/modules/jooby-caffeine/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-camel/README.md b/modules/jooby-camel/README.md index 7e2ab12cba..182cd7a3b7 100644 --- a/modules/jooby-camel/README.md +++ b/modules/jooby-camel/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-camel/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-camel/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-camel.svg)](https://javadoc.io/doc/org.jooby/jooby-camel/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-camel/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-camel/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-camel.svg)](https://javadoc.io/doc/org.jooby/jooby-camel/1.6.3) [![jooby-camel website](https://img.shields.io/badge/jooby-camel-brightgreen.svg)](http://jooby.org/doc/camel) # camel @@ -26,7 +26,7 @@ depend on [camel-guice](http://camel.apache.org/guice.html), but it provides sim org.jooby jooby-camel - 1.6.2 + 1.6.3 ``` diff --git a/modules/jooby-camel/pom.xml b/modules/jooby-camel/pom.xml index c31748d5d6..41f1e27826 100644 --- a/modules/jooby-camel/pom.xml +++ b/modules/jooby-camel/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-cassandra/README.md b/modules/jooby-cassandra/README.md index 9d72443bd1..bcf2aaacd0 100644 --- a/modules/jooby-cassandra/README.md +++ b/modules/jooby-cassandra/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-cassandra/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-cassandra/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-cassandra.svg)](https://javadoc.io/doc/org.jooby/jooby-cassandra/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-cassandra/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-cassandra/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-cassandra.svg)](https://javadoc.io/doc/org.jooby/jooby-cassandra/1.6.3) [![jooby-cassandra website](https://img.shields.io/badge/jooby-cassandra-brightgreen.svg)](http://jooby.org/doc/cassandra) # cassandra @@ -13,7 +13,7 @@ This module offers cassandra database org.jooby jooby-cassandra - 1.6.2 + 1.6.3 ``` @@ -211,7 +211,7 @@ A [Session.Store](/apidocs/org/jooby/cassandra/CassandraSessionStore.html) power org.jooby jooby-cassandra - 1.6.2 + 1.6.3 ``` diff --git a/modules/jooby-cassandra/pom.xml b/modules/jooby-cassandra/pom.xml index 5bc14b9380..5346861689 100644 --- a/modules/jooby-cassandra/pom.xml +++ b/modules/jooby-cassandra/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-commons-email/README.md b/modules/jooby-commons-email/README.md index 8b2ef71a40..564f2a6f74 100644 --- a/modules/jooby-commons-email/README.md +++ b/modules/jooby-commons-email/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-commons-email/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-commons-email/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-commons-email.svg)](https://javadoc.io/doc/org.jooby/jooby-commons-email/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-commons-email/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-commons-email/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-commons-email.svg)](https://javadoc.io/doc/org.jooby/jooby-commons-email/1.6.3) [![jooby-commons-email website](https://img.shields.io/badge/jooby-commons-email-brightgreen.svg)](http://jooby.org/doc/commons-email) # commons-email @@ -19,7 +19,7 @@ Small but helpful module that provides access to ```Email``` instances. org.jooby jooby-commons-email - 1.6.2 + 1.6.3 ``` diff --git a/modules/jooby-commons-email/pom.xml b/modules/jooby-commons-email/pom.xml index 9766be00a2..71b179d70e 100644 --- a/modules/jooby-commons-email/pom.xml +++ b/modules/jooby-commons-email/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-consul/README.md b/modules/jooby-consul/README.md index a42fcafb89..8aaf5595f4 100644 --- a/modules/jooby-consul/README.md +++ b/modules/jooby-consul/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-consul/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-consul/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-consul.svg)](https://javadoc.io/doc/org.jooby/jooby-consul/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-consul/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-consul/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-consul.svg)](https://javadoc.io/doc/org.jooby/jooby-consul/1.6.3) [![jooby-consul website](https://img.shields.io/badge/jooby-consul-brightgreen.svg)](http://jooby.org/doc/consul) # consul @@ -15,7 +15,7 @@ Also register the application as a service and setup a health check. org.jooby jooby-consul - 1.6.2 + 1.6.3 ``` diff --git a/modules/jooby-consul/pom.xml b/modules/jooby-consul/pom.xml index a70a0bde3f..3ed11087ad 100644 --- a/modules/jooby-consul/pom.xml +++ b/modules/jooby-consul/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-couchbase/README.md b/modules/jooby-couchbase/README.md index 2579e52ab0..e8af6c3af7 100644 --- a/modules/jooby-couchbase/README.md +++ b/modules/jooby-couchbase/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-couchbase/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-couchbase/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-couchbase.svg)](https://javadoc.io/doc/org.jooby/jooby-couchbase/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-couchbase/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-couchbase/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-couchbase.svg)](https://javadoc.io/doc/org.jooby/jooby-couchbase/1.6.3) [![jooby-couchbase website](https://img.shields.io/badge/jooby-couchbase-brightgreen.svg)](http://jooby.org/doc/couchbase) # couchbase @@ -13,7 +13,7 @@ This module provides couchbase access via org.jooby jooby-couchbase - 1.6.2 + 1.6.3 ``` @@ -307,7 +307,7 @@ A [Session.Store](/apidocs/org/jooby/couchbase/CouchbaseSessionStore) powered by org.jooby jooby-couchbase - 1.6.2 + 1.6.3 ``` diff --git a/modules/jooby-couchbase/pom.xml b/modules/jooby-couchbase/pom.xml index 575ba4a390..7a498cbd57 100644 --- a/modules/jooby-couchbase/pom.xml +++ b/modules/jooby-couchbase/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-crash/README.md b/modules/jooby-crash/README.md index 2364a8f4e8..23481b8d09 100644 --- a/modules/jooby-crash/README.md +++ b/modules/jooby-crash/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-crash/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-crash/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-crash.svg)](https://javadoc.io/doc/org.jooby/jooby-crash/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-crash/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-crash/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-crash.svg)](https://javadoc.io/doc/org.jooby/jooby-crash/1.6.3) [![jooby-crash website](https://img.shields.io/badge/jooby-crash-brightgreen.svg)](http://jooby.org/doc/crash) # crash @@ -11,7 +11,7 @@ org.jooby jooby-crash - 1.6.2 + 1.6.3 ``` diff --git a/modules/jooby-crash/pom.xml b/modules/jooby-crash/pom.xml index 625c0d77ff..abbfb3530a 100644 --- a/modules/jooby-crash/pom.xml +++ b/modules/jooby-crash/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-csl/README.md b/modules/jooby-csl/README.md index f308b5553d..9cb783d7bd 100644 --- a/modules/jooby-csl/README.md +++ b/modules/jooby-csl/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-csl/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-csl/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-csl.svg)](https://javadoc.io/doc/org.jooby/jooby-csl/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-csl/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-csl/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-csl.svg)](https://javadoc.io/doc/org.jooby/jooby-csl/1.6.3) [![jooby-csl website](https://img.shields.io/badge/jooby-csl-brightgreen.svg)](http://jooby.org/doc/csl) # csl @@ -11,7 +11,7 @@ org.jooby jooby-csl - 1.6.2 + 1.6.3 ``` diff --git a/modules/jooby-csl/pom.xml b/modules/jooby-csl/pom.xml index dbb517848c..4b371b64a8 100644 --- a/modules/jooby-csl/pom.xml +++ b/modules/jooby-csl/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-dist/pom.xml b/modules/jooby-dist/pom.xml index d379495548..ddc832d1ce 100644 --- a/modules/jooby-dist/pom.xml +++ b/modules/jooby-dist/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-ebean/README.md b/modules/jooby-ebean/README.md index fe4d24f2dc..1c01186579 100644 --- a/modules/jooby-ebean/README.md +++ b/modules/jooby-ebean/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-ebean/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-ebean/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-ebean.svg)](https://javadoc.io/doc/org.jooby/jooby-ebean/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-ebean/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-ebean/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-ebean.svg)](https://javadoc.io/doc/org.jooby/jooby-ebean/1.6.3) [![jooby-ebean website](https://img.shields.io/badge/jooby-ebean-brightgreen.svg)](http://jooby.org/doc/ebean) # ebean @@ -17,7 +17,7 @@ Object-Relational-Mapping via [Ebean ORM](http://ebean-orm.github.io). It config org.jooby jooby-ebean - 1.6.2 + 1.6.3 ``` diff --git a/modules/jooby-ebean/pom.xml b/modules/jooby-ebean/pom.xml index bdd43364d2..0edbae95e6 100644 --- a/modules/jooby-ebean/pom.xml +++ b/modules/jooby-ebean/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-ehcache/README.md b/modules/jooby-ehcache/README.md index 08875bb632..fa7e9a021f 100644 --- a/modules/jooby-ehcache/README.md +++ b/modules/jooby-ehcache/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-ehcache/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-ehcache/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-ehcache.svg)](https://javadoc.io/doc/org.jooby/jooby-ehcache/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-ehcache/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-ehcache/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-ehcache.svg)](https://javadoc.io/doc/org.jooby/jooby-ehcache/1.6.3) [![jooby-ehcache website](https://img.shields.io/badge/jooby-ehcache-brightgreen.svg)](http://jooby.org/doc/ehcache) # ehcache @@ -16,7 +16,7 @@ Provides advanced cache features via [Ehcache](http://ehcache.org) org.jooby jooby-ehcache - 1.6.2 + 1.6.3 ``` @@ -120,7 +120,7 @@ Please note the ```default``` cache works as a template and isn't a real/usable org.jooby jooby-ehcache - 1.6.2 + 1.6.3 ``` diff --git a/modules/jooby-ehcache/pom.xml b/modules/jooby-ehcache/pom.xml index 658c4f3d7d..5c17f62abd 100644 --- a/modules/jooby-ehcache/pom.xml +++ b/modules/jooby-ehcache/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-elasticsearch/README.md b/modules/jooby-elasticsearch/README.md index 4cd9276dc1..e827093fd0 100644 --- a/modules/jooby-elasticsearch/README.md +++ b/modules/jooby-elasticsearch/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-elasticsearch/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-elasticsearch/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-elasticsearch.svg)](https://javadoc.io/doc/org.jooby/jooby-elasticsearch/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-elasticsearch/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-elasticsearch/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-elasticsearch.svg)](https://javadoc.io/doc/org.jooby/jooby-elasticsearch/1.6.3) [![jooby-elasticsearch website](https://img.shields.io/badge/jooby-elasticsearch-brightgreen.svg)](http://jooby.org/doc/elasticsearch) # elasticsearch @@ -15,7 +15,7 @@ Open Source, Distributed, RESTful Search Engine via [Elastic Search](https://git org.jooby jooby-elasticsearch - 1.6.2 + 1.6.3 ``` diff --git a/modules/jooby-elasticsearch/pom.xml b/modules/jooby-elasticsearch/pom.xml index 8e213e4d1d..a2f3f09e04 100644 --- a/modules/jooby-elasticsearch/pom.xml +++ b/modules/jooby-elasticsearch/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-eventbus/README.md b/modules/jooby-eventbus/README.md index 807447b119..7bf2f648ef 100644 --- a/modules/jooby-eventbus/README.md +++ b/modules/jooby-eventbus/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-eventbus/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-eventbus/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-eventbus.svg)](https://javadoc.io/doc/org.jooby/jooby-eventbus/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-eventbus/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-eventbus/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-eventbus.svg)](https://javadoc.io/doc/org.jooby/jooby-eventbus/1.6.3) [![jooby-eventbus website](https://img.shields.io/badge/jooby-eventbus-brightgreen.svg)](http://jooby.org/doc/eventbus) # EventBus @@ -15,7 +15,7 @@ org.jooby jooby-eventbus - 1.6.2 + 1.6.3 ``` diff --git a/modules/jooby-eventbus/pom.xml b/modules/jooby-eventbus/pom.xml index 433e113d23..8de28163e4 100644 --- a/modules/jooby-eventbus/pom.xml +++ b/modules/jooby-eventbus/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-executor/README.md b/modules/jooby-executor/README.md index aa69f07e69..8316134b8b 100644 --- a/modules/jooby-executor/README.md +++ b/modules/jooby-executor/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-executor/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-executor/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-executor.svg)](https://javadoc.io/doc/org.jooby/jooby-executor/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-executor/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-executor/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-executor.svg)](https://javadoc.io/doc/org.jooby/jooby-executor/1.6.3) [![jooby-executor website](https://img.shields.io/badge/jooby-executor-brightgreen.svg)](http://jooby.org/doc/executor) # executor @@ -15,7 +15,7 @@ Manage the life cycle of {@link ExecutorService} and build async apps, schedule org.jooby jooby-executor - 1.6.2 + 1.6.3 ``` diff --git a/modules/jooby-executor/pom.xml b/modules/jooby-executor/pom.xml index 54478c5563..982a33293b 100644 --- a/modules/jooby-executor/pom.xml +++ b/modules/jooby-executor/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-exposed/README.md b/modules/jooby-exposed/README.md index 6e07046cbb..fd60aeeea8 100644 --- a/modules/jooby-exposed/README.md +++ b/modules/jooby-exposed/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-exposed/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-exposed/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-exposed.svg)](https://javadoc.io/doc/org.jooby/jooby-exposed/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-exposed/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-exposed/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-exposed.svg)](https://javadoc.io/doc/org.jooby/jooby-exposed/1.6.3) [![jooby-exposed website](https://img.shields.io/badge/jooby-exposed-brightgreen.svg)](http://jooby.org/doc/exposed) # exposed diff --git a/modules/jooby-exposed/pom.xml b/modules/jooby-exposed/pom.xml index 67881f01b7..b554ab030a 100644 --- a/modules/jooby-exposed/pom.xml +++ b/modules/jooby-exposed/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-filewatcher/README.md b/modules/jooby-filewatcher/README.md index 05c410b781..b07c874838 100644 --- a/modules/jooby-filewatcher/README.md +++ b/modules/jooby-filewatcher/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-filewatcher/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-filewatcher/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-filewatcher.svg)](https://javadoc.io/doc/org.jooby/jooby-filewatcher/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-filewatcher/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-filewatcher/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-filewatcher.svg)](https://javadoc.io/doc/org.jooby/jooby-filewatcher/1.6.3) [![jooby-filewatcher website](https://img.shields.io/badge/jooby-filewatcher-brightgreen.svg)](http://jooby.org/doc/filewatcher) # file watcher @@ -11,7 +11,7 @@ Watches for file system changes or event. It uses a watch service to monitor a d org.jooby jooby-file watcher - 1.6.2 + 1.6.3 ``` diff --git a/modules/jooby-filewatcher/pom.xml b/modules/jooby-filewatcher/pom.xml index 59d18296ae..a52b39a4e5 100644 --- a/modules/jooby-filewatcher/pom.xml +++ b/modules/jooby-filewatcher/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-flyway/README.md b/modules/jooby-flyway/README.md index fc7acadb04..8ad082cf0e 100644 --- a/modules/jooby-flyway/README.md +++ b/modules/jooby-flyway/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-flyway/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-flyway/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-flyway.svg)](https://javadoc.io/doc/org.jooby/jooby-flyway/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-flyway/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-flyway/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-flyway.svg)](https://javadoc.io/doc/org.jooby/jooby-flyway/1.6.3) [![jooby-flyway website](https://img.shields.io/badge/jooby-flyway-brightgreen.svg)](http://jooby.org/doc/flyway) # flyway @@ -15,7 +15,7 @@ This module run [Flyway](http://flywaydb.org) on startup and apply database migr org.jooby jooby-flyway - 1.6.2 + 1.6.3 ``` diff --git a/modules/jooby-flyway/pom.xml b/modules/jooby-flyway/pom.xml index a8c8f7c163..19c90318ec 100644 --- a/modules/jooby-flyway/pom.xml +++ b/modules/jooby-flyway/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-frontend/README.md b/modules/jooby-frontend/README.md index c38c564a7e..813fd65a13 100644 --- a/modules/jooby-frontend/README.md +++ b/modules/jooby-frontend/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-frontend/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-frontend/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-frontend.svg)](https://javadoc.io/doc/org.jooby/jooby-frontend/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-frontend/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-frontend/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-frontend.svg)](https://javadoc.io/doc/org.jooby/jooby-frontend/1.6.3) [![jooby-frontend website](https://img.shields.io/badge/jooby-frontend-brightgreen.svg)](http://jooby.org/doc/frontend) # frontend @@ -12,7 +12,7 @@ runs npm, w org.jooby jooby-frontend - 1.6.2 + 1.6.3 ``` diff --git a/modules/jooby-frontend/pom.xml b/modules/jooby-frontend/pom.xml index 671c08dc9c..3300ca59f4 100644 --- a/modules/jooby-frontend/pom.xml +++ b/modules/jooby-frontend/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-ftl/README.md b/modules/jooby-ftl/README.md index 441296bb90..ea93b3425e 100644 --- a/modules/jooby-ftl/README.md +++ b/modules/jooby-ftl/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-ftl/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-ftl/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-ftl.svg)](https://javadoc.io/doc/org.jooby/jooby-ftl/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-ftl/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-ftl/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-ftl.svg)](https://javadoc.io/doc/org.jooby/jooby-ftl/1.6.3) [![jooby-ftl website](https://img.shields.io/badge/jooby-ftl-brightgreen.svg)](http://jooby.org/doc/ftl) # freemarker @@ -16,7 +16,7 @@ org.jooby jooby-ftl - 1.6.2 + 1.6.3 ``` diff --git a/modules/jooby-ftl/pom.xml b/modules/jooby-ftl/pom.xml index 6d0bedf397..704fee33b6 100644 --- a/modules/jooby-ftl/pom.xml +++ b/modules/jooby-ftl/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-gradle-plugin/README.md b/modules/jooby-gradle-plugin/README.md index 47ab36ae7c..54096132d1 100644 --- a/modules/jooby-gradle-plugin/README.md +++ b/modules/jooby-gradle-plugin/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-gradle-plugin/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-gradle-plugin/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-gradle-plugin.svg)](https://javadoc.io/doc/org.jooby/jooby-gradle-plugin/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-gradle-plugin/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-gradle-plugin/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-gradle-plugin.svg)](https://javadoc.io/doc/org.jooby/jooby-gradle-plugin/1.6.3) [![jooby-gradle-plugin website](https://img.shields.io/badge/jooby-gradle-plugin-brightgreen.svg)](http://jooby.org/doc/gradle-plugin) # gradle plugin @@ -21,7 +21,7 @@ buildscript { dependencies { /** joobyRun */ - classpath group: 'org.jooby', name: 'jooby-gradle-plugin', version: '1.6.2' + classpath group: 'org.jooby', name: 'jooby-gradle-plugin', version: '1.6.3' } } diff --git a/modules/jooby-gradle-plugin/pom.xml b/modules/jooby-gradle-plugin/pom.xml index 08f66c8678..702a56a0f0 100644 --- a/modules/jooby-gradle-plugin/pom.xml +++ b/modules/jooby-gradle-plugin/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-gson/README.md b/modules/jooby-gson/README.md index 1391d37fb2..e799f59ecc 100644 --- a/modules/jooby-gson/README.md +++ b/modules/jooby-gson/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-gson/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-gson/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-gson.svg)](https://javadoc.io/doc/org.jooby/jooby-gson/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-gson/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-gson/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-gson.svg)](https://javadoc.io/doc/org.jooby/jooby-gson/1.6.3) [![jooby-gson website](https://img.shields.io/badge/jooby-gson-brightgreen.svg)](http://jooby.org/doc/gson) # gson @@ -17,7 +17,7 @@ JSON support via [Gson](https://github.com/google/gson) library. org.jooby jooby-gson - 1.6.2 + 1.6.3 ``` diff --git a/modules/jooby-gson/pom.xml b/modules/jooby-gson/pom.xml index ff5568bb82..8361974ff1 100644 --- a/modules/jooby-gson/pom.xml +++ b/modules/jooby-gson/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-guava-cache/README.md b/modules/jooby-guava-cache/README.md index ebf1cff68b..8981c037b4 100644 --- a/modules/jooby-guava-cache/README.md +++ b/modules/jooby-guava-cache/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-guava-cache/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-guava-cache/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-guava-cache.svg)](https://javadoc.io/doc/org.jooby/jooby-guava-cache/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-guava-cache/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-guava-cache/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-guava-cache.svg)](https://javadoc.io/doc/org.jooby/jooby-guava-cache/1.6.3) [![jooby-guava-cache website](https://img.shields.io/badge/jooby-guava-cache-brightgreen.svg)](http://jooby.org/doc/guava-cache) # guava-cache @@ -15,7 +15,7 @@ Provides cache solution and session storage via: Hibernate ORM org.jooby jooby-hbm - 1.6.2 + 1.6.3 ``` diff --git a/modules/jooby-hbm/pom.xml b/modules/jooby-hbm/pom.xml index 6899967d37..4ebd5b7a21 100644 --- a/modules/jooby-hbm/pom.xml +++ b/modules/jooby-hbm/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-hbs/README.md b/modules/jooby-hbs/README.md index 5eeb58628d..766590b995 100644 --- a/modules/jooby-hbs/README.md +++ b/modules/jooby-hbs/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-hbs/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-hbs/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-hbs.svg)](https://javadoc.io/doc/org.jooby/jooby-hbs/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-hbs/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-hbs/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-hbs.svg)](https://javadoc.io/doc/org.jooby/jooby-hbs/1.6.3) [![jooby-hbs website](https://img.shields.io/badge/jooby-hbs-brightgreen.svg)](http://jooby.org/doc/hbs) # handlebars @@ -16,7 +16,7 @@ Logic-less and semantic templates via [Handlebars.java](https://github.com/jknac org.jooby jooby-hbs - 1.6.2 + 1.6.3 ``` diff --git a/modules/jooby-hbs/pom.xml b/modules/jooby-hbs/pom.xml index 2547523625..f4ca06fdbe 100644 --- a/modules/jooby-hbs/pom.xml +++ b/modules/jooby-hbs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-hbv/README.md b/modules/jooby-hbv/README.md index 61b8edb16b..25de9b34d6 100644 --- a/modules/jooby-hbv/README.md +++ b/modules/jooby-hbv/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-hbv/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-hbv/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-hbv.svg)](https://javadoc.io/doc/org.jooby/jooby-hbv/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-hbv/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-hbv/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-hbv.svg)](https://javadoc.io/doc/org.jooby/jooby-hbv/1.6.3) [![jooby-hbv website](https://img.shields.io/badge/jooby-hbv-brightgreen.svg)](http://jooby.org/doc/hbv) # hibernate validator @@ -17,7 +17,7 @@ Bean validation via [Hibernate Validator](hibernate.org/validator). org.jooby jooby-hbv - 1.6.2 + 1.6.3 ``` diff --git a/modules/jooby-hbv/pom.xml b/modules/jooby-hbv/pom.xml index 8eb2734d2b..b4df2cf538 100644 --- a/modules/jooby-hbv/pom.xml +++ b/modules/jooby-hbv/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-jackson/README.md b/modules/jooby-jackson/README.md index 06613ec760..6800c07c29 100644 --- a/modules/jooby-jackson/README.md +++ b/modules/jooby-jackson/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jackson/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jackson/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jackson.svg)](https://javadoc.io/doc/org.jooby/jooby-jackson/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jackson/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jackson/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jackson.svg)](https://javadoc.io/doc/org.jooby/jooby-jackson/1.6.3) [![jooby-jackson website](https://img.shields.io/badge/jooby-jackson-brightgreen.svg)](http://jooby.org/doc/jackson) # jackson @@ -17,7 +17,7 @@ JSON support from the excellent [Jackson](https://github.com/FasterXML/jackson) org.jooby jooby-jackson - 1.6.2 + 1.6.3 ``` diff --git a/modules/jooby-jackson/pom.xml b/modules/jooby-jackson/pom.xml index 2abebfe020..775fcba0ca 100644 --- a/modules/jooby-jackson/pom.xml +++ b/modules/jooby-jackson/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-jade/README.md b/modules/jooby-jade/README.md index bf9fc04cca..134dafc9f6 100644 --- a/modules/jooby-jade/README.md +++ b/modules/jooby-jade/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jade/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jade/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jade.svg)](https://javadoc.io/doc/org.jooby/jooby-jade/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jade/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jade/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jade.svg)](https://javadoc.io/doc/org.jooby/jooby-jade/1.6.3) [![jooby-jade website](https://img.shields.io/badge/jooby-jade-brightgreen.svg)](http://jooby.org/doc/jade) # jade @@ -16,7 +16,7 @@ org.jooby jooby-jade - 1.6.2 + 1.6.3 ``` diff --git a/modules/jooby-jade/pom.xml b/modules/jooby-jade/pom.xml index 2f418c0b51..d9078e1e0b 100644 --- a/modules/jooby-jade/pom.xml +++ b/modules/jooby-jade/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-jdbc/README.md b/modules/jooby-jdbc/README.md index c51d33c7ad..cb0eb37700 100644 --- a/modules/jooby-jdbc/README.md +++ b/modules/jooby-jdbc/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jdbc/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jdbc/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jdbc.svg)](https://javadoc.io/doc/org.jooby/jooby-jdbc/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jdbc/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jdbc/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jdbc.svg)](https://javadoc.io/doc/org.jooby/jooby-jdbc/1.6.3) [![jooby-jdbc website](https://img.shields.io/badge/jooby-jdbc-brightgreen.svg)](http://jooby.org/doc/jdbc) # jdbc @@ -15,7 +15,7 @@ Production-ready jdbc data source, powered by the [HikariCP](https://github.com/ org.jooby jooby-jdbc - 1.6.2 + 1.6.3 ``` diff --git a/modules/jooby-jdbc/pom.xml b/modules/jooby-jdbc/pom.xml index a25111d8c7..879854f2a6 100644 --- a/modules/jooby-jdbc/pom.xml +++ b/modules/jooby-jdbc/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-jdbi/README.md b/modules/jooby-jdbi/README.md index b674706774..34200f989e 100644 --- a/modules/jooby-jdbi/README.md +++ b/modules/jooby-jdbi/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jdbi/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jdbi/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jdbi.svg)](https://javadoc.io/doc/org.jooby/jooby-jdbi/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jdbi/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jdbi/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jdbi.svg)](https://javadoc.io/doc/org.jooby/jooby-jdbi/1.6.3) [![jooby-jdbi website](https://img.shields.io/badge/jooby-jdbi-brightgreen.svg)](http://jooby.org/doc/jdbi) # jdbi @@ -21,7 +21,7 @@ org.jooby jooby-jdbi - 1.6.2 + 1.6.3 ``` diff --git a/modules/jooby-jdbi/pom.xml b/modules/jooby-jdbi/pom.xml index 1e18410a0c..c680e89f6f 100644 --- a/modules/jooby-jdbi/pom.xml +++ b/modules/jooby-jdbi/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-jdbi3/README.md b/modules/jooby-jdbi3/README.md index 33799883cd..20bdc8451c 100644 --- a/modules/jooby-jdbi3/README.md +++ b/modules/jooby-jdbi3/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jdbi3/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jdbi3/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jdbi3.svg)](https://javadoc.io/doc/org.jooby/jooby-jdbi3/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jdbi3/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jdbi3/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jdbi3.svg)](https://javadoc.io/doc/org.jooby/jooby-jdbi3/1.6.3) [![jooby-jdbi3 website](https://img.shields.io/badge/jooby-jdbi3-brightgreen.svg)](http://jooby.org/doc/jdbi3) # jdbi @@ -17,7 +17,7 @@ org.jooby jooby-jdbi3 - 1.6.2 + 1.6.3 ``` diff --git a/modules/jooby-jdbi3/pom.xml b/modules/jooby-jdbi3/pom.xml index 1dc1334019..ec6a0d9a72 100644 --- a/modules/jooby-jdbi3/pom.xml +++ b/modules/jooby-jdbi3/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-jedis/README.md b/modules/jooby-jedis/README.md index ab1a360780..aee5a1807e 100644 --- a/modules/jooby-jedis/README.md +++ b/modules/jooby-jedis/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jedis/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jedis/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jedis.svg)](https://javadoc.io/doc/org.jooby/jooby-jedis/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jedis/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jedis/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jedis.svg)](https://javadoc.io/doc/org.jooby/jooby-jedis/1.6.3) [![jooby-jedis website](https://img.shields.io/badge/jooby-jedis-brightgreen.svg)](http://jooby.org/doc/jedis) # jedis @@ -11,7 +11,7 @@ org.jooby jooby-jedis - 1.6.2 + 1.6.3 ``` @@ -99,7 +99,7 @@ For more information about [Jedis](https://github.com/xetorthio/jedis) checkout org.jooby jooby-jedis - 1.6.2 + 1.6.3 ``` diff --git a/modules/jooby-jedis/pom.xml b/modules/jooby-jedis/pom.xml index 734879ca81..99eba5ba57 100644 --- a/modules/jooby-jedis/pom.xml +++ b/modules/jooby-jedis/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-jetty/README.md b/modules/jooby-jetty/README.md index eb087354b7..bbed612e6c 100644 --- a/modules/jooby-jetty/README.md +++ b/modules/jooby-jetty/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jetty/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jetty/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jetty.svg)](https://javadoc.io/doc/org.jooby/jooby-jetty/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jetty/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jetty/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jetty.svg)](https://javadoc.io/doc/org.jooby/jooby-jetty/1.6.3) [![jooby-jetty website](https://img.shields.io/badge/jooby-jetty-brightgreen.svg)](http://jooby.org/doc/jetty) # jetty @@ -15,7 +15,7 @@ org.jooby jooby-jetty - 1.6.2 + 1.6.3 ``` diff --git a/modules/jooby-jetty/pom.xml b/modules/jooby-jetty/pom.xml index 6fc13d82f1..2da15070a1 100644 --- a/modules/jooby-jetty/pom.xml +++ b/modules/jooby-jetty/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-jongo/README.md b/modules/jooby-jongo/README.md index a258c4f285..3b8ae1bb05 100644 --- a/modules/jooby-jongo/README.md +++ b/modules/jooby-jongo/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jongo/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jongo/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jongo.svg)](https://javadoc.io/doc/org.jooby/jooby-jongo/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jongo/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jongo/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jongo.svg)](https://javadoc.io/doc/org.jooby/jooby-jongo/1.6.3) [![jooby-jongo website](https://img.shields.io/badge/jooby-jongo-brightgreen.svg)](http://jooby.org/doc/jongo) # jongo @@ -17,7 +17,7 @@ org.jooby jooby-jongo - 1.6.2 + 1.6.3 ``` diff --git a/modules/jooby-jongo/pom.xml b/modules/jooby-jongo/pom.xml index 205da6799e..b07194249b 100644 --- a/modules/jooby-jongo/pom.xml +++ b/modules/jooby-jongo/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-jooq/README.md b/modules/jooby-jooq/README.md index cbd85428e3..09509eaefb 100644 --- a/modules/jooby-jooq/README.md +++ b/modules/jooby-jooq/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jooq/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jooq/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jooq.svg)](https://javadoc.io/doc/org.jooby/jooby-jooq/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jooq/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jooq/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jooq.svg)](https://javadoc.io/doc/org.jooby/jooby-jooq/1.6.3) [![jooby-jooq website](https://img.shields.io/badge/jooby-jooq-brightgreen.svg)](http://jooby.org/doc/jooq) # jOOQ @@ -17,7 +17,7 @@ org.jooby jooby-jooq - 1.6.2 + 1.6.3 ``` diff --git a/modules/jooby-jooq/pom.xml b/modules/jooby-jooq/pom.xml index 23040fced2..dbf7ae811d 100644 --- a/modules/jooby-jooq/pom.xml +++ b/modules/jooby-jooq/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-lang-kotlin/README.md b/modules/jooby-lang-kotlin/README.md index edda71fc19..28261f9645 100644 --- a/modules/jooby-lang-kotlin/README.md +++ b/modules/jooby-lang-kotlin/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-lang-kotlin/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-lang-kotlin/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-lang-kotlin.svg)](https://javadoc.io/doc/org.jooby/jooby-lang-kotlin/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-lang-kotlin/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-lang-kotlin/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-lang-kotlin.svg)](https://javadoc.io/doc/org.jooby/jooby-lang-kotlin/1.6.3) [![jooby-lang-kotlin website](https://img.shields.io/badge/jooby-lang-kotlin-brightgreen.svg)](http://jooby.org/doc/lang-kotlin) # kotlin @@ -11,7 +11,7 @@ A tiny module that makes a Jooby application more Kotlin idiomatic. org.jooby jooby-lang-kotlin - 1.6.2 + 1.6.3 ``` diff --git a/modules/jooby-lang-kotlin/pom.xml b/modules/jooby-lang-kotlin/pom.xml index a00cd9bb4b..32b27cf7fd 100644 --- a/modules/jooby-lang-kotlin/pom.xml +++ b/modules/jooby-lang-kotlin/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-livereload/README.md b/modules/jooby-livereload/README.md index 9d4dc20d1b..0a6ccdd4d1 100644 --- a/modules/jooby-livereload/README.md +++ b/modules/jooby-livereload/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-livereload/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-livereload/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-livereload.svg)](https://javadoc.io/doc/org.jooby/jooby-livereload/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-livereload/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-livereload/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-livereload.svg)](https://javadoc.io/doc/org.jooby/jooby-livereload/1.6.3) [![jooby-livereload website](https://img.shields.io/badge/jooby-livereload-brightgreen.svg)](http://jooby.org/doc/livereload) # liveReload @@ -18,7 +18,7 @@ Even cooler, when you change a CSS file or an image, the browser is updated inst org.jooby jooby-livereload - 1.6.2 + 1.6.3 ``` diff --git a/modules/jooby-livereload/pom.xml b/modules/jooby-livereload/pom.xml index 44395d2289..94e9abcd81 100644 --- a/modules/jooby-livereload/pom.xml +++ b/modules/jooby-livereload/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 jooby-livereload jooby-livereload diff --git a/modules/jooby-maven-plugin/README.md b/modules/jooby-maven-plugin/README.md index 5a1e67909b..cfe4e27d0b 100644 --- a/modules/jooby-maven-plugin/README.md +++ b/modules/jooby-maven-plugin/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-maven-plugin/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-maven-plugin/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-maven-plugin.svg)](https://javadoc.io/doc/org.jooby/jooby-maven-plugin/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-maven-plugin/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-maven-plugin/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-maven-plugin.svg)](https://javadoc.io/doc/org.jooby/jooby-maven-plugin/1.6.3) [![jooby-maven-plugin website](https://img.shields.io/badge/jooby-maven-plugin-brightgreen.svg)](http://jooby.org/doc/maven-plugin) # maven @@ -43,7 +43,7 @@ It's worth to mention that dynamic reload of classes is done via [JBoss Modules] org.jooby jooby-maven-plugin - 1.6.2 + 1.6.3 ${application.class} @@ -117,7 +117,7 @@ List of commands to execute before starting the ```application```. Useful for [n org.jooby jooby-maven-plugin - 1.6.2 + 1.6.3 ${application.class} @@ -138,7 +138,7 @@ Set one or more ```JVM args```: org.jooby jooby-maven-plugin - 1.6.2 + 1.6.3 ${application.class} true diff --git a/modules/jooby-maven-plugin/pom.xml b/modules/jooby-maven-plugin/pom.xml index 6c58ccf057..86a5451d76 100644 --- a/modules/jooby-maven-plugin/pom.xml +++ b/modules/jooby-maven-plugin/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-metrics/README.md b/modules/jooby-metrics/README.md index 33a55ad87c..a952433079 100644 --- a/modules/jooby-metrics/README.md +++ b/modules/jooby-metrics/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-metrics/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-metrics/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-metrics.svg)](https://javadoc.io/doc/org.jooby/jooby-metrics/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-metrics/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-metrics/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-metrics.svg)](https://javadoc.io/doc/org.jooby/jooby-metrics/1.6.3) [![jooby-metrics website](https://img.shields.io/badge/jooby-metrics-brightgreen.svg)](http://jooby.org/doc/metrics) # metrics @@ -11,7 +11,7 @@ org.jooby jooby-metrics - 1.6.2 + 1.6.3 ``` diff --git a/modules/jooby-metrics/pom.xml b/modules/jooby-metrics/pom.xml index 2e76a275ab..1a1a446fbd 100644 --- a/modules/jooby-metrics/pom.xml +++ b/modules/jooby-metrics/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-micrometer/README.md b/modules/jooby-micrometer/README.md index af994397e6..93d265bf46 100644 --- a/modules/jooby-micrometer/README.md +++ b/modules/jooby-micrometer/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-micrometer/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-micrometer/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-micrometer.svg)](https://javadoc.io/doc/org.jooby/jooby-micrometer/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-micrometer/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-micrometer/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-micrometer.svg)](https://javadoc.io/doc/org.jooby/jooby-micrometer/1.6.3) [![jooby-micrometer website](https://img.shields.io/badge/jooby-micrometer-brightgreen.svg)](http://jooby.org/doc/micrometer) # micrometer @@ -11,7 +11,7 @@ org.jooby jooby-micrometer - 1.6.2 + 1.6.3 ``` diff --git a/modules/jooby-micrometer/pom.xml b/modules/jooby-micrometer/pom.xml index 2882351b51..5078036d36 100644 --- a/modules/jooby-micrometer/pom.xml +++ b/modules/jooby-micrometer/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-mongodb-rx/README.md b/modules/jooby-mongodb-rx/README.md index c0777d73d5..16b48e0ef1 100644 --- a/modules/jooby-mongodb-rx/README.md +++ b/modules/jooby-mongodb-rx/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-mongodb-rx/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-mongodb-rx/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-mongodb-rx.svg)](https://javadoc.io/doc/org.jooby/jooby-mongodb-rx/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-mongodb-rx/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-mongodb-rx/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-mongodb-rx.svg)](https://javadoc.io/doc/org.jooby/jooby-mongodb-rx/1.6.3) [![jooby-mongodb-rx website](https://img.shields.io/badge/jooby-mongodb-rx-brightgreen.svg)](http://jooby.org/doc/mongodb-rx) # mongodb-rx @@ -16,7 +16,7 @@ A MongoDB based driver providing support for React org.jooby jooby-mongodb-rx - 1.6.2 + 1.6.3 ``` diff --git a/modules/jooby-mongodb-rx/pom.xml b/modules/jooby-mongodb-rx/pom.xml index e100af2552..7af7fa4447 100644 --- a/modules/jooby-mongodb-rx/pom.xml +++ b/modules/jooby-mongodb-rx/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-mongodb/README.md b/modules/jooby-mongodb/README.md index c302be56b7..6021763ecd 100644 --- a/modules/jooby-mongodb/README.md +++ b/modules/jooby-mongodb/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-mongodb/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-mongodb/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-mongodb.svg)](https://javadoc.io/doc/org.jooby/jooby-mongodb/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-mongodb/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-mongodb/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-mongodb.svg)](https://javadoc.io/doc/org.jooby/jooby-mongodb/1.6.3) [![jooby-mongodb website](https://img.shields.io/badge/jooby-mongodb-brightgreen.svg)](http://jooby.org/doc/mongodb) # mongodb driver @@ -17,7 +17,7 @@ org.jooby jooby-mongodb - 1.6.2 + 1.6.3 ``` @@ -117,7 +117,7 @@ Use [named](/apidocs/org/jooby/mongodb/Mongodb.html#-named) when you need two or org.jooby jooby-mongodb - 1.6.2 + 1.6.3 ``` diff --git a/modules/jooby-mongodb/pom.xml b/modules/jooby-mongodb/pom.xml index c67ced9a28..8c4cbff457 100644 --- a/modules/jooby-mongodb/pom.xml +++ b/modules/jooby-mongodb/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-morphia/README.md b/modules/jooby-morphia/README.md index 54afacde11..d1984839ac 100644 --- a/modules/jooby-morphia/README.md +++ b/modules/jooby-morphia/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-morphia/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-morphia/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-morphia.svg)](https://javadoc.io/doc/org.jooby/jooby-morphia/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-morphia/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-morphia/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-morphia.svg)](https://javadoc.io/doc/org.jooby/jooby-morphia/1.6.3) [![jooby-morphia website](https://img.shields.io/badge/jooby-morphia-brightgreen.svg)](http://jooby.org/doc/morphia) # morphia @@ -16,7 +16,7 @@ Extends the [mongodb](https://github.com/jooby-project/jooby/tree/master/jooby-m org.jooby jooby-morphia - 1.6.2 + 1.6.3 ``` diff --git a/modules/jooby-morphia/pom.xml b/modules/jooby-morphia/pom.xml index b11d6773a3..20af7c8571 100644 --- a/modules/jooby-morphia/pom.xml +++ b/modules/jooby-morphia/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-neo4j/README.md b/modules/jooby-neo4j/README.md index 8ab39222b7..fe707de9b0 100644 --- a/modules/jooby-neo4j/README.md +++ b/modules/jooby-neo4j/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-neo4j/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-neo4j/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-neo4j.svg)](https://javadoc.io/doc/org.jooby/jooby-neo4j/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-neo4j/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-neo4j/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-neo4j.svg)](https://javadoc.io/doc/org.jooby/jooby-neo4j/1.6.3) [![jooby-neo4j website](https://img.shields.io/badge/jooby-neo4j-brightgreen.svg)](http://jooby.org/doc/neo4j) # neo4j @@ -13,7 +13,7 @@ This module give you access to neo4j and org.jooby jooby-neo4j - 1.6.2 + 1.6.3 ``` @@ -176,7 +176,7 @@ A [Session.Store](/apidocs/org/jooby/neo4j/Neo4jSessionStore) powered by org.jooby jooby-neo4j - 1.6.2 + 1.6.3 ``` diff --git a/modules/jooby-neo4j/pom.xml b/modules/jooby-neo4j/pom.xml index 5929c7bd9a..420278dc65 100644 --- a/modules/jooby-neo4j/pom.xml +++ b/modules/jooby-neo4j/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-netty/README.md b/modules/jooby-netty/README.md index 9dfdbf8214..76dff5efe7 100644 --- a/modules/jooby-netty/README.md +++ b/modules/jooby-netty/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-netty/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-netty/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-netty.svg)](https://javadoc.io/doc/org.jooby/jooby-netty/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-netty/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-netty/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-netty.svg)](https://javadoc.io/doc/org.jooby/jooby-netty/1.6.3) [![jooby-netty website](https://img.shields.io/badge/jooby-netty-brightgreen.svg)](http://jooby.org/doc/netty) # netty @@ -15,7 +15,7 @@ org.jooby jooby-netty - 1.6.2 + 1.6.3 ``` diff --git a/modules/jooby-netty/pom.xml b/modules/jooby-netty/pom.xml index 4995426372..181cd724a0 100644 --- a/modules/jooby-netty/pom.xml +++ b/modules/jooby-netty/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-pac4j/README.md b/modules/jooby-pac4j/README.md index 2159a90c2e..1ce952a82c 100644 --- a/modules/jooby-pac4j/README.md +++ b/modules/jooby-pac4j/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-pac4j/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-pac4j/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-pac4j.svg)](https://javadoc.io/doc/org.jooby/jooby-pac4j/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-pac4j/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-pac4j/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-pac4j.svg)](https://javadoc.io/doc/org.jooby/jooby-pac4j/1.6.3) [![jooby-pac4j website](https://img.shields.io/badge/jooby-pac4j-brightgreen.svg)](http://jooby.org/doc/pac4j) # pac4j @@ -22,7 +22,7 @@ Authentication module via: [Pac4j 1.x](https://github.com/pac4j/pac4j). org.jooby jooby-pac4j - 1.6.2 + 1.6.3 ``` diff --git a/modules/jooby-pac4j/pom.xml b/modules/jooby-pac4j/pom.xml index a31f56fd19..99bddee2ca 100644 --- a/modules/jooby-pac4j/pom.xml +++ b/modules/jooby-pac4j/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-pac4j2/README.md b/modules/jooby-pac4j2/README.md index de490a5be5..c06c7a616d 100644 --- a/modules/jooby-pac4j2/README.md +++ b/modules/jooby-pac4j2/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-pac4j2/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-pac4j2/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-pac4j2.svg)](https://javadoc.io/doc/org.jooby/jooby-pac4j2/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-pac4j2/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-pac4j2/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-pac4j2.svg)](https://javadoc.io/doc/org.jooby/jooby-pac4j2/1.6.3) [![jooby-pac4j2 website](https://img.shields.io/badge/jooby-pac4j2-brightgreen.svg)](http://jooby.org/doc/pac4j2) # pac4j module @@ -19,7 +19,7 @@ Authentication module via: Pac4j 2.x org.jooby jooby-pac4j2 - 1.6.2 + 1.6.3 ``` diff --git a/modules/jooby-pac4j2/pom.xml b/modules/jooby-pac4j2/pom.xml index acccd95251..b0c16df645 100644 --- a/modules/jooby-pac4j2/pom.xml +++ b/modules/jooby-pac4j2/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-pebble/README.md b/modules/jooby-pebble/README.md index ee126f10d7..ef2b892543 100644 --- a/modules/jooby-pebble/README.md +++ b/modules/jooby-pebble/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-pebble/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-pebble/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-pebble.svg)](https://javadoc.io/doc/org.jooby/jooby-pebble/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-pebble/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-pebble/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-pebble.svg)](https://javadoc.io/doc/org.jooby/jooby-pebble/1.6.3) [![jooby-pebble website](https://img.shields.io/badge/jooby-pebble-brightgreen.svg)](http://jooby.org/doc/pebble) # pebble @@ -16,7 +16,7 @@ org.jooby jooby-pebble - 1.6.2 + 1.6.3 ``` diff --git a/modules/jooby-pebble/pom.xml b/modules/jooby-pebble/pom.xml index 9fc5aa7f22..afe2fcbcd2 100644 --- a/modules/jooby-pebble/pom.xml +++ b/modules/jooby-pebble/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-quartz/README.md b/modules/jooby-quartz/README.md index c905951540..1cfceabba1 100644 --- a/modules/jooby-quartz/README.md +++ b/modules/jooby-quartz/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-quartz/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-quartz/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-quartz.svg)](https://javadoc.io/doc/org.jooby/jooby-quartz/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-quartz/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-quartz/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-quartz.svg)](https://javadoc.io/doc/org.jooby/jooby-quartz/1.6.3) [![jooby-quartz website](https://img.shields.io/badge/jooby-quartz-brightgreen.svg)](http://jooby.org/doc/quartz) # quartz @@ -11,7 +11,7 @@ Cron triggers, job scheduling and async processing via [Quartz](http://quartz-sc org.jooby jooby-quartz - 1.6.2 + 1.6.3 ``` diff --git a/modules/jooby-quartz/pom.xml b/modules/jooby-quartz/pom.xml index e66bac256d..26e32d2e2f 100644 --- a/modules/jooby-quartz/pom.xml +++ b/modules/jooby-quartz/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-querydsl/README.md b/modules/jooby-querydsl/README.md index 98f7889b6d..fc47506743 100644 --- a/modules/jooby-querydsl/README.md +++ b/modules/jooby-querydsl/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-querydsl/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-querydsl/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-querydsl.svg)](https://javadoc.io/doc/org.jooby/jooby-querydsl/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-querydsl/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-querydsl/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-querydsl.svg)](https://javadoc.io/doc/org.jooby/jooby-querydsl/1.6.3) [![jooby-querydsl website](https://img.shields.io/badge/jooby-querydsl-brightgreen.svg)](http://jooby.org/doc/querydsl) # queryDSL @@ -17,7 +17,7 @@ SQL abstraction provided by QueryDSL using org.jooby jooby-querydsl - 1.6.2 + 1.6.3 ``` diff --git a/modules/jooby-querydsl/pom.xml b/modules/jooby-querydsl/pom.xml index cd1f8fa8a4..ab4e0173ab 100644 --- a/modules/jooby-querydsl/pom.xml +++ b/modules/jooby-querydsl/pom.xml @@ -4,7 +4,7 @@ modules org.jooby - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-reactor/README.md b/modules/jooby-reactor/README.md index 4ee877a2f8..ab745f3db3 100644 --- a/modules/jooby-reactor/README.md +++ b/modules/jooby-reactor/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-reactor/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-reactor/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-reactor.svg)](https://javadoc.io/doc/org.jooby/jooby-reactor/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-reactor/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-reactor/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-reactor.svg)](https://javadoc.io/doc/org.jooby/jooby-reactor/1.6.3) [![jooby-reactor website](https://img.shields.io/badge/jooby-reactor-brightgreen.svg)](http://jooby.org/doc/reactor) # reactor @@ -11,7 +11,7 @@ org.jooby jooby-reactor - 1.6.2 + 1.6.3 ``` diff --git a/modules/jooby-reactor/pom.xml b/modules/jooby-reactor/pom.xml index fb03fbff83..1fe9f06979 100644 --- a/modules/jooby-reactor/pom.xml +++ b/modules/jooby-reactor/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-requery/README.md b/modules/jooby-requery/README.md index b7e694905c..805e7083b9 100644 --- a/modules/jooby-requery/README.md +++ b/modules/jooby-requery/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-requery/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-requery/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-requery.svg)](https://javadoc.io/doc/org.jooby/jooby-requery/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-requery/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-requery/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-requery.svg)](https://javadoc.io/doc/org.jooby/jooby-requery/1.6.3) [![jooby-requery website](https://img.shields.io/badge/jooby-requery-brightgreen.svg)](http://jooby.org/doc/requery) # requery @@ -15,7 +15,7 @@ Safe, clean and efficient database access via Reactive Ext org.jooby jooby-rxjava - 1.6.2 + 1.6.3 ``` diff --git a/modules/jooby-rxjava/pom.xml b/modules/jooby-rxjava/pom.xml index 486638b5d9..d01fb2092d 100644 --- a/modules/jooby-rxjava/pom.xml +++ b/modules/jooby-rxjava/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-scanner/README.md b/modules/jooby-scanner/README.md index 185a73d941..5bb80d18d2 100644 --- a/modules/jooby-scanner/README.md +++ b/modules/jooby-scanner/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-scanner/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-scanner/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-scanner.svg)](https://javadoc.io/doc/org.jooby/jooby-scanner/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-scanner/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-scanner/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-scanner.svg)](https://javadoc.io/doc/org.jooby/jooby-scanner/1.6.3) [![jooby-scanner website](https://img.shields.io/badge/jooby-scanner-brightgreen.svg)](http://jooby.org/doc/scanner) # scanner @@ -13,7 +13,7 @@ This module provides `class-path` scanning services for `MVC routes`, `services` org.jooby jooby-scanner - 1.6.2 + 1.6.3 ``` diff --git a/modules/jooby-scanner/pom.xml b/modules/jooby-scanner/pom.xml index cd04b51343..f2f04b1c3c 100644 --- a/modules/jooby-scanner/pom.xml +++ b/modules/jooby-scanner/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-servlet/README.md b/modules/jooby-servlet/README.md index 319b89fdaf..4c5d739644 100644 --- a/modules/jooby-servlet/README.md +++ b/modules/jooby-servlet/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-servlet/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-servlet/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-servlet.svg)](https://javadoc.io/doc/org.jooby/jooby-servlet/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-servlet/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-servlet/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-servlet.svg)](https://javadoc.io/doc/org.jooby/jooby-servlet/1.6.3) [![jooby-servlet website](https://img.shields.io/badge/jooby-servlet-brightgreen.svg)](http://jooby.org/doc/servlet) # servlets diff --git a/modules/jooby-servlet/pom.xml b/modules/jooby-servlet/pom.xml index ebc1cbf3e1..8020ff91ac 100644 --- a/modules/jooby-servlet/pom.xml +++ b/modules/jooby-servlet/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-sitemap/README.md b/modules/jooby-sitemap/README.md index 6d091a3249..0359b4f8bb 100644 --- a/modules/jooby-sitemap/README.md +++ b/modules/jooby-sitemap/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-sitemap/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-sitemap/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-sitemap.svg)](https://javadoc.io/doc/org.jooby/jooby-sitemap/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-sitemap/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-sitemap/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-sitemap.svg)](https://javadoc.io/doc/org.jooby/jooby-sitemap/1.6.3) [![jooby-sitemap website](https://img.shields.io/badge/jooby-sitemap-brightgreen.svg)](http://jooby.org/doc/sitemap) # sitemap @@ -15,7 +15,7 @@ Generate sitemap.xml files org.jooby jooby-sitemap - 1.6.2 + 1.6.3 ``` diff --git a/modules/jooby-sitemap/pom.xml b/modules/jooby-sitemap/pom.xml index 4da541509b..083aab03ad 100644 --- a/modules/jooby-sitemap/pom.xml +++ b/modules/jooby-sitemap/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-spymemcached/README.md b/modules/jooby-spymemcached/README.md index 929a116cf4..29ed54111d 100644 --- a/modules/jooby-spymemcached/README.md +++ b/modules/jooby-spymemcached/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-spymemcached/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-spymemcached/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-spymemcached.svg)](https://javadoc.io/doc/org.jooby/jooby-spymemcached/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-spymemcached/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-spymemcached/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-spymemcached.svg)](https://javadoc.io/doc/org.jooby/jooby-spymemcached/1.6.3) [![jooby-spymemcached website](https://img.shields.io/badge/jooby-spymemcached-brightgreen.svg)](http://jooby.org/doc/spymemcached) # spymemcached @@ -15,7 +15,7 @@ Provides memcached access via [SpyMemcached](https://github.com/dustin/java-memc org.jooby jooby-spymemcached - 1.6.2 + 1.6.3 ``` @@ -65,7 +65,7 @@ or programmatically: org.jooby jooby-spymemcached - 1.6.2 + 1.6.3 ``` diff --git a/modules/jooby-spymemcached/pom.xml b/modules/jooby-spymemcached/pom.xml index 58e9243bf8..5e1904358e 100644 --- a/modules/jooby-spymemcached/pom.xml +++ b/modules/jooby-spymemcached/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-thymeleaf/README.md b/modules/jooby-thymeleaf/README.md index 05987f56d1..a4036c64d1 100644 --- a/modules/jooby-thymeleaf/README.md +++ b/modules/jooby-thymeleaf/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-thymeleaf/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-thymeleaf/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-thymeleaf.svg)](https://javadoc.io/doc/org.jooby/jooby-thymeleaf/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-thymeleaf/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-thymeleaf/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-thymeleaf.svg)](https://javadoc.io/doc/org.jooby/jooby-thymeleaf/1.6.3) [![jooby-thymeleaf website](https://img.shields.io/badge/jooby-thymeleaf-brightgreen.svg)](http://jooby.org/doc/thymeleaf) # thymeleaf @@ -11,7 +11,7 @@ org.jooby jooby-thymeleaf - 1.6.2 + 1.6.3 ``` diff --git a/modules/jooby-thymeleaf/pom.xml b/modules/jooby-thymeleaf/pom.xml index 994ee7c28a..6e4f396e38 100644 --- a/modules/jooby-thymeleaf/pom.xml +++ b/modules/jooby-thymeleaf/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-unbescape/README.md b/modules/jooby-unbescape/README.md index a84182523d..07e3b6c2d6 100644 --- a/modules/jooby-unbescape/README.md +++ b/modules/jooby-unbescape/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-unbescape/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-unbescape/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-unbescape.svg)](https://javadoc.io/doc/org.jooby/jooby-unbescape/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-unbescape/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-unbescape/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-unbescape.svg)](https://javadoc.io/doc/org.jooby/jooby-unbescape/1.6.3) [![jooby-unbescape website](https://img.shields.io/badge/jooby-unbescape-brightgreen.svg)](http://jooby.org/doc/unbescape) # unbescape @@ -11,7 +11,7 @@ org.jooby jooby-unbescape - 1.6.2 + 1.6.3 ``` diff --git a/modules/jooby-unbescape/pom.xml b/modules/jooby-unbescape/pom.xml index e7999697d5..5be6c783bd 100644 --- a/modules/jooby-unbescape/pom.xml +++ b/modules/jooby-unbescape/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-undertow/README.md b/modules/jooby-undertow/README.md index 524b5033b6..af079f4fc3 100644 --- a/modules/jooby-undertow/README.md +++ b/modules/jooby-undertow/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-undertow/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-undertow/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-undertow.svg)](https://javadoc.io/doc/org.jooby/jooby-undertow/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-undertow/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-undertow/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-undertow.svg)](https://javadoc.io/doc/org.jooby/jooby-undertow/1.6.3) [![jooby-undertow website](https://img.shields.io/badge/jooby-undertow-brightgreen.svg)](http://jooby.org/doc/undertow) # undertow @@ -15,7 +15,7 @@ org.jooby jooby-undertow - 1.6.2 + 1.6.3 ``` diff --git a/modules/jooby-undertow/pom.xml b/modules/jooby-undertow/pom.xml index eb5b727e40..52057d1ca3 100644 --- a/modules/jooby-undertow/pom.xml +++ b/modules/jooby-undertow/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-whoops/README.md b/modules/jooby-whoops/README.md index 52e482c57b..2430f60436 100644 --- a/modules/jooby-whoops/README.md +++ b/modules/jooby-whoops/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-whoops/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-whoops/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-whoops.svg)](https://javadoc.io/doc/org.jooby/jooby-whoops/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-whoops/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-whoops/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-whoops.svg)](https://javadoc.io/doc/org.jooby/jooby-whoops/1.6.3) [![jooby-whoops website](https://img.shields.io/badge/jooby-whoops-brightgreen.svg)](http://jooby.org/doc/whoops) # whoops @@ -15,7 +15,7 @@ Pretty error page that helps you debug your web application. org.jooby jooby-whoops - 1.6.2 + 1.6.3 ``` diff --git a/modules/jooby-whoops/pom.xml b/modules/jooby-whoops/pom.xml index 19b41f019c..851cb42640 100644 --- a/modules/jooby-whoops/pom.xml +++ b/modules/jooby-whoops/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/jooby-yasson/README.md b/modules/jooby-yasson/README.md index 89e81a546f..d24d7cf46d 100644 --- a/modules/jooby-yasson/README.md +++ b/modules/jooby-yasson/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-yasson/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-yasson/1.6.2) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-yasson.svg)](https://javadoc.io/doc/org.jooby/jooby-yasson/1.6.2) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-yasson/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-yasson/1.6.3) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-yasson.svg)](https://javadoc.io/doc/org.jooby/jooby-yasson/1.6.3) [![jooby-yasson website](https://img.shields.io/badge/jooby-yasson-brightgreen.svg)](http://jooby.org/doc/yasson) # yasson @@ -17,7 +17,7 @@ JSON support via [yasson](https://github.com/eclipse-ee4j/yasson) library. org.jooby jooby-yasson - 1.6.2 + 1.6.3 ``` diff --git a/modules/jooby-yasson/pom.xml b/modules/jooby-yasson/pom.xml index aac644e1c0..cbaadffe43 100644 --- a/modules/jooby-yasson/pom.xml +++ b/modules/jooby-yasson/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3-SNAPSHOT + 1.6.3 4.0.0 diff --git a/modules/pom.xml b/modules/pom.xml index c697b28259..dd8290d935 100644 --- a/modules/pom.xml +++ b/modules/pom.xml @@ -6,7 +6,7 @@ org.jooby jooby-project - 1.6.3-SNAPSHOT + 1.6.3 modules diff --git a/pom.xml b/pom.xml index 43c18028c9..cc5465d199 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ 4.0.0 org.jooby jooby-project - 1.6.3-SNAPSHOT + 1.6.3 pom jooby-project From 72642c3b35cd62304dd9d6f298090b7f1788e934 Mon Sep 17 00:00:00 2001 From: Edgar Espina Date: Tue, 16 Jul 2019 13:27:35 -0300 Subject: [PATCH 69/93] prepare for next development cycle --- jooby/pom.xml | 2 +- modules/coverage-report/pom.xml | 2 +- modules/jooby-akka/pom.xml | 2 +- modules/jooby-apitool/pom.xml | 2 +- modules/jooby-archetype/pom.xml | 2 +- modules/jooby-assets-autoprefixer/pom.xml | 2 +- modules/jooby-assets-babel/pom.xml | 2 +- modules/jooby-assets-clean-css/pom.xml | 2 +- modules/jooby-assets-closure-compiler/pom.xml | 2 +- modules/jooby-assets-csslint/pom.xml | 2 +- modules/jooby-assets-j2v8/pom.xml | 2 +- modules/jooby-assets-jscs/pom.xml | 2 +- modules/jooby-assets-jshint/pom.xml | 2 +- modules/jooby-assets-less/pom.xml | 2 +- modules/jooby-assets-less4j/pom.xml | 2 +- modules/jooby-assets-ng-annotate/pom.xml | 2 +- modules/jooby-assets-nodejs/pom.xml | 2 +- modules/jooby-assets-requirejs/pom.xml | 2 +- modules/jooby-assets-rollup/pom.xml | 2 +- modules/jooby-assets-sass/pom.xml | 2 +- modules/jooby-assets-svg-sprites/pom.xml | 2 +- modules/jooby-assets-svg-symbol/pom.xml | 2 +- modules/jooby-assets-uglify/pom.xml | 2 +- modules/jooby-assets-yui-compressor/pom.xml | 2 +- modules/jooby-assets/pom.xml | 2 +- modules/jooby-aws/pom.xml | 2 +- modules/jooby-banner/pom.xml | 2 +- modules/jooby-caffeine/pom.xml | 2 +- modules/jooby-camel/pom.xml | 2 +- modules/jooby-cassandra/pom.xml | 2 +- modules/jooby-commons-email/pom.xml | 2 +- modules/jooby-consul/pom.xml | 2 +- modules/jooby-couchbase/pom.xml | 2 +- modules/jooby-crash/pom.xml | 2 +- modules/jooby-csl/pom.xml | 2 +- modules/jooby-dist/pom.xml | 2 +- modules/jooby-ebean/pom.xml | 2 +- modules/jooby-ehcache/pom.xml | 2 +- modules/jooby-elasticsearch/pom.xml | 2 +- modules/jooby-eventbus/pom.xml | 2 +- modules/jooby-executor/pom.xml | 2 +- modules/jooby-exposed/pom.xml | 2 +- modules/jooby-filewatcher/pom.xml | 2 +- modules/jooby-flyway/pom.xml | 2 +- modules/jooby-frontend/pom.xml | 2 +- modules/jooby-ftl/pom.xml | 2 +- modules/jooby-gradle-plugin/pom.xml | 2 +- modules/jooby-gson/pom.xml | 2 +- modules/jooby-guava-cache/pom.xml | 2 +- modules/jooby-hazelcast/pom.xml | 2 +- modules/jooby-hbm/pom.xml | 2 +- modules/jooby-hbs/pom.xml | 2 +- modules/jooby-hbv/pom.xml | 2 +- modules/jooby-jackson/pom.xml | 2 +- modules/jooby-jade/pom.xml | 2 +- modules/jooby-jdbc/pom.xml | 2 +- modules/jooby-jdbi/pom.xml | 2 +- modules/jooby-jdbi3/pom.xml | 2 +- modules/jooby-jedis/pom.xml | 2 +- modules/jooby-jetty/pom.xml | 2 +- modules/jooby-jongo/pom.xml | 2 +- modules/jooby-jooq/pom.xml | 2 +- modules/jooby-lang-kotlin/pom.xml | 2 +- modules/jooby-livereload/pom.xml | 2 +- modules/jooby-maven-plugin/pom.xml | 2 +- modules/jooby-metrics/pom.xml | 2 +- modules/jooby-micrometer/pom.xml | 2 +- modules/jooby-mongodb-rx/pom.xml | 2 +- modules/jooby-mongodb/pom.xml | 2 +- modules/jooby-morphia/pom.xml | 2 +- modules/jooby-neo4j/pom.xml | 2 +- modules/jooby-netty/pom.xml | 2 +- modules/jooby-pac4j/pom.xml | 2 +- modules/jooby-pac4j2/pom.xml | 2 +- modules/jooby-pebble/pom.xml | 2 +- modules/jooby-quartz/pom.xml | 2 +- modules/jooby-querydsl/pom.xml | 2 +- modules/jooby-reactor/pom.xml | 2 +- modules/jooby-requery/pom.xml | 2 +- modules/jooby-rocker/pom.xml | 2 +- modules/jooby-run/pom.xml | 2 +- modules/jooby-rxjava-jdbc/pom.xml | 2 +- modules/jooby-rxjava/pom.xml | 2 +- modules/jooby-scanner/pom.xml | 2 +- modules/jooby-servlet/pom.xml | 2 +- modules/jooby-sitemap/pom.xml | 2 +- modules/jooby-spymemcached/pom.xml | 2 +- modules/jooby-thymeleaf/pom.xml | 2 +- modules/jooby-unbescape/pom.xml | 2 +- modules/jooby-undertow/pom.xml | 2 +- modules/jooby-whoops/pom.xml | 2 +- modules/jooby-yasson/pom.xml | 2 +- modules/pom.xml | 2 +- pom.xml | 2 +- 94 files changed, 94 insertions(+), 94 deletions(-) diff --git a/jooby/pom.xml b/jooby/pom.xml index 292143088b..f77290c665 100644 --- a/jooby/pom.xml +++ b/jooby/pom.xml @@ -6,7 +6,7 @@ org.jooby jooby-project - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/coverage-report/pom.xml b/modules/coverage-report/pom.xml index 58a800d323..0dc44bce33 100644 --- a/modules/coverage-report/pom.xml +++ b/modules/coverage-report/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-akka/pom.xml b/modules/jooby-akka/pom.xml index f9adbe2534..d04180247c 100644 --- a/modules/jooby-akka/pom.xml +++ b/modules/jooby-akka/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-apitool/pom.xml b/modules/jooby-apitool/pom.xml index f5e2e1ae78..5c61df5027 100644 --- a/modules/jooby-apitool/pom.xml +++ b/modules/jooby-apitool/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-archetype/pom.xml b/modules/jooby-archetype/pom.xml index 22026513c2..918515a749 100644 --- a/modules/jooby-archetype/pom.xml +++ b/modules/jooby-archetype/pom.xml @@ -7,7 +7,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT jooby-archetype diff --git a/modules/jooby-assets-autoprefixer/pom.xml b/modules/jooby-assets-autoprefixer/pom.xml index 88d4590133..c90087de9d 100644 --- a/modules/jooby-assets-autoprefixer/pom.xml +++ b/modules/jooby-assets-autoprefixer/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-babel/pom.xml b/modules/jooby-assets-babel/pom.xml index a0f85bb55f..a2e8215176 100644 --- a/modules/jooby-assets-babel/pom.xml +++ b/modules/jooby-assets-babel/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-clean-css/pom.xml b/modules/jooby-assets-clean-css/pom.xml index abb0b35525..e5b4e44610 100644 --- a/modules/jooby-assets-clean-css/pom.xml +++ b/modules/jooby-assets-clean-css/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-closure-compiler/pom.xml b/modules/jooby-assets-closure-compiler/pom.xml index 02ee107be1..363b979760 100644 --- a/modules/jooby-assets-closure-compiler/pom.xml +++ b/modules/jooby-assets-closure-compiler/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-csslint/pom.xml b/modules/jooby-assets-csslint/pom.xml index a064084766..5de2622cd6 100644 --- a/modules/jooby-assets-csslint/pom.xml +++ b/modules/jooby-assets-csslint/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-j2v8/pom.xml b/modules/jooby-assets-j2v8/pom.xml index dd7d1c6c9b..663621a380 100644 --- a/modules/jooby-assets-j2v8/pom.xml +++ b/modules/jooby-assets-j2v8/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-jscs/pom.xml b/modules/jooby-assets-jscs/pom.xml index 23906f3fed..69e0d08d58 100644 --- a/modules/jooby-assets-jscs/pom.xml +++ b/modules/jooby-assets-jscs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-jshint/pom.xml b/modules/jooby-assets-jshint/pom.xml index 99dce64a37..fdeba7bad3 100644 --- a/modules/jooby-assets-jshint/pom.xml +++ b/modules/jooby-assets-jshint/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-less/pom.xml b/modules/jooby-assets-less/pom.xml index 00366e5f7d..f6d21c481b 100644 --- a/modules/jooby-assets-less/pom.xml +++ b/modules/jooby-assets-less/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-less4j/pom.xml b/modules/jooby-assets-less4j/pom.xml index 2266013968..3af5110d45 100644 --- a/modules/jooby-assets-less4j/pom.xml +++ b/modules/jooby-assets-less4j/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-ng-annotate/pom.xml b/modules/jooby-assets-ng-annotate/pom.xml index 1214a46f3e..391d66f225 100644 --- a/modules/jooby-assets-ng-annotate/pom.xml +++ b/modules/jooby-assets-ng-annotate/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-nodejs/pom.xml b/modules/jooby-assets-nodejs/pom.xml index 1a966718cf..c0ff31610f 100644 --- a/modules/jooby-assets-nodejs/pom.xml +++ b/modules/jooby-assets-nodejs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-requirejs/pom.xml b/modules/jooby-assets-requirejs/pom.xml index 45f34aebf9..ff24ea3d53 100644 --- a/modules/jooby-assets-requirejs/pom.xml +++ b/modules/jooby-assets-requirejs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-rollup/pom.xml b/modules/jooby-assets-rollup/pom.xml index 9a684468aa..a1188120f2 100644 --- a/modules/jooby-assets-rollup/pom.xml +++ b/modules/jooby-assets-rollup/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-sass/pom.xml b/modules/jooby-assets-sass/pom.xml index 376b1b68bb..efb1aec433 100644 --- a/modules/jooby-assets-sass/pom.xml +++ b/modules/jooby-assets-sass/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-svg-sprites/pom.xml b/modules/jooby-assets-svg-sprites/pom.xml index 798b55eb5c..793c87dcf7 100644 --- a/modules/jooby-assets-svg-sprites/pom.xml +++ b/modules/jooby-assets-svg-sprites/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-svg-symbol/pom.xml b/modules/jooby-assets-svg-symbol/pom.xml index be3aae332b..8125d00453 100644 --- a/modules/jooby-assets-svg-symbol/pom.xml +++ b/modules/jooby-assets-svg-symbol/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-uglify/pom.xml b/modules/jooby-assets-uglify/pom.xml index f26b6abc3e..7f0949090c 100644 --- a/modules/jooby-assets-uglify/pom.xml +++ b/modules/jooby-assets-uglify/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-yui-compressor/pom.xml b/modules/jooby-assets-yui-compressor/pom.xml index 7ef6366605..ead900f2f0 100644 --- a/modules/jooby-assets-yui-compressor/pom.xml +++ b/modules/jooby-assets-yui-compressor/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets/pom.xml b/modules/jooby-assets/pom.xml index ebcb457626..7e6078603b 100644 --- a/modules/jooby-assets/pom.xml +++ b/modules/jooby-assets/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-aws/pom.xml b/modules/jooby-aws/pom.xml index 656fe470d5..8ff8377d21 100644 --- a/modules/jooby-aws/pom.xml +++ b/modules/jooby-aws/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-banner/pom.xml b/modules/jooby-banner/pom.xml index 70d179445f..53a5a6759c 100644 --- a/modules/jooby-banner/pom.xml +++ b/modules/jooby-banner/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-caffeine/pom.xml b/modules/jooby-caffeine/pom.xml index d2afdc40e7..559228e6a8 100644 --- a/modules/jooby-caffeine/pom.xml +++ b/modules/jooby-caffeine/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-camel/pom.xml b/modules/jooby-camel/pom.xml index 41f1e27826..26a0220f74 100644 --- a/modules/jooby-camel/pom.xml +++ b/modules/jooby-camel/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-cassandra/pom.xml b/modules/jooby-cassandra/pom.xml index 5346861689..3b5810bb44 100644 --- a/modules/jooby-cassandra/pom.xml +++ b/modules/jooby-cassandra/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-commons-email/pom.xml b/modules/jooby-commons-email/pom.xml index 71b179d70e..5894519190 100644 --- a/modules/jooby-commons-email/pom.xml +++ b/modules/jooby-commons-email/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-consul/pom.xml b/modules/jooby-consul/pom.xml index 3ed11087ad..d3f4657ca5 100644 --- a/modules/jooby-consul/pom.xml +++ b/modules/jooby-consul/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-couchbase/pom.xml b/modules/jooby-couchbase/pom.xml index 7a498cbd57..65bd46270e 100644 --- a/modules/jooby-couchbase/pom.xml +++ b/modules/jooby-couchbase/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-crash/pom.xml b/modules/jooby-crash/pom.xml index abbfb3530a..1d3f2c344e 100644 --- a/modules/jooby-crash/pom.xml +++ b/modules/jooby-crash/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-csl/pom.xml b/modules/jooby-csl/pom.xml index 4b371b64a8..b3f52abfa2 100644 --- a/modules/jooby-csl/pom.xml +++ b/modules/jooby-csl/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-dist/pom.xml b/modules/jooby-dist/pom.xml index ddc832d1ce..d163eef089 100644 --- a/modules/jooby-dist/pom.xml +++ b/modules/jooby-dist/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-ebean/pom.xml b/modules/jooby-ebean/pom.xml index 0edbae95e6..4cf1d6f2f5 100644 --- a/modules/jooby-ebean/pom.xml +++ b/modules/jooby-ebean/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-ehcache/pom.xml b/modules/jooby-ehcache/pom.xml index 5c17f62abd..7dcb4bb708 100644 --- a/modules/jooby-ehcache/pom.xml +++ b/modules/jooby-ehcache/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-elasticsearch/pom.xml b/modules/jooby-elasticsearch/pom.xml index a2f3f09e04..9035ddb8a3 100644 --- a/modules/jooby-elasticsearch/pom.xml +++ b/modules/jooby-elasticsearch/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-eventbus/pom.xml b/modules/jooby-eventbus/pom.xml index 8de28163e4..b3dd9d53a6 100644 --- a/modules/jooby-eventbus/pom.xml +++ b/modules/jooby-eventbus/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-executor/pom.xml b/modules/jooby-executor/pom.xml index 982a33293b..a4036cabcb 100644 --- a/modules/jooby-executor/pom.xml +++ b/modules/jooby-executor/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-exposed/pom.xml b/modules/jooby-exposed/pom.xml index b554ab030a..1dc8c5d60b 100644 --- a/modules/jooby-exposed/pom.xml +++ b/modules/jooby-exposed/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-filewatcher/pom.xml b/modules/jooby-filewatcher/pom.xml index a52b39a4e5..a55529aa74 100644 --- a/modules/jooby-filewatcher/pom.xml +++ b/modules/jooby-filewatcher/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-flyway/pom.xml b/modules/jooby-flyway/pom.xml index 19c90318ec..dbb1cb50d1 100644 --- a/modules/jooby-flyway/pom.xml +++ b/modules/jooby-flyway/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-frontend/pom.xml b/modules/jooby-frontend/pom.xml index 3300ca59f4..06fcc8b85d 100644 --- a/modules/jooby-frontend/pom.xml +++ b/modules/jooby-frontend/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-ftl/pom.xml b/modules/jooby-ftl/pom.xml index 704fee33b6..00c598d8fe 100644 --- a/modules/jooby-ftl/pom.xml +++ b/modules/jooby-ftl/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-gradle-plugin/pom.xml b/modules/jooby-gradle-plugin/pom.xml index 702a56a0f0..d0d2bda64b 100644 --- a/modules/jooby-gradle-plugin/pom.xml +++ b/modules/jooby-gradle-plugin/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-gson/pom.xml b/modules/jooby-gson/pom.xml index 8361974ff1..fb98f02ce1 100644 --- a/modules/jooby-gson/pom.xml +++ b/modules/jooby-gson/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-guava-cache/pom.xml b/modules/jooby-guava-cache/pom.xml index 166f70b1d9..58ce943b92 100644 --- a/modules/jooby-guava-cache/pom.xml +++ b/modules/jooby-guava-cache/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-hazelcast/pom.xml b/modules/jooby-hazelcast/pom.xml index 0e55ffb689..1a0bf03020 100644 --- a/modules/jooby-hazelcast/pom.xml +++ b/modules/jooby-hazelcast/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-hbm/pom.xml b/modules/jooby-hbm/pom.xml index 4ebd5b7a21..c5d6fb4b25 100644 --- a/modules/jooby-hbm/pom.xml +++ b/modules/jooby-hbm/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-hbs/pom.xml b/modules/jooby-hbs/pom.xml index f4ca06fdbe..89221eb81d 100644 --- a/modules/jooby-hbs/pom.xml +++ b/modules/jooby-hbs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-hbv/pom.xml b/modules/jooby-hbv/pom.xml index b4df2cf538..26367bd195 100644 --- a/modules/jooby-hbv/pom.xml +++ b/modules/jooby-hbv/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-jackson/pom.xml b/modules/jooby-jackson/pom.xml index 775fcba0ca..245ee2da0a 100644 --- a/modules/jooby-jackson/pom.xml +++ b/modules/jooby-jackson/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-jade/pom.xml b/modules/jooby-jade/pom.xml index d9078e1e0b..de55ec151e 100644 --- a/modules/jooby-jade/pom.xml +++ b/modules/jooby-jade/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-jdbc/pom.xml b/modules/jooby-jdbc/pom.xml index 879854f2a6..d24a3af46c 100644 --- a/modules/jooby-jdbc/pom.xml +++ b/modules/jooby-jdbc/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-jdbi/pom.xml b/modules/jooby-jdbi/pom.xml index c680e89f6f..557ca341a7 100644 --- a/modules/jooby-jdbi/pom.xml +++ b/modules/jooby-jdbi/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-jdbi3/pom.xml b/modules/jooby-jdbi3/pom.xml index ec6a0d9a72..c2d6f6b779 100644 --- a/modules/jooby-jdbi3/pom.xml +++ b/modules/jooby-jdbi3/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-jedis/pom.xml b/modules/jooby-jedis/pom.xml index 99eba5ba57..ca8a316d3d 100644 --- a/modules/jooby-jedis/pom.xml +++ b/modules/jooby-jedis/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-jetty/pom.xml b/modules/jooby-jetty/pom.xml index 2da15070a1..16cf85f73b 100644 --- a/modules/jooby-jetty/pom.xml +++ b/modules/jooby-jetty/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-jongo/pom.xml b/modules/jooby-jongo/pom.xml index b07194249b..2cefd77ad8 100644 --- a/modules/jooby-jongo/pom.xml +++ b/modules/jooby-jongo/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-jooq/pom.xml b/modules/jooby-jooq/pom.xml index dbf7ae811d..035dd9c615 100644 --- a/modules/jooby-jooq/pom.xml +++ b/modules/jooby-jooq/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-lang-kotlin/pom.xml b/modules/jooby-lang-kotlin/pom.xml index 32b27cf7fd..16ca493eb3 100644 --- a/modules/jooby-lang-kotlin/pom.xml +++ b/modules/jooby-lang-kotlin/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-livereload/pom.xml b/modules/jooby-livereload/pom.xml index 94e9abcd81..2786c510e6 100644 --- a/modules/jooby-livereload/pom.xml +++ b/modules/jooby-livereload/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT jooby-livereload jooby-livereload diff --git a/modules/jooby-maven-plugin/pom.xml b/modules/jooby-maven-plugin/pom.xml index 86a5451d76..bfcee04d9d 100644 --- a/modules/jooby-maven-plugin/pom.xml +++ b/modules/jooby-maven-plugin/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-metrics/pom.xml b/modules/jooby-metrics/pom.xml index 1a1a446fbd..64ad80a3cf 100644 --- a/modules/jooby-metrics/pom.xml +++ b/modules/jooby-metrics/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-micrometer/pom.xml b/modules/jooby-micrometer/pom.xml index 5078036d36..872659c590 100644 --- a/modules/jooby-micrometer/pom.xml +++ b/modules/jooby-micrometer/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-mongodb-rx/pom.xml b/modules/jooby-mongodb-rx/pom.xml index 7af7fa4447..62804e2c09 100644 --- a/modules/jooby-mongodb-rx/pom.xml +++ b/modules/jooby-mongodb-rx/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-mongodb/pom.xml b/modules/jooby-mongodb/pom.xml index 8c4cbff457..bbcb13ae1f 100644 --- a/modules/jooby-mongodb/pom.xml +++ b/modules/jooby-mongodb/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-morphia/pom.xml b/modules/jooby-morphia/pom.xml index 20af7c8571..06b106f601 100644 --- a/modules/jooby-morphia/pom.xml +++ b/modules/jooby-morphia/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-neo4j/pom.xml b/modules/jooby-neo4j/pom.xml index 420278dc65..aa5ade1026 100644 --- a/modules/jooby-neo4j/pom.xml +++ b/modules/jooby-neo4j/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-netty/pom.xml b/modules/jooby-netty/pom.xml index 181cd724a0..aa5f6d9c25 100644 --- a/modules/jooby-netty/pom.xml +++ b/modules/jooby-netty/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-pac4j/pom.xml b/modules/jooby-pac4j/pom.xml index 99bddee2ca..981b1e0ebf 100644 --- a/modules/jooby-pac4j/pom.xml +++ b/modules/jooby-pac4j/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-pac4j2/pom.xml b/modules/jooby-pac4j2/pom.xml index b0c16df645..0b54e37fbf 100644 --- a/modules/jooby-pac4j2/pom.xml +++ b/modules/jooby-pac4j2/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-pebble/pom.xml b/modules/jooby-pebble/pom.xml index afe2fcbcd2..b21d0ef91a 100644 --- a/modules/jooby-pebble/pom.xml +++ b/modules/jooby-pebble/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-quartz/pom.xml b/modules/jooby-quartz/pom.xml index 26e32d2e2f..5776ad804f 100644 --- a/modules/jooby-quartz/pom.xml +++ b/modules/jooby-quartz/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-querydsl/pom.xml b/modules/jooby-querydsl/pom.xml index ab4e0173ab..c3d7130d62 100644 --- a/modules/jooby-querydsl/pom.xml +++ b/modules/jooby-querydsl/pom.xml @@ -4,7 +4,7 @@ modules org.jooby - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-reactor/pom.xml b/modules/jooby-reactor/pom.xml index 1fe9f06979..2a05b7c658 100644 --- a/modules/jooby-reactor/pom.xml +++ b/modules/jooby-reactor/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-requery/pom.xml b/modules/jooby-requery/pom.xml index bc4119227d..417ad0f672 100644 --- a/modules/jooby-requery/pom.xml +++ b/modules/jooby-requery/pom.xml @@ -4,7 +4,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT jooby-requery requery module diff --git a/modules/jooby-rocker/pom.xml b/modules/jooby-rocker/pom.xml index e401dcc45d..f244ae3618 100644 --- a/modules/jooby-rocker/pom.xml +++ b/modules/jooby-rocker/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT jooby-rocker jooby-rocker diff --git a/modules/jooby-run/pom.xml b/modules/jooby-run/pom.xml index 84f4d8b04d..9eae5bafd5 100644 --- a/modules/jooby-run/pom.xml +++ b/modules/jooby-run/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-rxjava-jdbc/pom.xml b/modules/jooby-rxjava-jdbc/pom.xml index 5b9c2d27c9..ab045fe8ea 100644 --- a/modules/jooby-rxjava-jdbc/pom.xml +++ b/modules/jooby-rxjava-jdbc/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-rxjava/pom.xml b/modules/jooby-rxjava/pom.xml index d01fb2092d..b4f5250881 100644 --- a/modules/jooby-rxjava/pom.xml +++ b/modules/jooby-rxjava/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-scanner/pom.xml b/modules/jooby-scanner/pom.xml index f2f04b1c3c..550541afdf 100644 --- a/modules/jooby-scanner/pom.xml +++ b/modules/jooby-scanner/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-servlet/pom.xml b/modules/jooby-servlet/pom.xml index 8020ff91ac..efd5998b5d 100644 --- a/modules/jooby-servlet/pom.xml +++ b/modules/jooby-servlet/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-sitemap/pom.xml b/modules/jooby-sitemap/pom.xml index 083aab03ad..8af172d794 100644 --- a/modules/jooby-sitemap/pom.xml +++ b/modules/jooby-sitemap/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-spymemcached/pom.xml b/modules/jooby-spymemcached/pom.xml index 5e1904358e..8015bf61b4 100644 --- a/modules/jooby-spymemcached/pom.xml +++ b/modules/jooby-spymemcached/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-thymeleaf/pom.xml b/modules/jooby-thymeleaf/pom.xml index 6e4f396e38..b0ef7d7417 100644 --- a/modules/jooby-thymeleaf/pom.xml +++ b/modules/jooby-thymeleaf/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-unbescape/pom.xml b/modules/jooby-unbescape/pom.xml index 5be6c783bd..989caba606 100644 --- a/modules/jooby-unbescape/pom.xml +++ b/modules/jooby-unbescape/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-undertow/pom.xml b/modules/jooby-undertow/pom.xml index 52057d1ca3..4493f10943 100644 --- a/modules/jooby-undertow/pom.xml +++ b/modules/jooby-undertow/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-whoops/pom.xml b/modules/jooby-whoops/pom.xml index 851cb42640..e956860f38 100644 --- a/modules/jooby-whoops/pom.xml +++ b/modules/jooby-whoops/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/jooby-yasson/pom.xml b/modules/jooby-yasson/pom.xml index cbaadffe43..b6629e2e96 100644 --- a/modules/jooby-yasson/pom.xml +++ b/modules/jooby-yasson/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.3 + 1.6.4-SNAPSHOT 4.0.0 diff --git a/modules/pom.xml b/modules/pom.xml index dd8290d935..6ae1eded26 100644 --- a/modules/pom.xml +++ b/modules/pom.xml @@ -6,7 +6,7 @@ org.jooby jooby-project - 1.6.3 + 1.6.4-SNAPSHOT modules diff --git a/pom.xml b/pom.xml index cc5465d199..5b030effcb 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ 4.0.0 org.jooby jooby-project - 1.6.3 + 1.6.4-SNAPSHOT pom jooby-project From 34856a738829d8fedca4ed27bd6ff413af87186f Mon Sep 17 00:00:00 2001 From: Istvan Meszaros Date: Wed, 14 Aug 2019 16:50:08 +0200 Subject: [PATCH 70/93] Avoiding possible XSS attack through the default error handler. See jooby-project/jooby#1366 --- jooby/src/main/java/org/jooby/Err.java | 22 ++++++++++-- .../org/jooby/internal/HttpHandlerImpl.java | 2 +- .../java/org/jooby/internal/RouteImpl.java | 2 +- .../java/org/jooby/DefaultErrHandlerTest.java | 34 +++++++++++++++++++ 4 files changed, 55 insertions(+), 5 deletions(-) diff --git a/jooby/src/main/java/org/jooby/Err.java b/jooby/src/main/java/org/jooby/Err.java index cb202aa0ae..d28c24d1b4 100644 --- a/jooby/src/main/java/org/jooby/Err.java +++ b/jooby/src/main/java/org/jooby/Err.java @@ -205,7 +205,11 @@ import java.util.LinkedHashMap; import java.util.Map; +import java.util.Objects; import java.util.Optional; +import java.util.function.BiFunction; +import java.util.function.Function; +import java.util.function.Supplier; import com.typesafe.config.Config; import org.jooby.funzy.Try; @@ -287,12 +291,24 @@ public void handle(final Request req, final Response rsp, final Err ex) throws T log.error("execution of: {}{} resulted in exception\nRoute:\n{}\n\nStacktrace:", req.method(), req.path(), req.route().print(6), ex); Config conf = req.require(Config.class); + Env env = req.require(Env.class); boolean stackstrace = Try.apply(() -> conf.getBoolean("err.stacktrace")) - .orElse(req.require(Env.class).name().equals("dev")); + .orElse(env.name().equals("dev")); + + Function xssFilter = env.xss("html").compose(Objects::toString); + BiFunction escaper = (k, v) -> xssFilter.apply(v); + + Supplier> detailsProvider = () -> { + Map map = ex.toMap(stackstrace); + map.compute("message", escaper); + map.compute("reason", escaper); + return map; + }; + rsp.send( Results - .when(MediaType.html, () -> Results.html(VIEW).put("err", ex.toMap(stackstrace))) - .when(MediaType.all, () -> ex.toMap(stackstrace))); + .when(MediaType.html, () -> Results.html(VIEW).put("err", detailsProvider.get())) + .when(MediaType.all, detailsProvider::get)); } } diff --git a/jooby/src/main/java/org/jooby/internal/HttpHandlerImpl.java b/jooby/src/main/java/org/jooby/internal/HttpHandlerImpl.java index 62df0a7574..4b3c38bea6 100644 --- a/jooby/src/main/java/org/jooby/internal/HttpHandlerImpl.java +++ b/jooby/src/main/java/org/jooby/internal/HttpHandlerImpl.java @@ -627,7 +627,7 @@ private static Route[] routes(final Set routeDefs, final Strin // default /favicon.ico handler: rsp.status(Status.NOT_FOUND).end(); } else { - throw new Err(Status.NOT_FOUND, req.path(true)); + throw new Err(Status.NOT_FOUND, req.path()); } } }, method, path, "err", accept)); diff --git a/jooby/src/main/java/org/jooby/internal/RouteImpl.java b/jooby/src/main/java/org/jooby/internal/RouteImpl.java index 253ec4fa49..3d12d6dbc9 100644 --- a/jooby/src/main/java/org/jooby/internal/RouteImpl.java +++ b/jooby/src/main/java/org/jooby/internal/RouteImpl.java @@ -233,7 +233,7 @@ public class RouteImpl implements RouteWithFilter { public static RouteWithFilter notFound(final String method, final String path) { return new FallbackRoute("404", method, path, MediaType.ALL, (req, rsp, chain) -> { if (!rsp.status().isPresent()) { - throw new Err(Status.NOT_FOUND, req.path(true)); + throw new Err(Status.NOT_FOUND, req.path()); } }); } diff --git a/jooby/src/test/java/org/jooby/DefaultErrHandlerTest.java b/jooby/src/test/java/org/jooby/DefaultErrHandlerTest.java index 8eebcb3b75..cdfeb5b4c9 100644 --- a/jooby/src/test/java/org/jooby/DefaultErrHandlerTest.java +++ b/jooby/src/test/java/org/jooby/DefaultErrHandlerTest.java @@ -1,6 +1,8 @@ package org.jooby; import com.google.common.collect.ImmutableList; +import com.google.common.escape.Escapers; +import com.google.common.html.HtmlEscapers; import com.typesafe.config.Config; import static org.easymock.EasyMock.expect; import org.jooby.test.MockUnit; @@ -66,6 +68,7 @@ private MockUnit.Block handleErr(Throwable ex, boolean stacktrace) { expect(conf.getBoolean("err.stacktrace")).andReturn(stacktrace); Env env = unit.get(Env.class); expect(env.name()).andReturn("dev"); + expect(env.xss("html")).andReturn(HtmlEscapers.htmlEscaper()::escape); Request req = unit.get(Request.class); @@ -112,6 +115,37 @@ public void handleWithErrMessage() throws Exception { }); } + @SuppressWarnings({"unchecked"}) + @Test + public void handleWithHtmlErrMessage() throws Exception { + Err ex = new Err(500, "Something something dark"); + + StringWriter writer = new StringWriter(); + ex.printStackTrace(new PrintWriter(writer)); + String[] stacktrace = writer.toString().replace("\r", "").split("\\n"); + + new MockUnit(Request.class, Response.class, Route.class, Env.class, Config.class) + .expect(handleErr(ex, true)) + .run(unit -> { + + Request req = unit.get(Request.class); + Response rsp = unit.get(Response.class); + + new Err.DefHandler().handle(req, rsp, ex); + }, + unit -> { + Result result = unit.captured(Result.class).iterator().next(); + View view = (View) result.ifGet(ImmutableList.of(MediaType.html)).get(); + assertEquals("err", view.name()); + checkErr(stacktrace, "Server Error(500): Something something <em>dark</em>", + (Map) view.model() + .get("err")); + + Object hash = result.ifGet(MediaType.ALL).get(); + assertEquals(4, ((Map) hash).size()); + }); + } + private void checkErr(final String[] stacktrace, final String message, final Map err) { assertEquals(message, err.remove("message")); From 395dab7e80474ac0c2c32d81f61cda2c8331a46b Mon Sep 17 00:00:00 2001 From: Istvan Meszaros Date: Thu, 15 Aug 2019 07:12:52 +0200 Subject: [PATCH 71/93] Removing the Supplier for clarity. --- jooby/src/main/java/org/jooby/Err.java | 18 ++++++------------ .../java/org/jooby/DefaultErrHandlerTest.java | 12 +++++++----- 2 files changed, 13 insertions(+), 17 deletions(-) diff --git a/jooby/src/main/java/org/jooby/Err.java b/jooby/src/main/java/org/jooby/Err.java index d28c24d1b4..a8f04aaac7 100644 --- a/jooby/src/main/java/org/jooby/Err.java +++ b/jooby/src/main/java/org/jooby/Err.java @@ -203,10 +203,7 @@ */ package org.jooby; -import java.util.LinkedHashMap; -import java.util.Map; -import java.util.Objects; -import java.util.Optional; +import java.util.*; import java.util.function.BiFunction; import java.util.function.Function; import java.util.function.Supplier; @@ -298,17 +295,14 @@ public void handle(final Request req, final Response rsp, final Err ex) throws T Function xssFilter = env.xss("html").compose(Objects::toString); BiFunction escaper = (k, v) -> xssFilter.apply(v); - Supplier> detailsProvider = () -> { - Map map = ex.toMap(stackstrace); - map.compute("message", escaper); - map.compute("reason", escaper); - return map; - }; + Map details = ex.toMap(stackstrace); + details.compute("message", escaper); + details.compute("reason", escaper); rsp.send( Results - .when(MediaType.html, () -> Results.html(VIEW).put("err", detailsProvider.get())) - .when(MediaType.all, detailsProvider::get)); + .when(MediaType.html, () -> Results.html(VIEW).put("err", details)) + .when(MediaType.all, () -> details)); } } diff --git a/jooby/src/test/java/org/jooby/DefaultErrHandlerTest.java b/jooby/src/test/java/org/jooby/DefaultErrHandlerTest.java index cdfeb5b4c9..18649551e5 100644 --- a/jooby/src/test/java/org/jooby/DefaultErrHandlerTest.java +++ b/jooby/src/test/java/org/jooby/DefaultErrHandlerTest.java @@ -17,6 +17,7 @@ import java.io.PrintWriter; import java.io.StringWriter; +import java.util.LinkedHashMap; import java.util.Map; @RunWith(PowerMockRunner.class) @@ -148,11 +149,12 @@ public void handleWithHtmlErrMessage() throws Exception { private void checkErr(final String[] stacktrace, final String message, final Map err) { - assertEquals(message, err.remove("message")); - assertEquals("Server Error", err.remove("reason")); - assertEquals(500, err.remove("status")); - assertArrayEquals(stacktrace, (String[]) err.remove("stacktrace")); - assertEquals(err.toString(), 0, err.size()); + final Map copy = new LinkedHashMap<>(err); + assertEquals(message, copy.remove("message")); + assertEquals("Server Error", copy.remove("reason")); + assertEquals(500, copy.remove("status")); + assertArrayEquals(stacktrace, (String[]) copy.remove("stacktrace")); + assertEquals(copy.toString(), 0, copy.size()); } } From 97a4f1fbf062d2c25bb5b168754ff5dc0fa79a5a Mon Sep 17 00:00:00 2001 From: Edgar Espina Date: Mon, 26 Aug 2019 10:49:23 -0300 Subject: [PATCH 72/93] prepare for next release version --- jooby/src/test/java/org/jooby/internal/RouteImplTest.java | 2 +- .../main/java/org/jooby/internal/jetty/JettyHandler.java | 2 +- .../java/org/jooby/internal/jetty/JettyHandlerTest.java | 2 +- pom.xml | 6 +++--- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/jooby/src/test/java/org/jooby/internal/RouteImplTest.java b/jooby/src/test/java/org/jooby/internal/RouteImplTest.java index ff42c9dd9f..ff1c1dbacf 100644 --- a/jooby/src/test/java/org/jooby/internal/RouteImplTest.java +++ b/jooby/src/test/java/org/jooby/internal/RouteImplTest.java @@ -25,7 +25,7 @@ public void notFound() throws Exception { expect(rsp.status()).andReturn(Optional.empty()); Request req = unit.get(Request.class); - expect(req.path(true)).andReturn("/x"); + expect(req.path()).andReturn("/x"); }) .run(unit -> { RouteImpl.notFound("GET", "/x") diff --git a/modules/jooby-jetty/src/main/java/org/jooby/internal/jetty/JettyHandler.java b/modules/jooby-jetty/src/main/java/org/jooby/internal/jetty/JettyHandler.java index 738ad06039..b7a3478d5b 100644 --- a/modules/jooby-jetty/src/main/java/org/jooby/internal/jetty/JettyHandler.java +++ b/modules/jooby-jetty/src/main/java/org/jooby/internal/jetty/JettyHandler.java @@ -258,7 +258,7 @@ public void handle(final String target, final Request baseRequest, String type = baseRequest.getContentType(); boolean multipart = false; if (type != null && type.toLowerCase().startsWith(MediaType.multipart.name())) { - baseRequest.setAttribute(Request.__MULTIPART_CONFIG_ELEMENT, multiPartConfig); + baseRequest.setAttribute(Request.MULTIPART_CONFIG_ELEMENT, multiPartConfig); multipart = true; } diff --git a/modules/jooby-jetty/src/test/java/org/jooby/internal/jetty/JettyHandlerTest.java b/modules/jooby-jetty/src/test/java/org/jooby/internal/jetty/JettyHandlerTest.java index 7310c19486..ed94d516db 100644 --- a/modules/jooby-jetty/src/test/java/org/jooby/internal/jetty/JettyHandlerTest.java +++ b/modules/jooby-jetty/src/test/java/org/jooby/internal/jetty/JettyHandlerTest.java @@ -39,7 +39,7 @@ public void handleShouldSetMultipartConfig() throws Exception { expect(request.getContentType()).andReturn("Multipart/Form-Data"); - request.setAttribute(eq(Request.__MULTIPART_CONFIG_ELEMENT), + request.setAttribute(eq(Request.MULTIPART_CONFIG_ELEMENT), isA(MultipartConfigElement.class)); }) .expect(unit -> { diff --git a/pom.xml b/pom.xml index 5b030effcb..f615fbf043 100644 --- a/pom.xml +++ b/pom.xml @@ -3155,7 +3155,7 @@ org.eclipse.jdt.apt.processorOptions/defaultOverwrite=true 2.5.13 4.7 3.0.17 - 6.2 + 7.2-beta 1.9.40 2.1.2 1.11.358 @@ -3213,7 +3213,7 @@ org.eclipse.jdt.apt.processorOptions/defaultOverwrite=true 3.3.0 2.9.0 1.19.4 - 9.4.19.v20190610 + 9.4.20.v20190813 1.4.0 1.11.3 2.1.3 @@ -3236,7 +3236,7 @@ org.eclipse.jdt.apt.processorOptions/defaultOverwrite=true 3.4.0.52.4 3.4.0.52 3.3.2 - 4.1.37.Final + 4.1.39.Final 1.9.9 2.3.1 2.4.0 From 877deca5a7021c9def5a6f1957e9c17a2afa9354 Mon Sep 17 00:00:00 2001 From: Edgar Espina Date: Tue, 27 Aug 2019 08:58:30 -0300 Subject: [PATCH 73/93] 1.6.4 --- README.md | 4 ++-- jooby/pom.xml | 2 +- modules/coverage-report/pom.xml | 2 +- modules/jooby-akka/README.md | 6 +++--- modules/jooby-akka/pom.xml | 2 +- modules/jooby-apitool/README.md | 8 ++++---- modules/jooby-apitool/pom.xml | 2 +- modules/jooby-archetype/pom.xml | 2 +- modules/jooby-assets-autoprefixer/README.md | 6 +++--- modules/jooby-assets-autoprefixer/pom.xml | 2 +- modules/jooby-assets-babel/README.md | 8 ++++---- modules/jooby-assets-babel/pom.xml | 2 +- modules/jooby-assets-clean-css/README.md | 6 +++--- modules/jooby-assets-clean-css/pom.xml | 2 +- modules/jooby-assets-closure-compiler/README.md | 6 +++--- modules/jooby-assets-closure-compiler/pom.xml | 2 +- modules/jooby-assets-csslint/README.md | 6 +++--- modules/jooby-assets-csslint/pom.xml | 2 +- modules/jooby-assets-j2v8/pom.xml | 2 +- modules/jooby-assets-jscs/README.md | 6 +++--- modules/jooby-assets-jscs/pom.xml | 2 +- modules/jooby-assets-jshint/README.md | 6 +++--- modules/jooby-assets-jshint/pom.xml | 2 +- modules/jooby-assets-less/README.md | 6 +++--- modules/jooby-assets-less/pom.xml | 2 +- modules/jooby-assets-less4j/README.md | 6 +++--- modules/jooby-assets-less4j/pom.xml | 2 +- modules/jooby-assets-ng-annotate/README.md | 6 +++--- modules/jooby-assets-ng-annotate/pom.xml | 2 +- modules/jooby-assets-nodejs/pom.xml | 2 +- modules/jooby-assets-requirejs/README.md | 6 +++--- modules/jooby-assets-requirejs/pom.xml | 2 +- modules/jooby-assets-rollup/README.md | 6 +++--- modules/jooby-assets-rollup/pom.xml | 2 +- modules/jooby-assets-sass/README.md | 6 +++--- modules/jooby-assets-sass/pom.xml | 2 +- modules/jooby-assets-svg-sprites/README.md | 6 +++--- modules/jooby-assets-svg-sprites/pom.xml | 2 +- modules/jooby-assets-svg-symbol/README.md | 6 +++--- modules/jooby-assets-svg-symbol/pom.xml | 2 +- modules/jooby-assets-uglify/README.md | 6 +++--- modules/jooby-assets-uglify/pom.xml | 2 +- modules/jooby-assets-yui-compressor/README.md | 6 +++--- modules/jooby-assets-yui-compressor/pom.xml | 2 +- modules/jooby-assets/README.md | 6 +++--- modules/jooby-assets/pom.xml | 2 +- modules/jooby-aws/README.md | 6 +++--- modules/jooby-aws/pom.xml | 2 +- modules/jooby-banner/README.md | 6 +++--- modules/jooby-banner/pom.xml | 2 +- modules/jooby-bom/pom.xml | 10 +++++----- modules/jooby-caffeine/README.md | 6 +++--- modules/jooby-caffeine/pom.xml | 2 +- modules/jooby-camel/README.md | 6 +++--- modules/jooby-camel/pom.xml | 2 +- modules/jooby-cassandra/README.md | 8 ++++---- modules/jooby-cassandra/pom.xml | 2 +- modules/jooby-commons-email/README.md | 6 +++--- modules/jooby-commons-email/pom.xml | 2 +- modules/jooby-consul/README.md | 6 +++--- modules/jooby-consul/pom.xml | 2 +- modules/jooby-couchbase/README.md | 8 ++++---- modules/jooby-couchbase/pom.xml | 2 +- modules/jooby-crash/README.md | 6 +++--- modules/jooby-crash/pom.xml | 2 +- modules/jooby-csl/README.md | 6 +++--- modules/jooby-csl/pom.xml | 2 +- modules/jooby-dist/pom.xml | 2 +- modules/jooby-ebean/README.md | 6 +++--- modules/jooby-ebean/pom.xml | 2 +- modules/jooby-ehcache/README.md | 8 ++++---- modules/jooby-ehcache/pom.xml | 2 +- modules/jooby-elasticsearch/README.md | 6 +++--- modules/jooby-elasticsearch/pom.xml | 2 +- modules/jooby-eventbus/README.md | 6 +++--- modules/jooby-eventbus/pom.xml | 2 +- modules/jooby-executor/README.md | 6 +++--- modules/jooby-executor/pom.xml | 2 +- modules/jooby-exposed/README.md | 4 ++-- modules/jooby-exposed/pom.xml | 2 +- modules/jooby-filewatcher/README.md | 6 +++--- modules/jooby-filewatcher/pom.xml | 2 +- modules/jooby-flyway/README.md | 6 +++--- modules/jooby-flyway/pom.xml | 2 +- modules/jooby-frontend/README.md | 6 +++--- modules/jooby-frontend/pom.xml | 2 +- modules/jooby-ftl/README.md | 6 +++--- modules/jooby-ftl/pom.xml | 2 +- modules/jooby-gradle-plugin/README.md | 6 +++--- modules/jooby-gradle-plugin/pom.xml | 2 +- modules/jooby-gson/README.md | 6 +++--- modules/jooby-gson/pom.xml | 2 +- modules/jooby-guava-cache/README.md | 8 ++++---- modules/jooby-guava-cache/pom.xml | 2 +- modules/jooby-hazelcast/README.md | 8 ++++---- modules/jooby-hazelcast/pom.xml | 2 +- modules/jooby-hbm/README.md | 6 +++--- modules/jooby-hbm/pom.xml | 2 +- modules/jooby-hbs/README.md | 6 +++--- modules/jooby-hbs/pom.xml | 2 +- modules/jooby-hbv/README.md | 6 +++--- modules/jooby-hbv/pom.xml | 2 +- modules/jooby-jackson/README.md | 6 +++--- modules/jooby-jackson/pom.xml | 2 +- modules/jooby-jade/README.md | 6 +++--- modules/jooby-jade/pom.xml | 2 +- modules/jooby-jdbc/README.md | 6 +++--- modules/jooby-jdbc/pom.xml | 2 +- modules/jooby-jdbi/README.md | 6 +++--- modules/jooby-jdbi/pom.xml | 2 +- modules/jooby-jdbi3/README.md | 6 +++--- modules/jooby-jdbi3/pom.xml | 2 +- modules/jooby-jedis/README.md | 8 ++++---- modules/jooby-jedis/pom.xml | 2 +- modules/jooby-jetty/README.md | 6 +++--- modules/jooby-jetty/pom.xml | 2 +- modules/jooby-jongo/README.md | 6 +++--- modules/jooby-jongo/pom.xml | 2 +- modules/jooby-jooq/README.md | 6 +++--- modules/jooby-jooq/pom.xml | 2 +- modules/jooby-lang-kotlin/README.md | 6 +++--- modules/jooby-lang-kotlin/pom.xml | 2 +- modules/jooby-livereload/README.md | 6 +++--- modules/jooby-livereload/pom.xml | 2 +- modules/jooby-maven-plugin/README.md | 10 +++++----- modules/jooby-maven-plugin/pom.xml | 2 +- modules/jooby-metrics/README.md | 6 +++--- modules/jooby-metrics/pom.xml | 2 +- modules/jooby-micrometer/README.md | 6 +++--- modules/jooby-micrometer/pom.xml | 2 +- modules/jooby-mongodb-rx/README.md | 6 +++--- modules/jooby-mongodb-rx/pom.xml | 2 +- modules/jooby-mongodb/README.md | 8 ++++---- modules/jooby-mongodb/pom.xml | 2 +- modules/jooby-morphia/README.md | 6 +++--- modules/jooby-morphia/pom.xml | 2 +- modules/jooby-neo4j/README.md | 8 ++++---- modules/jooby-neo4j/pom.xml | 2 +- modules/jooby-netty/README.md | 6 +++--- modules/jooby-netty/pom.xml | 2 +- modules/jooby-pac4j/README.md | 6 +++--- modules/jooby-pac4j/pom.xml | 2 +- modules/jooby-pac4j2/README.md | 6 +++--- modules/jooby-pac4j2/pom.xml | 2 +- modules/jooby-pebble/README.md | 6 +++--- modules/jooby-pebble/pom.xml | 2 +- modules/jooby-quartz/README.md | 6 +++--- modules/jooby-quartz/pom.xml | 2 +- modules/jooby-querydsl/README.md | 6 +++--- modules/jooby-querydsl/pom.xml | 2 +- modules/jooby-reactor/README.md | 6 +++--- modules/jooby-reactor/pom.xml | 2 +- modules/jooby-requery/README.md | 6 +++--- modules/jooby-requery/pom.xml | 2 +- modules/jooby-rocker/README.md | 6 +++--- modules/jooby-rocker/pom.xml | 2 +- modules/jooby-run/pom.xml | 2 +- modules/jooby-rxjava-jdbc/README.md | 6 +++--- modules/jooby-rxjava-jdbc/pom.xml | 2 +- modules/jooby-rxjava/README.md | 6 +++--- modules/jooby-rxjava/pom.xml | 2 +- modules/jooby-scanner/README.md | 6 +++--- modules/jooby-scanner/pom.xml | 2 +- modules/jooby-servlet/README.md | 4 ++-- modules/jooby-servlet/pom.xml | 2 +- modules/jooby-sitemap/README.md | 6 +++--- modules/jooby-sitemap/pom.xml | 2 +- modules/jooby-spymemcached/README.md | 8 ++++---- modules/jooby-spymemcached/pom.xml | 2 +- modules/jooby-thymeleaf/README.md | 6 +++--- modules/jooby-thymeleaf/pom.xml | 2 +- modules/jooby-unbescape/README.md | 6 +++--- modules/jooby-unbescape/pom.xml | 2 +- modules/jooby-undertow/README.md | 6 +++--- modules/jooby-undertow/pom.xml | 2 +- modules/jooby-whoops/README.md | 6 +++--- modules/jooby-whoops/pom.xml | 2 +- modules/jooby-yasson/README.md | 6 +++--- modules/jooby-yasson/pom.xml | 2 +- modules/pom.xml | 2 +- pom.xml | 2 +- 181 files changed, 367 insertions(+), 367 deletions(-) diff --git a/README.md b/README.md index a5c448f40f..d2ef73759e 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby.svg)](https://javadoc.io/doc/org.jooby/jooby/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby.svg)](https://javadoc.io/doc/org.jooby/jooby/1.6.4) [![Become a Patreon](https://img.shields.io/badge/patreon-donate-orange.svg)](https://patreon.com/edgarespina) [![Build Status](https://travis-ci.org/jooby-project/jooby.svg?branch=master)](https://travis-ci.org/jooby-project/jooby) [![coveralls.io](https://img.shields.io/coveralls/jooby-project/jooby.svg)](https://coveralls.io/r/jooby-project/jooby?branch=master) diff --git a/jooby/pom.xml b/jooby/pom.xml index f77290c665..d6897b6148 100644 --- a/jooby/pom.xml +++ b/jooby/pom.xml @@ -6,7 +6,7 @@ org.jooby jooby-project - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/coverage-report/pom.xml b/modules/coverage-report/pom.xml index 0dc44bce33..115eaf8d95 100644 --- a/modules/coverage-report/pom.xml +++ b/modules/coverage-report/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-akka/README.md b/modules/jooby-akka/README.md index aa0a444d69..072ec200aa 100644 --- a/modules/jooby-akka/README.md +++ b/modules/jooby-akka/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-akka/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-akka/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-akka.svg)](https://javadoc.io/doc/org.jooby/jooby-akka/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-akka/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-akka/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-akka.svg)](https://javadoc.io/doc/org.jooby/jooby-akka/1.6.4) [![jooby-akka website](https://img.shields.io/badge/jooby-akka-brightgreen.svg)](http://jooby.org/doc/akka) # akka @@ -15,7 +15,7 @@ Small module to build concurrent & distributed applications via [Akka](http://ak org.jooby jooby-akka - 1.6.3 + 1.6.4 ``` diff --git a/modules/jooby-akka/pom.xml b/modules/jooby-akka/pom.xml index d04180247c..2eda4989a3 100644 --- a/modules/jooby-akka/pom.xml +++ b/modules/jooby-akka/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-apitool/README.md b/modules/jooby-apitool/README.md index b7be1de2b3..2ad4be4b2f 100644 --- a/modules/jooby-apitool/README.md +++ b/modules/jooby-apitool/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-apitool/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-apitool/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-apitool.svg)](https://javadoc.io/doc/org.jooby/jooby-apitool/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-apitool/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-apitool/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-apitool.svg)](https://javadoc.io/doc/org.jooby/jooby-apitool/1.6.4) [![jooby-apitool website](https://img.shields.io/badge/jooby-apitool-brightgreen.svg)](http://jooby.org/doc/apitool) # API tool @@ -23,7 +23,7 @@ This module generates live documentation from your HTTP API (source code). org.jooby jooby-apitool - 1.6.3 + 1.6.4 ``` @@ -187,7 +187,7 @@ Go to ```build.gradle``` and add these lines: ```gradke buildscript { dependencies { - classpath group: 'org.jooby', name: 'jooby-gradle-plugin', version: '1.6.3' + classpath group: 'org.jooby', name: 'jooby-gradle-plugin', version: '1.6.4' } } apply plugin: 'jooby' diff --git a/modules/jooby-apitool/pom.xml b/modules/jooby-apitool/pom.xml index 5c61df5027..38990c4f39 100644 --- a/modules/jooby-apitool/pom.xml +++ b/modules/jooby-apitool/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-archetype/pom.xml b/modules/jooby-archetype/pom.xml index 918515a749..b6d71d8e95 100644 --- a/modules/jooby-archetype/pom.xml +++ b/modules/jooby-archetype/pom.xml @@ -7,7 +7,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 jooby-archetype diff --git a/modules/jooby-assets-autoprefixer/README.md b/modules/jooby-assets-autoprefixer/README.md index 41030c1c1f..1550b8d16a 100644 --- a/modules/jooby-assets-autoprefixer/README.md +++ b/modules/jooby-assets-autoprefixer/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-autoprefixer/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-autoprefixer/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-autoprefixer.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-autoprefixer/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-autoprefixer/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-autoprefixer/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-autoprefixer.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-autoprefixer/1.6.4) [![jooby-assets-autoprefixer website](https://img.shields.io/badge/jooby-assets-autoprefixer-brightgreen.svg)](http://jooby.org/doc/assets-autoprefixer) # auto-prefixer @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-autoprefixer - 1.6.3 + 1.6.4 provided ``` diff --git a/modules/jooby-assets-autoprefixer/pom.xml b/modules/jooby-assets-autoprefixer/pom.xml index c90087de9d..b61072e1c7 100644 --- a/modules/jooby-assets-autoprefixer/pom.xml +++ b/modules/jooby-assets-autoprefixer/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-assets-babel/README.md b/modules/jooby-assets-babel/README.md index e314cae710..33ca3f4bbf 100644 --- a/modules/jooby-assets-babel/README.md +++ b/modules/jooby-assets-babel/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-babel/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-babel/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-babel.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-babel/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-babel/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-babel/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-babel.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-babel/1.6.4) [![jooby-assets-babel website](https://img.shields.io/badge/jooby-assets-babel-brightgreen.svg)](http://jooby.org/doc/assets-babel) # babel @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-babel - 1.6.3 + 1.6.4 provided ``` @@ -38,7 +38,7 @@ assets { org.jooby jooby-assets-babel - 1.6.3 + 1.6.4 provided ``` diff --git a/modules/jooby-assets-babel/pom.xml b/modules/jooby-assets-babel/pom.xml index a2e8215176..951d9749a9 100644 --- a/modules/jooby-assets-babel/pom.xml +++ b/modules/jooby-assets-babel/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-assets-clean-css/README.md b/modules/jooby-assets-clean-css/README.md index 7ea116d798..80e36ebad4 100644 --- a/modules/jooby-assets-clean-css/README.md +++ b/modules/jooby-assets-clean-css/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-clean-css/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-clean-css/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-clean-css.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-clean-css/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-clean-css/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-clean-css/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-clean-css.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-clean-css/1.6.4) [![jooby-assets-clean-css website](https://img.shields.io/badge/jooby-assets-clean-css-brightgreen.svg)](http://jooby.org/doc/assets-clean-css) # clean-css @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-clean-css - 1.6.3 + 1.6.4 provided ``` diff --git a/modules/jooby-assets-clean-css/pom.xml b/modules/jooby-assets-clean-css/pom.xml index e5b4e44610..7385b7a557 100644 --- a/modules/jooby-assets-clean-css/pom.xml +++ b/modules/jooby-assets-clean-css/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-assets-closure-compiler/README.md b/modules/jooby-assets-closure-compiler/README.md index 13a26c89a4..77bfece010 100644 --- a/modules/jooby-assets-closure-compiler/README.md +++ b/modules/jooby-assets-closure-compiler/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-closure-compiler/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-closure-compiler/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-closure-compiler.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-closure-compiler/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-closure-compiler/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-closure-compiler/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-closure-compiler.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-closure-compiler/1.6.4) [![jooby-assets-closure-compiler website](https://img.shields.io/badge/jooby-assets-closure-compiler-brightgreen.svg)](http://jooby.org/doc/assets-closure-compiler) # closure-compiler @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-closure-compiler - 1.6.3 + 1.6.4 provided ``` diff --git a/modules/jooby-assets-closure-compiler/pom.xml b/modules/jooby-assets-closure-compiler/pom.xml index 363b979760..442fc3da73 100644 --- a/modules/jooby-assets-closure-compiler/pom.xml +++ b/modules/jooby-assets-closure-compiler/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-assets-csslint/README.md b/modules/jooby-assets-csslint/README.md index 5558e8ca51..cf1b7982cf 100644 --- a/modules/jooby-assets-csslint/README.md +++ b/modules/jooby-assets-csslint/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-csslint/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-csslint/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-csslint.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-csslint/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-csslint/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-csslint/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-csslint.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-csslint/1.6.4) [![jooby-assets-csslint website](https://img.shields.io/badge/jooby-assets-csslint-brightgreen.svg)](http://jooby.org/doc/assets-csslint) # csslint @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-csslint - 1.6.3 + 1.6.4 provided ``` diff --git a/modules/jooby-assets-csslint/pom.xml b/modules/jooby-assets-csslint/pom.xml index 5de2622cd6..26401abffa 100644 --- a/modules/jooby-assets-csslint/pom.xml +++ b/modules/jooby-assets-csslint/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-assets-j2v8/pom.xml b/modules/jooby-assets-j2v8/pom.xml index 663621a380..b006d75fb8 100644 --- a/modules/jooby-assets-j2v8/pom.xml +++ b/modules/jooby-assets-j2v8/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-assets-jscs/README.md b/modules/jooby-assets-jscs/README.md index 0800232a93..e91ec107c6 100644 --- a/modules/jooby-assets-jscs/README.md +++ b/modules/jooby-assets-jscs/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-jscs/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-jscs/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-jscs.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-jscs/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-jscs/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-jscs/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-jscs.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-jscs/1.6.4) [![jooby-assets-jscs website](https://img.shields.io/badge/jooby-assets-jscs-brightgreen.svg)](http://jooby.org/doc/assets-jscs) # jscs @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-jscs - 1.6.3 + 1.6.4 provided ``` diff --git a/modules/jooby-assets-jscs/pom.xml b/modules/jooby-assets-jscs/pom.xml index 69e0d08d58..9864b9d008 100644 --- a/modules/jooby-assets-jscs/pom.xml +++ b/modules/jooby-assets-jscs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-assets-jshint/README.md b/modules/jooby-assets-jshint/README.md index 2d39627a11..e54810baba 100644 --- a/modules/jooby-assets-jshint/README.md +++ b/modules/jooby-assets-jshint/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-jshint/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-jshint/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-jshint.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-jshint/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-jshint/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-jshint/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-jshint.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-jshint/1.6.4) [![jooby-assets-jshint website](https://img.shields.io/badge/jooby-assets-jshint-brightgreen.svg)](http://jooby.org/doc/assets-jshint) # jshint @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-jshint - 1.6.3 + 1.6.4 provided ``` diff --git a/modules/jooby-assets-jshint/pom.xml b/modules/jooby-assets-jshint/pom.xml index fdeba7bad3..bd89621594 100644 --- a/modules/jooby-assets-jshint/pom.xml +++ b/modules/jooby-assets-jshint/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-assets-less/README.md b/modules/jooby-assets-less/README.md index 62d8c79f3a..d9ab52e01c 100644 --- a/modules/jooby-assets-less/README.md +++ b/modules/jooby-assets-less/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-less/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-less/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-less.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-less/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-less/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-less/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-less.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-less/1.6.4) [![jooby-assets-less website](https://img.shields.io/badge/jooby-assets-less-brightgreen.svg)](http://jooby.org/doc/assets-less) # less @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-less - 1.6.3 + 1.6.4 provided ``` diff --git a/modules/jooby-assets-less/pom.xml b/modules/jooby-assets-less/pom.xml index f6d21c481b..f049b172a5 100644 --- a/modules/jooby-assets-less/pom.xml +++ b/modules/jooby-assets-less/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-assets-less4j/README.md b/modules/jooby-assets-less4j/README.md index bdcf94f7ec..7da6377eb5 100644 --- a/modules/jooby-assets-less4j/README.md +++ b/modules/jooby-assets-less4j/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-less4j/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-less4j/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-less4j.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-less4j/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-less4j/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-less4j/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-less4j.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-less4j/1.6.4) [![jooby-assets-less4j website](https://img.shields.io/badge/jooby-assets-less4j-brightgreen.svg)](http://jooby.org/doc/assets-less4j) # less4j @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-less4j - 1.6.3 + 1.6.4 provided ``` diff --git a/modules/jooby-assets-less4j/pom.xml b/modules/jooby-assets-less4j/pom.xml index 3af5110d45..7ad7a6b0aa 100644 --- a/modules/jooby-assets-less4j/pom.xml +++ b/modules/jooby-assets-less4j/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-assets-ng-annotate/README.md b/modules/jooby-assets-ng-annotate/README.md index b160806db1..764aea9602 100644 --- a/modules/jooby-assets-ng-annotate/README.md +++ b/modules/jooby-assets-ng-annotate/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-ng-annotate/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-ng-annotate/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-ng-annotate.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-ng-annotate/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-ng-annotate/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-ng-annotate/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-ng-annotate.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-ng-annotate/1.6.4) [![jooby-assets-ng-annotate website](https://img.shields.io/badge/jooby-assets-ng-annotate-brightgreen.svg)](http://jooby.org/doc/assets-ng-annotate) # ng-annotate @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-ng-annotate - 1.6.3 + 1.6.4 provided ``` diff --git a/modules/jooby-assets-ng-annotate/pom.xml b/modules/jooby-assets-ng-annotate/pom.xml index 391d66f225..f5eba6b773 100644 --- a/modules/jooby-assets-ng-annotate/pom.xml +++ b/modules/jooby-assets-ng-annotate/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-assets-nodejs/pom.xml b/modules/jooby-assets-nodejs/pom.xml index c0ff31610f..259492e5df 100644 --- a/modules/jooby-assets-nodejs/pom.xml +++ b/modules/jooby-assets-nodejs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-assets-requirejs/README.md b/modules/jooby-assets-requirejs/README.md index 4a6d3324a0..c713d24f3e 100644 --- a/modules/jooby-assets-requirejs/README.md +++ b/modules/jooby-assets-requirejs/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-requirejs/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-requirejs/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-requirejs.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-requirejs/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-requirejs/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-requirejs/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-requirejs.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-requirejs/1.6.4) [![jooby-assets-requirejs website](https://img.shields.io/badge/jooby-assets-requirejs-brightgreen.svg)](http://jooby.org/doc/assets-requirejs) # rjs @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-requirejs - 1.6.3 + 1.6.4 provided ``` diff --git a/modules/jooby-assets-requirejs/pom.xml b/modules/jooby-assets-requirejs/pom.xml index ff24ea3d53..eed8a7366e 100644 --- a/modules/jooby-assets-requirejs/pom.xml +++ b/modules/jooby-assets-requirejs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-assets-rollup/README.md b/modules/jooby-assets-rollup/README.md index 3ac6224ef3..e7c2f8b926 100644 --- a/modules/jooby-assets-rollup/README.md +++ b/modules/jooby-assets-rollup/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-rollup/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-rollup/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-rollup.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-rollup/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-rollup/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-rollup/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-rollup.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-rollup/1.6.4) [![jooby-assets-rollup website](https://img.shields.io/badge/jooby-assets-rollup-brightgreen.svg)](http://jooby.org/doc/assets-rollup) # rollup.js @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-rollup.js - 1.6.3 + 1.6.4 provided ``` diff --git a/modules/jooby-assets-rollup/pom.xml b/modules/jooby-assets-rollup/pom.xml index a1188120f2..16f22aa857 100644 --- a/modules/jooby-assets-rollup/pom.xml +++ b/modules/jooby-assets-rollup/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-assets-sass/README.md b/modules/jooby-assets-sass/README.md index ee871a7358..969805acc6 100644 --- a/modules/jooby-assets-sass/README.md +++ b/modules/jooby-assets-sass/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-sass/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-sass/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-sass.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-sass/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-sass/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-sass/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-sass.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-sass/1.6.4) [![jooby-assets-sass website](https://img.shields.io/badge/jooby-assets-sass-brightgreen.svg)](http://jooby.org/doc/assets-sass) # sass @@ -13,7 +13,7 @@ org.jooby jooby-assets-sass - 1.6.3 + 1.6.4 provided ``` diff --git a/modules/jooby-assets-sass/pom.xml b/modules/jooby-assets-sass/pom.xml index efb1aec433..ed82cfae18 100644 --- a/modules/jooby-assets-sass/pom.xml +++ b/modules/jooby-assets-sass/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-assets-svg-sprites/README.md b/modules/jooby-assets-svg-sprites/README.md index 8d3afeafae..0bf8dc2e94 100644 --- a/modules/jooby-assets-svg-sprites/README.md +++ b/modules/jooby-assets-svg-sprites/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-svg-sprites/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-svg-sprites/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-svg-sprites.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-svg-sprites/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-svg-sprites/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-svg-sprites/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-svg-sprites.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-svg-sprites/1.6.4) [![jooby-assets-svg-sprites website](https://img.shields.io/badge/jooby-assets-svg-sprites-brightgreen.svg)](http://jooby.org/doc/assets-svg-sprites) # svg-sprites @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-svg-sprites - 1.6.3 + 1.6.4 provided ``` diff --git a/modules/jooby-assets-svg-sprites/pom.xml b/modules/jooby-assets-svg-sprites/pom.xml index 793c87dcf7..3179c54788 100644 --- a/modules/jooby-assets-svg-sprites/pom.xml +++ b/modules/jooby-assets-svg-sprites/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-assets-svg-symbol/README.md b/modules/jooby-assets-svg-symbol/README.md index c838ac9701..968ed72b75 100644 --- a/modules/jooby-assets-svg-symbol/README.md +++ b/modules/jooby-assets-svg-symbol/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-svg-symbol/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-svg-symbol/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-svg-symbol.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-svg-symbol/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-svg-symbol/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-svg-symbol/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-svg-symbol.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-svg-symbol/1.6.4) [![jooby-assets-svg-symbol website](https://img.shields.io/badge/jooby-assets-svg-symbol-brightgreen.svg)](http://jooby.org/doc/assets-svg-symbol) # svg-symbol @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-svg-symbol - 1.6.3 + 1.6.4 provided ``` diff --git a/modules/jooby-assets-svg-symbol/pom.xml b/modules/jooby-assets-svg-symbol/pom.xml index 8125d00453..f26892cd77 100644 --- a/modules/jooby-assets-svg-symbol/pom.xml +++ b/modules/jooby-assets-svg-symbol/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-assets-uglify/README.md b/modules/jooby-assets-uglify/README.md index 78857f45fa..a9ec39fe3b 100644 --- a/modules/jooby-assets-uglify/README.md +++ b/modules/jooby-assets-uglify/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-uglify/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-uglify/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-uglify.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-uglify/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-uglify/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-uglify/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-uglify.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-uglify/1.6.4) [![jooby-assets-uglify website](https://img.shields.io/badge/jooby-assets-uglify-brightgreen.svg)](http://jooby.org/doc/assets-uglify) # uglify @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-uglify - 1.6.3 + 1.6.4 provided ``` diff --git a/modules/jooby-assets-uglify/pom.xml b/modules/jooby-assets-uglify/pom.xml index 7f0949090c..678ebe5981 100644 --- a/modules/jooby-assets-uglify/pom.xml +++ b/modules/jooby-assets-uglify/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-assets-yui-compressor/README.md b/modules/jooby-assets-yui-compressor/README.md index 984a513844..783d4c6646 100644 --- a/modules/jooby-assets-yui-compressor/README.md +++ b/modules/jooby-assets-yui-compressor/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-yui-compressor/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-yui-compressor/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-yui-compressor.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-yui-compressor/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-yui-compressor/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-yui-compressor/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-yui-compressor.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-yui-compressor/1.6.4) [![jooby-assets-yui-compressor website](https://img.shields.io/badge/jooby-assets-yui-compressor-brightgreen.svg)](http://jooby.org/doc/assets-yui-compressor) # yui-css @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-yui-compressor - 1.6.3 + 1.6.4 provided ``` diff --git a/modules/jooby-assets-yui-compressor/pom.xml b/modules/jooby-assets-yui-compressor/pom.xml index ead900f2f0..475ac9b8b9 100644 --- a/modules/jooby-assets-yui-compressor/pom.xml +++ b/modules/jooby-assets-yui-compressor/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-assets/README.md b/modules/jooby-assets/README.md index cde96ba230..d44b0d2715 100644 --- a/modules/jooby-assets/README.md +++ b/modules/jooby-assets/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets.svg)](https://javadoc.io/doc/org.jooby/jooby-assets/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets.svg)](https://javadoc.io/doc/org.jooby/jooby-assets/1.6.4) [![jooby-assets website](https://img.shields.io/badge/jooby-assets-brightgreen.svg)](http://jooby.org/doc/assets) # assets @@ -13,7 +13,7 @@ A variety of processors are available: ([jshint](https://github.com/jooby-projec org.jooby jooby-assets - 1.6.3 + 1.6.4 ``` diff --git a/modules/jooby-assets/pom.xml b/modules/jooby-assets/pom.xml index 7e6078603b..cfdadd02f2 100644 --- a/modules/jooby-assets/pom.xml +++ b/modules/jooby-assets/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-aws/README.md b/modules/jooby-aws/README.md index aa2b59cf14..d5f09da2cc 100644 --- a/modules/jooby-aws/README.md +++ b/modules/jooby-aws/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-aws/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-aws/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-aws.svg)](https://javadoc.io/doc/org.jooby/jooby-aws/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-aws/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-aws/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-aws.svg)](https://javadoc.io/doc/org.jooby/jooby-aws/1.6.4) [![jooby-aws website](https://img.shields.io/badge/jooby-aws-brightgreen.svg)](http://jooby.org/doc/aws) # aws @@ -15,7 +15,7 @@ Small utility module that exports ```AmazonWebServiceClient``` services. org.jooby jooby-aws - 1.6.3 + 1.6.4 ``` diff --git a/modules/jooby-aws/pom.xml b/modules/jooby-aws/pom.xml index 8ff8377d21..4240e40dba 100644 --- a/modules/jooby-aws/pom.xml +++ b/modules/jooby-aws/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-banner/README.md b/modules/jooby-banner/README.md index eb5c97f4cc..45f08f6dfd 100644 --- a/modules/jooby-banner/README.md +++ b/modules/jooby-banner/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-banner/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-banner/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-banner.svg)](https://javadoc.io/doc/org.jooby/jooby-banner/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-banner/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-banner/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-banner.svg)](https://javadoc.io/doc/org.jooby/jooby-banner/1.6.4) [![jooby-banner website](https://img.shields.io/badge/jooby-banner-brightgreen.svg)](http://jooby.org/doc/banner) # banner @@ -11,7 +11,7 @@ Prints out an ASCII art banner on startup using org.jooby jooby-caffeine - 1.6.3 + 1.6.4 ``` diff --git a/modules/jooby-caffeine/pom.xml b/modules/jooby-caffeine/pom.xml index 559228e6a8..a482a342ac 100644 --- a/modules/jooby-caffeine/pom.xml +++ b/modules/jooby-caffeine/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-camel/README.md b/modules/jooby-camel/README.md index 182cd7a3b7..d8ab59dd19 100644 --- a/modules/jooby-camel/README.md +++ b/modules/jooby-camel/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-camel/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-camel/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-camel.svg)](https://javadoc.io/doc/org.jooby/jooby-camel/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-camel/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-camel/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-camel.svg)](https://javadoc.io/doc/org.jooby/jooby-camel/1.6.4) [![jooby-camel website](https://img.shields.io/badge/jooby-camel-brightgreen.svg)](http://jooby.org/doc/camel) # camel @@ -26,7 +26,7 @@ depend on [camel-guice](http://camel.apache.org/guice.html), but it provides sim org.jooby jooby-camel - 1.6.3 + 1.6.4 ``` diff --git a/modules/jooby-camel/pom.xml b/modules/jooby-camel/pom.xml index 26a0220f74..72c8809f22 100644 --- a/modules/jooby-camel/pom.xml +++ b/modules/jooby-camel/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-cassandra/README.md b/modules/jooby-cassandra/README.md index bcf2aaacd0..f571a485aa 100644 --- a/modules/jooby-cassandra/README.md +++ b/modules/jooby-cassandra/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-cassandra/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-cassandra/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-cassandra.svg)](https://javadoc.io/doc/org.jooby/jooby-cassandra/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-cassandra/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-cassandra/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-cassandra.svg)](https://javadoc.io/doc/org.jooby/jooby-cassandra/1.6.4) [![jooby-cassandra website](https://img.shields.io/badge/jooby-cassandra-brightgreen.svg)](http://jooby.org/doc/cassandra) # cassandra @@ -13,7 +13,7 @@ This module offers cassandra database org.jooby jooby-cassandra - 1.6.3 + 1.6.4 ``` @@ -211,7 +211,7 @@ A [Session.Store](/apidocs/org/jooby/cassandra/CassandraSessionStore.html) power org.jooby jooby-cassandra - 1.6.3 + 1.6.4 ``` diff --git a/modules/jooby-cassandra/pom.xml b/modules/jooby-cassandra/pom.xml index 3b5810bb44..9058440088 100644 --- a/modules/jooby-cassandra/pom.xml +++ b/modules/jooby-cassandra/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-commons-email/README.md b/modules/jooby-commons-email/README.md index 564f2a6f74..81c1f5e990 100644 --- a/modules/jooby-commons-email/README.md +++ b/modules/jooby-commons-email/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-commons-email/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-commons-email/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-commons-email.svg)](https://javadoc.io/doc/org.jooby/jooby-commons-email/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-commons-email/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-commons-email/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-commons-email.svg)](https://javadoc.io/doc/org.jooby/jooby-commons-email/1.6.4) [![jooby-commons-email website](https://img.shields.io/badge/jooby-commons-email-brightgreen.svg)](http://jooby.org/doc/commons-email) # commons-email @@ -19,7 +19,7 @@ Small but helpful module that provides access to ```Email``` instances. org.jooby jooby-commons-email - 1.6.3 + 1.6.4 ``` diff --git a/modules/jooby-commons-email/pom.xml b/modules/jooby-commons-email/pom.xml index 5894519190..9a1a58999a 100644 --- a/modules/jooby-commons-email/pom.xml +++ b/modules/jooby-commons-email/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-consul/README.md b/modules/jooby-consul/README.md index 8aaf5595f4..9573a36faf 100644 --- a/modules/jooby-consul/README.md +++ b/modules/jooby-consul/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-consul/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-consul/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-consul.svg)](https://javadoc.io/doc/org.jooby/jooby-consul/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-consul/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-consul/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-consul.svg)](https://javadoc.io/doc/org.jooby/jooby-consul/1.6.4) [![jooby-consul website](https://img.shields.io/badge/jooby-consul-brightgreen.svg)](http://jooby.org/doc/consul) # consul @@ -15,7 +15,7 @@ Also register the application as a service and setup a health check. org.jooby jooby-consul - 1.6.3 + 1.6.4 ``` diff --git a/modules/jooby-consul/pom.xml b/modules/jooby-consul/pom.xml index d3f4657ca5..03be61f2d0 100644 --- a/modules/jooby-consul/pom.xml +++ b/modules/jooby-consul/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-couchbase/README.md b/modules/jooby-couchbase/README.md index e8af6c3af7..0730c88715 100644 --- a/modules/jooby-couchbase/README.md +++ b/modules/jooby-couchbase/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-couchbase/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-couchbase/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-couchbase.svg)](https://javadoc.io/doc/org.jooby/jooby-couchbase/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-couchbase/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-couchbase/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-couchbase.svg)](https://javadoc.io/doc/org.jooby/jooby-couchbase/1.6.4) [![jooby-couchbase website](https://img.shields.io/badge/jooby-couchbase-brightgreen.svg)](http://jooby.org/doc/couchbase) # couchbase @@ -13,7 +13,7 @@ This module provides couchbase access via org.jooby jooby-couchbase - 1.6.3 + 1.6.4 ``` @@ -307,7 +307,7 @@ A [Session.Store](/apidocs/org/jooby/couchbase/CouchbaseSessionStore) powered by org.jooby jooby-couchbase - 1.6.3 + 1.6.4 ``` diff --git a/modules/jooby-couchbase/pom.xml b/modules/jooby-couchbase/pom.xml index 65bd46270e..ef5377ae0f 100644 --- a/modules/jooby-couchbase/pom.xml +++ b/modules/jooby-couchbase/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-crash/README.md b/modules/jooby-crash/README.md index 23481b8d09..5f0e48e97f 100644 --- a/modules/jooby-crash/README.md +++ b/modules/jooby-crash/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-crash/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-crash/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-crash.svg)](https://javadoc.io/doc/org.jooby/jooby-crash/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-crash/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-crash/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-crash.svg)](https://javadoc.io/doc/org.jooby/jooby-crash/1.6.4) [![jooby-crash website](https://img.shields.io/badge/jooby-crash-brightgreen.svg)](http://jooby.org/doc/crash) # crash @@ -11,7 +11,7 @@ org.jooby jooby-crash - 1.6.3 + 1.6.4 ``` diff --git a/modules/jooby-crash/pom.xml b/modules/jooby-crash/pom.xml index 1d3f2c344e..5632de7745 100644 --- a/modules/jooby-crash/pom.xml +++ b/modules/jooby-crash/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-csl/README.md b/modules/jooby-csl/README.md index 9cb783d7bd..9739902cf7 100644 --- a/modules/jooby-csl/README.md +++ b/modules/jooby-csl/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-csl/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-csl/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-csl.svg)](https://javadoc.io/doc/org.jooby/jooby-csl/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-csl/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-csl/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-csl.svg)](https://javadoc.io/doc/org.jooby/jooby-csl/1.6.4) [![jooby-csl website](https://img.shields.io/badge/jooby-csl-brightgreen.svg)](http://jooby.org/doc/csl) # csl @@ -11,7 +11,7 @@ org.jooby jooby-csl - 1.6.3 + 1.6.4 ``` diff --git a/modules/jooby-csl/pom.xml b/modules/jooby-csl/pom.xml index b3f52abfa2..7888146a69 100644 --- a/modules/jooby-csl/pom.xml +++ b/modules/jooby-csl/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-dist/pom.xml b/modules/jooby-dist/pom.xml index d163eef089..b2155f3b63 100644 --- a/modules/jooby-dist/pom.xml +++ b/modules/jooby-dist/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-ebean/README.md b/modules/jooby-ebean/README.md index 1c01186579..b78081322d 100644 --- a/modules/jooby-ebean/README.md +++ b/modules/jooby-ebean/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-ebean/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-ebean/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-ebean.svg)](https://javadoc.io/doc/org.jooby/jooby-ebean/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-ebean/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-ebean/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-ebean.svg)](https://javadoc.io/doc/org.jooby/jooby-ebean/1.6.4) [![jooby-ebean website](https://img.shields.io/badge/jooby-ebean-brightgreen.svg)](http://jooby.org/doc/ebean) # ebean @@ -17,7 +17,7 @@ Object-Relational-Mapping via [Ebean ORM](http://ebean-orm.github.io). It config org.jooby jooby-ebean - 1.6.3 + 1.6.4 ``` diff --git a/modules/jooby-ebean/pom.xml b/modules/jooby-ebean/pom.xml index 4cf1d6f2f5..f65789d899 100644 --- a/modules/jooby-ebean/pom.xml +++ b/modules/jooby-ebean/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-ehcache/README.md b/modules/jooby-ehcache/README.md index fa7e9a021f..cba1b71628 100644 --- a/modules/jooby-ehcache/README.md +++ b/modules/jooby-ehcache/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-ehcache/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-ehcache/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-ehcache.svg)](https://javadoc.io/doc/org.jooby/jooby-ehcache/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-ehcache/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-ehcache/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-ehcache.svg)](https://javadoc.io/doc/org.jooby/jooby-ehcache/1.6.4) [![jooby-ehcache website](https://img.shields.io/badge/jooby-ehcache-brightgreen.svg)](http://jooby.org/doc/ehcache) # ehcache @@ -16,7 +16,7 @@ Provides advanced cache features via [Ehcache](http://ehcache.org) org.jooby jooby-ehcache - 1.6.3 + 1.6.4 ``` @@ -120,7 +120,7 @@ Please note the ```default``` cache works as a template and isn't a real/usable org.jooby jooby-ehcache - 1.6.3 + 1.6.4 ``` diff --git a/modules/jooby-ehcache/pom.xml b/modules/jooby-ehcache/pom.xml index 7dcb4bb708..a459933a9e 100644 --- a/modules/jooby-ehcache/pom.xml +++ b/modules/jooby-ehcache/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-elasticsearch/README.md b/modules/jooby-elasticsearch/README.md index e827093fd0..bbfaffaba3 100644 --- a/modules/jooby-elasticsearch/README.md +++ b/modules/jooby-elasticsearch/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-elasticsearch/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-elasticsearch/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-elasticsearch.svg)](https://javadoc.io/doc/org.jooby/jooby-elasticsearch/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-elasticsearch/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-elasticsearch/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-elasticsearch.svg)](https://javadoc.io/doc/org.jooby/jooby-elasticsearch/1.6.4) [![jooby-elasticsearch website](https://img.shields.io/badge/jooby-elasticsearch-brightgreen.svg)](http://jooby.org/doc/elasticsearch) # elasticsearch @@ -15,7 +15,7 @@ Open Source, Distributed, RESTful Search Engine via [Elastic Search](https://git org.jooby jooby-elasticsearch - 1.6.3 + 1.6.4 ``` diff --git a/modules/jooby-elasticsearch/pom.xml b/modules/jooby-elasticsearch/pom.xml index 9035ddb8a3..c67f361fe2 100644 --- a/modules/jooby-elasticsearch/pom.xml +++ b/modules/jooby-elasticsearch/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-eventbus/README.md b/modules/jooby-eventbus/README.md index 7bf2f648ef..21bbdd7e35 100644 --- a/modules/jooby-eventbus/README.md +++ b/modules/jooby-eventbus/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-eventbus/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-eventbus/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-eventbus.svg)](https://javadoc.io/doc/org.jooby/jooby-eventbus/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-eventbus/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-eventbus/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-eventbus.svg)](https://javadoc.io/doc/org.jooby/jooby-eventbus/1.6.4) [![jooby-eventbus website](https://img.shields.io/badge/jooby-eventbus-brightgreen.svg)](http://jooby.org/doc/eventbus) # EventBus @@ -15,7 +15,7 @@ org.jooby jooby-eventbus - 1.6.3 + 1.6.4 ``` diff --git a/modules/jooby-eventbus/pom.xml b/modules/jooby-eventbus/pom.xml index b3dd9d53a6..5dba52dd3e 100644 --- a/modules/jooby-eventbus/pom.xml +++ b/modules/jooby-eventbus/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-executor/README.md b/modules/jooby-executor/README.md index 8316134b8b..a21cd2bf10 100644 --- a/modules/jooby-executor/README.md +++ b/modules/jooby-executor/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-executor/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-executor/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-executor.svg)](https://javadoc.io/doc/org.jooby/jooby-executor/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-executor/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-executor/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-executor.svg)](https://javadoc.io/doc/org.jooby/jooby-executor/1.6.4) [![jooby-executor website](https://img.shields.io/badge/jooby-executor-brightgreen.svg)](http://jooby.org/doc/executor) # executor @@ -15,7 +15,7 @@ Manage the life cycle of {@link ExecutorService} and build async apps, schedule org.jooby jooby-executor - 1.6.3 + 1.6.4 ``` diff --git a/modules/jooby-executor/pom.xml b/modules/jooby-executor/pom.xml index a4036cabcb..fca10df99d 100644 --- a/modules/jooby-executor/pom.xml +++ b/modules/jooby-executor/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-exposed/README.md b/modules/jooby-exposed/README.md index fd60aeeea8..e83a533b5a 100644 --- a/modules/jooby-exposed/README.md +++ b/modules/jooby-exposed/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-exposed/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-exposed/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-exposed.svg)](https://javadoc.io/doc/org.jooby/jooby-exposed/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-exposed/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-exposed/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-exposed.svg)](https://javadoc.io/doc/org.jooby/jooby-exposed/1.6.4) [![jooby-exposed website](https://img.shields.io/badge/jooby-exposed-brightgreen.svg)](http://jooby.org/doc/exposed) # exposed diff --git a/modules/jooby-exposed/pom.xml b/modules/jooby-exposed/pom.xml index 1dc8c5d60b..47cfc0cf23 100644 --- a/modules/jooby-exposed/pom.xml +++ b/modules/jooby-exposed/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-filewatcher/README.md b/modules/jooby-filewatcher/README.md index b07c874838..6effa5c036 100644 --- a/modules/jooby-filewatcher/README.md +++ b/modules/jooby-filewatcher/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-filewatcher/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-filewatcher/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-filewatcher.svg)](https://javadoc.io/doc/org.jooby/jooby-filewatcher/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-filewatcher/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-filewatcher/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-filewatcher.svg)](https://javadoc.io/doc/org.jooby/jooby-filewatcher/1.6.4) [![jooby-filewatcher website](https://img.shields.io/badge/jooby-filewatcher-brightgreen.svg)](http://jooby.org/doc/filewatcher) # file watcher @@ -11,7 +11,7 @@ Watches for file system changes or event. It uses a watch service to monitor a d org.jooby jooby-file watcher - 1.6.3 + 1.6.4 ``` diff --git a/modules/jooby-filewatcher/pom.xml b/modules/jooby-filewatcher/pom.xml index a55529aa74..a535ba2df2 100644 --- a/modules/jooby-filewatcher/pom.xml +++ b/modules/jooby-filewatcher/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-flyway/README.md b/modules/jooby-flyway/README.md index 8ad082cf0e..3b7131968d 100644 --- a/modules/jooby-flyway/README.md +++ b/modules/jooby-flyway/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-flyway/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-flyway/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-flyway.svg)](https://javadoc.io/doc/org.jooby/jooby-flyway/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-flyway/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-flyway/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-flyway.svg)](https://javadoc.io/doc/org.jooby/jooby-flyway/1.6.4) [![jooby-flyway website](https://img.shields.io/badge/jooby-flyway-brightgreen.svg)](http://jooby.org/doc/flyway) # flyway @@ -15,7 +15,7 @@ This module run [Flyway](http://flywaydb.org) on startup and apply database migr org.jooby jooby-flyway - 1.6.3 + 1.6.4 ``` diff --git a/modules/jooby-flyway/pom.xml b/modules/jooby-flyway/pom.xml index dbb1cb50d1..6eb7a84e3d 100644 --- a/modules/jooby-flyway/pom.xml +++ b/modules/jooby-flyway/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-frontend/README.md b/modules/jooby-frontend/README.md index 813fd65a13..a464b613f8 100644 --- a/modules/jooby-frontend/README.md +++ b/modules/jooby-frontend/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-frontend/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-frontend/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-frontend.svg)](https://javadoc.io/doc/org.jooby/jooby-frontend/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-frontend/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-frontend/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-frontend.svg)](https://javadoc.io/doc/org.jooby/jooby-frontend/1.6.4) [![jooby-frontend website](https://img.shields.io/badge/jooby-frontend-brightgreen.svg)](http://jooby.org/doc/frontend) # frontend @@ -12,7 +12,7 @@ runs npm, w org.jooby jooby-frontend - 1.6.3 + 1.6.4 ``` diff --git a/modules/jooby-frontend/pom.xml b/modules/jooby-frontend/pom.xml index 06fcc8b85d..88b3d8a138 100644 --- a/modules/jooby-frontend/pom.xml +++ b/modules/jooby-frontend/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-ftl/README.md b/modules/jooby-ftl/README.md index ea93b3425e..28dfe6c0fe 100644 --- a/modules/jooby-ftl/README.md +++ b/modules/jooby-ftl/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-ftl/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-ftl/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-ftl.svg)](https://javadoc.io/doc/org.jooby/jooby-ftl/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-ftl/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-ftl/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-ftl.svg)](https://javadoc.io/doc/org.jooby/jooby-ftl/1.6.4) [![jooby-ftl website](https://img.shields.io/badge/jooby-ftl-brightgreen.svg)](http://jooby.org/doc/ftl) # freemarker @@ -16,7 +16,7 @@ org.jooby jooby-ftl - 1.6.3 + 1.6.4 ``` diff --git a/modules/jooby-ftl/pom.xml b/modules/jooby-ftl/pom.xml index 00c598d8fe..7b2daafa79 100644 --- a/modules/jooby-ftl/pom.xml +++ b/modules/jooby-ftl/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-gradle-plugin/README.md b/modules/jooby-gradle-plugin/README.md index 54096132d1..07981ac689 100644 --- a/modules/jooby-gradle-plugin/README.md +++ b/modules/jooby-gradle-plugin/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-gradle-plugin/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-gradle-plugin/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-gradle-plugin.svg)](https://javadoc.io/doc/org.jooby/jooby-gradle-plugin/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-gradle-plugin/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-gradle-plugin/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-gradle-plugin.svg)](https://javadoc.io/doc/org.jooby/jooby-gradle-plugin/1.6.4) [![jooby-gradle-plugin website](https://img.shields.io/badge/jooby-gradle-plugin-brightgreen.svg)](http://jooby.org/doc/gradle-plugin) # gradle plugin @@ -21,7 +21,7 @@ buildscript { dependencies { /** joobyRun */ - classpath group: 'org.jooby', name: 'jooby-gradle-plugin', version: '1.6.3' + classpath group: 'org.jooby', name: 'jooby-gradle-plugin', version: '1.6.4' } } diff --git a/modules/jooby-gradle-plugin/pom.xml b/modules/jooby-gradle-plugin/pom.xml index d0d2bda64b..46d4568503 100644 --- a/modules/jooby-gradle-plugin/pom.xml +++ b/modules/jooby-gradle-plugin/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-gson/README.md b/modules/jooby-gson/README.md index e799f59ecc..2325ad7d4d 100644 --- a/modules/jooby-gson/README.md +++ b/modules/jooby-gson/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-gson/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-gson/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-gson.svg)](https://javadoc.io/doc/org.jooby/jooby-gson/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-gson/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-gson/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-gson.svg)](https://javadoc.io/doc/org.jooby/jooby-gson/1.6.4) [![jooby-gson website](https://img.shields.io/badge/jooby-gson-brightgreen.svg)](http://jooby.org/doc/gson) # gson @@ -17,7 +17,7 @@ JSON support via [Gson](https://github.com/google/gson) library. org.jooby jooby-gson - 1.6.3 + 1.6.4 ``` diff --git a/modules/jooby-gson/pom.xml b/modules/jooby-gson/pom.xml index fb98f02ce1..4921887d9a 100644 --- a/modules/jooby-gson/pom.xml +++ b/modules/jooby-gson/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-guava-cache/README.md b/modules/jooby-guava-cache/README.md index 8981c037b4..a608ff5abc 100644 --- a/modules/jooby-guava-cache/README.md +++ b/modules/jooby-guava-cache/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-guava-cache/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-guava-cache/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-guava-cache.svg)](https://javadoc.io/doc/org.jooby/jooby-guava-cache/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-guava-cache/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-guava-cache/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-guava-cache.svg)](https://javadoc.io/doc/org.jooby/jooby-guava-cache/1.6.4) [![jooby-guava-cache website](https://img.shields.io/badge/jooby-guava-cache-brightgreen.svg)](http://jooby.org/doc/guava-cache) # guava-cache @@ -15,7 +15,7 @@ Provides cache solution and session storage via: Hibernate ORM org.jooby jooby-hbm - 1.6.3 + 1.6.4 ``` diff --git a/modules/jooby-hbm/pom.xml b/modules/jooby-hbm/pom.xml index c5d6fb4b25..f6dd76b29e 100644 --- a/modules/jooby-hbm/pom.xml +++ b/modules/jooby-hbm/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-hbs/README.md b/modules/jooby-hbs/README.md index 766590b995..30abda03e7 100644 --- a/modules/jooby-hbs/README.md +++ b/modules/jooby-hbs/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-hbs/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-hbs/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-hbs.svg)](https://javadoc.io/doc/org.jooby/jooby-hbs/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-hbs/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-hbs/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-hbs.svg)](https://javadoc.io/doc/org.jooby/jooby-hbs/1.6.4) [![jooby-hbs website](https://img.shields.io/badge/jooby-hbs-brightgreen.svg)](http://jooby.org/doc/hbs) # handlebars @@ -16,7 +16,7 @@ Logic-less and semantic templates via [Handlebars.java](https://github.com/jknac org.jooby jooby-hbs - 1.6.3 + 1.6.4 ``` diff --git a/modules/jooby-hbs/pom.xml b/modules/jooby-hbs/pom.xml index 89221eb81d..cb0d87a6a2 100644 --- a/modules/jooby-hbs/pom.xml +++ b/modules/jooby-hbs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-hbv/README.md b/modules/jooby-hbv/README.md index 25de9b34d6..a4b1a379a4 100644 --- a/modules/jooby-hbv/README.md +++ b/modules/jooby-hbv/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-hbv/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-hbv/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-hbv.svg)](https://javadoc.io/doc/org.jooby/jooby-hbv/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-hbv/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-hbv/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-hbv.svg)](https://javadoc.io/doc/org.jooby/jooby-hbv/1.6.4) [![jooby-hbv website](https://img.shields.io/badge/jooby-hbv-brightgreen.svg)](http://jooby.org/doc/hbv) # hibernate validator @@ -17,7 +17,7 @@ Bean validation via [Hibernate Validator](hibernate.org/validator). org.jooby jooby-hbv - 1.6.3 + 1.6.4 ``` diff --git a/modules/jooby-hbv/pom.xml b/modules/jooby-hbv/pom.xml index 26367bd195..75a6a74276 100644 --- a/modules/jooby-hbv/pom.xml +++ b/modules/jooby-hbv/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-jackson/README.md b/modules/jooby-jackson/README.md index 6800c07c29..bdb2914dd3 100644 --- a/modules/jooby-jackson/README.md +++ b/modules/jooby-jackson/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jackson/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jackson/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jackson.svg)](https://javadoc.io/doc/org.jooby/jooby-jackson/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jackson/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jackson/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jackson.svg)](https://javadoc.io/doc/org.jooby/jooby-jackson/1.6.4) [![jooby-jackson website](https://img.shields.io/badge/jooby-jackson-brightgreen.svg)](http://jooby.org/doc/jackson) # jackson @@ -17,7 +17,7 @@ JSON support from the excellent [Jackson](https://github.com/FasterXML/jackson) org.jooby jooby-jackson - 1.6.3 + 1.6.4 ``` diff --git a/modules/jooby-jackson/pom.xml b/modules/jooby-jackson/pom.xml index 245ee2da0a..438f22dca4 100644 --- a/modules/jooby-jackson/pom.xml +++ b/modules/jooby-jackson/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-jade/README.md b/modules/jooby-jade/README.md index 134dafc9f6..de3117ef36 100644 --- a/modules/jooby-jade/README.md +++ b/modules/jooby-jade/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jade/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jade/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jade.svg)](https://javadoc.io/doc/org.jooby/jooby-jade/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jade/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jade/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jade.svg)](https://javadoc.io/doc/org.jooby/jooby-jade/1.6.4) [![jooby-jade website](https://img.shields.io/badge/jooby-jade-brightgreen.svg)](http://jooby.org/doc/jade) # jade @@ -16,7 +16,7 @@ org.jooby jooby-jade - 1.6.3 + 1.6.4 ``` diff --git a/modules/jooby-jade/pom.xml b/modules/jooby-jade/pom.xml index de55ec151e..fff9a0cbd0 100644 --- a/modules/jooby-jade/pom.xml +++ b/modules/jooby-jade/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-jdbc/README.md b/modules/jooby-jdbc/README.md index cb0eb37700..e1e23bcdfb 100644 --- a/modules/jooby-jdbc/README.md +++ b/modules/jooby-jdbc/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jdbc/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jdbc/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jdbc.svg)](https://javadoc.io/doc/org.jooby/jooby-jdbc/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jdbc/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jdbc/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jdbc.svg)](https://javadoc.io/doc/org.jooby/jooby-jdbc/1.6.4) [![jooby-jdbc website](https://img.shields.io/badge/jooby-jdbc-brightgreen.svg)](http://jooby.org/doc/jdbc) # jdbc @@ -15,7 +15,7 @@ Production-ready jdbc data source, powered by the [HikariCP](https://github.com/ org.jooby jooby-jdbc - 1.6.3 + 1.6.4 ``` diff --git a/modules/jooby-jdbc/pom.xml b/modules/jooby-jdbc/pom.xml index d24a3af46c..7e72ef59f2 100644 --- a/modules/jooby-jdbc/pom.xml +++ b/modules/jooby-jdbc/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-jdbi/README.md b/modules/jooby-jdbi/README.md index 34200f989e..7abd68c4de 100644 --- a/modules/jooby-jdbi/README.md +++ b/modules/jooby-jdbi/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jdbi/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jdbi/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jdbi.svg)](https://javadoc.io/doc/org.jooby/jooby-jdbi/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jdbi/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jdbi/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jdbi.svg)](https://javadoc.io/doc/org.jooby/jooby-jdbi/1.6.4) [![jooby-jdbi website](https://img.shields.io/badge/jooby-jdbi-brightgreen.svg)](http://jooby.org/doc/jdbi) # jdbi @@ -21,7 +21,7 @@ org.jooby jooby-jdbi - 1.6.3 + 1.6.4 ``` diff --git a/modules/jooby-jdbi/pom.xml b/modules/jooby-jdbi/pom.xml index 557ca341a7..3e0d7256df 100644 --- a/modules/jooby-jdbi/pom.xml +++ b/modules/jooby-jdbi/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-jdbi3/README.md b/modules/jooby-jdbi3/README.md index 20bdc8451c..ed9a45beeb 100644 --- a/modules/jooby-jdbi3/README.md +++ b/modules/jooby-jdbi3/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jdbi3/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jdbi3/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jdbi3.svg)](https://javadoc.io/doc/org.jooby/jooby-jdbi3/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jdbi3/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jdbi3/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jdbi3.svg)](https://javadoc.io/doc/org.jooby/jooby-jdbi3/1.6.4) [![jooby-jdbi3 website](https://img.shields.io/badge/jooby-jdbi3-brightgreen.svg)](http://jooby.org/doc/jdbi3) # jdbi @@ -17,7 +17,7 @@ org.jooby jooby-jdbi3 - 1.6.3 + 1.6.4 ``` diff --git a/modules/jooby-jdbi3/pom.xml b/modules/jooby-jdbi3/pom.xml index c2d6f6b779..6f24ad6ad2 100644 --- a/modules/jooby-jdbi3/pom.xml +++ b/modules/jooby-jdbi3/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-jedis/README.md b/modules/jooby-jedis/README.md index aee5a1807e..83dc90fe67 100644 --- a/modules/jooby-jedis/README.md +++ b/modules/jooby-jedis/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jedis/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jedis/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jedis.svg)](https://javadoc.io/doc/org.jooby/jooby-jedis/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jedis/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jedis/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jedis.svg)](https://javadoc.io/doc/org.jooby/jooby-jedis/1.6.4) [![jooby-jedis website](https://img.shields.io/badge/jooby-jedis-brightgreen.svg)](http://jooby.org/doc/jedis) # jedis @@ -11,7 +11,7 @@ org.jooby jooby-jedis - 1.6.3 + 1.6.4 ``` @@ -99,7 +99,7 @@ For more information about [Jedis](https://github.com/xetorthio/jedis) checkout org.jooby jooby-jedis - 1.6.3 + 1.6.4 ``` diff --git a/modules/jooby-jedis/pom.xml b/modules/jooby-jedis/pom.xml index ca8a316d3d..b0678aa02d 100644 --- a/modules/jooby-jedis/pom.xml +++ b/modules/jooby-jedis/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-jetty/README.md b/modules/jooby-jetty/README.md index bbed612e6c..75cb4f4e52 100644 --- a/modules/jooby-jetty/README.md +++ b/modules/jooby-jetty/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jetty/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jetty/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jetty.svg)](https://javadoc.io/doc/org.jooby/jooby-jetty/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jetty/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jetty/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jetty.svg)](https://javadoc.io/doc/org.jooby/jooby-jetty/1.6.4) [![jooby-jetty website](https://img.shields.io/badge/jooby-jetty-brightgreen.svg)](http://jooby.org/doc/jetty) # jetty @@ -15,7 +15,7 @@ org.jooby jooby-jetty - 1.6.3 + 1.6.4 ``` diff --git a/modules/jooby-jetty/pom.xml b/modules/jooby-jetty/pom.xml index 16cf85f73b..f0dc1e9b9d 100644 --- a/modules/jooby-jetty/pom.xml +++ b/modules/jooby-jetty/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-jongo/README.md b/modules/jooby-jongo/README.md index 3b8ae1bb05..0cc6ebf9a7 100644 --- a/modules/jooby-jongo/README.md +++ b/modules/jooby-jongo/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jongo/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jongo/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jongo.svg)](https://javadoc.io/doc/org.jooby/jooby-jongo/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jongo/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jongo/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jongo.svg)](https://javadoc.io/doc/org.jooby/jooby-jongo/1.6.4) [![jooby-jongo website](https://img.shields.io/badge/jooby-jongo-brightgreen.svg)](http://jooby.org/doc/jongo) # jongo @@ -17,7 +17,7 @@ org.jooby jooby-jongo - 1.6.3 + 1.6.4 ``` diff --git a/modules/jooby-jongo/pom.xml b/modules/jooby-jongo/pom.xml index 2cefd77ad8..90887afe3a 100644 --- a/modules/jooby-jongo/pom.xml +++ b/modules/jooby-jongo/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-jooq/README.md b/modules/jooby-jooq/README.md index 09509eaefb..686b86b1d0 100644 --- a/modules/jooby-jooq/README.md +++ b/modules/jooby-jooq/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jooq/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jooq/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jooq.svg)](https://javadoc.io/doc/org.jooby/jooby-jooq/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jooq/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jooq/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jooq.svg)](https://javadoc.io/doc/org.jooby/jooby-jooq/1.6.4) [![jooby-jooq website](https://img.shields.io/badge/jooby-jooq-brightgreen.svg)](http://jooby.org/doc/jooq) # jOOQ @@ -17,7 +17,7 @@ org.jooby jooby-jooq - 1.6.3 + 1.6.4 ``` diff --git a/modules/jooby-jooq/pom.xml b/modules/jooby-jooq/pom.xml index 035dd9c615..8d10c748d1 100644 --- a/modules/jooby-jooq/pom.xml +++ b/modules/jooby-jooq/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-lang-kotlin/README.md b/modules/jooby-lang-kotlin/README.md index 28261f9645..91b2dd68e1 100644 --- a/modules/jooby-lang-kotlin/README.md +++ b/modules/jooby-lang-kotlin/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-lang-kotlin/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-lang-kotlin/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-lang-kotlin.svg)](https://javadoc.io/doc/org.jooby/jooby-lang-kotlin/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-lang-kotlin/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-lang-kotlin/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-lang-kotlin.svg)](https://javadoc.io/doc/org.jooby/jooby-lang-kotlin/1.6.4) [![jooby-lang-kotlin website](https://img.shields.io/badge/jooby-lang-kotlin-brightgreen.svg)](http://jooby.org/doc/lang-kotlin) # kotlin @@ -11,7 +11,7 @@ A tiny module that makes a Jooby application more Kotlin idiomatic. org.jooby jooby-lang-kotlin - 1.6.3 + 1.6.4 ``` diff --git a/modules/jooby-lang-kotlin/pom.xml b/modules/jooby-lang-kotlin/pom.xml index 16ca493eb3..0b5914ed56 100644 --- a/modules/jooby-lang-kotlin/pom.xml +++ b/modules/jooby-lang-kotlin/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-livereload/README.md b/modules/jooby-livereload/README.md index 0a6ccdd4d1..b32410526d 100644 --- a/modules/jooby-livereload/README.md +++ b/modules/jooby-livereload/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-livereload/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-livereload/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-livereload.svg)](https://javadoc.io/doc/org.jooby/jooby-livereload/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-livereload/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-livereload/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-livereload.svg)](https://javadoc.io/doc/org.jooby/jooby-livereload/1.6.4) [![jooby-livereload website](https://img.shields.io/badge/jooby-livereload-brightgreen.svg)](http://jooby.org/doc/livereload) # liveReload @@ -18,7 +18,7 @@ Even cooler, when you change a CSS file or an image, the browser is updated inst org.jooby jooby-livereload - 1.6.3 + 1.6.4 ``` diff --git a/modules/jooby-livereload/pom.xml b/modules/jooby-livereload/pom.xml index 2786c510e6..8dc97883a7 100644 --- a/modules/jooby-livereload/pom.xml +++ b/modules/jooby-livereload/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 jooby-livereload jooby-livereload diff --git a/modules/jooby-maven-plugin/README.md b/modules/jooby-maven-plugin/README.md index cfe4e27d0b..cc98fe4c88 100644 --- a/modules/jooby-maven-plugin/README.md +++ b/modules/jooby-maven-plugin/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-maven-plugin/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-maven-plugin/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-maven-plugin.svg)](https://javadoc.io/doc/org.jooby/jooby-maven-plugin/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-maven-plugin/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-maven-plugin/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-maven-plugin.svg)](https://javadoc.io/doc/org.jooby/jooby-maven-plugin/1.6.4) [![jooby-maven-plugin website](https://img.shields.io/badge/jooby-maven-plugin-brightgreen.svg)](http://jooby.org/doc/maven-plugin) # maven @@ -43,7 +43,7 @@ It's worth to mention that dynamic reload of classes is done via [JBoss Modules] org.jooby jooby-maven-plugin - 1.6.3 + 1.6.4 ${application.class} @@ -117,7 +117,7 @@ List of commands to execute before starting the ```application```. Useful for [n org.jooby jooby-maven-plugin - 1.6.3 + 1.6.4 ${application.class} @@ -138,7 +138,7 @@ Set one or more ```JVM args```: org.jooby jooby-maven-plugin - 1.6.3 + 1.6.4 ${application.class} true diff --git a/modules/jooby-maven-plugin/pom.xml b/modules/jooby-maven-plugin/pom.xml index bfcee04d9d..b9e506d60f 100644 --- a/modules/jooby-maven-plugin/pom.xml +++ b/modules/jooby-maven-plugin/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-metrics/README.md b/modules/jooby-metrics/README.md index a952433079..9773a6c3a7 100644 --- a/modules/jooby-metrics/README.md +++ b/modules/jooby-metrics/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-metrics/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-metrics/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-metrics.svg)](https://javadoc.io/doc/org.jooby/jooby-metrics/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-metrics/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-metrics/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-metrics.svg)](https://javadoc.io/doc/org.jooby/jooby-metrics/1.6.4) [![jooby-metrics website](https://img.shields.io/badge/jooby-metrics-brightgreen.svg)](http://jooby.org/doc/metrics) # metrics @@ -11,7 +11,7 @@ org.jooby jooby-metrics - 1.6.3 + 1.6.4 ``` diff --git a/modules/jooby-metrics/pom.xml b/modules/jooby-metrics/pom.xml index 64ad80a3cf..5e3e40dcc6 100644 --- a/modules/jooby-metrics/pom.xml +++ b/modules/jooby-metrics/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-micrometer/README.md b/modules/jooby-micrometer/README.md index 93d265bf46..2612297012 100644 --- a/modules/jooby-micrometer/README.md +++ b/modules/jooby-micrometer/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-micrometer/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-micrometer/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-micrometer.svg)](https://javadoc.io/doc/org.jooby/jooby-micrometer/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-micrometer/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-micrometer/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-micrometer.svg)](https://javadoc.io/doc/org.jooby/jooby-micrometer/1.6.4) [![jooby-micrometer website](https://img.shields.io/badge/jooby-micrometer-brightgreen.svg)](http://jooby.org/doc/micrometer) # micrometer @@ -11,7 +11,7 @@ org.jooby jooby-micrometer - 1.6.3 + 1.6.4 ``` diff --git a/modules/jooby-micrometer/pom.xml b/modules/jooby-micrometer/pom.xml index 872659c590..e5d38724b4 100644 --- a/modules/jooby-micrometer/pom.xml +++ b/modules/jooby-micrometer/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-mongodb-rx/README.md b/modules/jooby-mongodb-rx/README.md index 16b48e0ef1..9533bda863 100644 --- a/modules/jooby-mongodb-rx/README.md +++ b/modules/jooby-mongodb-rx/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-mongodb-rx/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-mongodb-rx/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-mongodb-rx.svg)](https://javadoc.io/doc/org.jooby/jooby-mongodb-rx/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-mongodb-rx/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-mongodb-rx/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-mongodb-rx.svg)](https://javadoc.io/doc/org.jooby/jooby-mongodb-rx/1.6.4) [![jooby-mongodb-rx website](https://img.shields.io/badge/jooby-mongodb-rx-brightgreen.svg)](http://jooby.org/doc/mongodb-rx) # mongodb-rx @@ -16,7 +16,7 @@ A MongoDB based driver providing support for React org.jooby jooby-mongodb-rx - 1.6.3 + 1.6.4 ``` diff --git a/modules/jooby-mongodb-rx/pom.xml b/modules/jooby-mongodb-rx/pom.xml index 62804e2c09..a6226d65bb 100644 --- a/modules/jooby-mongodb-rx/pom.xml +++ b/modules/jooby-mongodb-rx/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-mongodb/README.md b/modules/jooby-mongodb/README.md index 6021763ecd..3e92341c4e 100644 --- a/modules/jooby-mongodb/README.md +++ b/modules/jooby-mongodb/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-mongodb/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-mongodb/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-mongodb.svg)](https://javadoc.io/doc/org.jooby/jooby-mongodb/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-mongodb/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-mongodb/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-mongodb.svg)](https://javadoc.io/doc/org.jooby/jooby-mongodb/1.6.4) [![jooby-mongodb website](https://img.shields.io/badge/jooby-mongodb-brightgreen.svg)](http://jooby.org/doc/mongodb) # mongodb driver @@ -17,7 +17,7 @@ org.jooby jooby-mongodb - 1.6.3 + 1.6.4 ``` @@ -117,7 +117,7 @@ Use [named](/apidocs/org/jooby/mongodb/Mongodb.html#-named) when you need two or org.jooby jooby-mongodb - 1.6.3 + 1.6.4 ``` diff --git a/modules/jooby-mongodb/pom.xml b/modules/jooby-mongodb/pom.xml index bbcb13ae1f..d28a0878e3 100644 --- a/modules/jooby-mongodb/pom.xml +++ b/modules/jooby-mongodb/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-morphia/README.md b/modules/jooby-morphia/README.md index d1984839ac..1ba60c26d4 100644 --- a/modules/jooby-morphia/README.md +++ b/modules/jooby-morphia/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-morphia/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-morphia/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-morphia.svg)](https://javadoc.io/doc/org.jooby/jooby-morphia/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-morphia/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-morphia/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-morphia.svg)](https://javadoc.io/doc/org.jooby/jooby-morphia/1.6.4) [![jooby-morphia website](https://img.shields.io/badge/jooby-morphia-brightgreen.svg)](http://jooby.org/doc/morphia) # morphia @@ -16,7 +16,7 @@ Extends the [mongodb](https://github.com/jooby-project/jooby/tree/master/jooby-m org.jooby jooby-morphia - 1.6.3 + 1.6.4 ``` diff --git a/modules/jooby-morphia/pom.xml b/modules/jooby-morphia/pom.xml index 06b106f601..7ac29e16a7 100644 --- a/modules/jooby-morphia/pom.xml +++ b/modules/jooby-morphia/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-neo4j/README.md b/modules/jooby-neo4j/README.md index fe707de9b0..2d3c87cd12 100644 --- a/modules/jooby-neo4j/README.md +++ b/modules/jooby-neo4j/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-neo4j/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-neo4j/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-neo4j.svg)](https://javadoc.io/doc/org.jooby/jooby-neo4j/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-neo4j/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-neo4j/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-neo4j.svg)](https://javadoc.io/doc/org.jooby/jooby-neo4j/1.6.4) [![jooby-neo4j website](https://img.shields.io/badge/jooby-neo4j-brightgreen.svg)](http://jooby.org/doc/neo4j) # neo4j @@ -13,7 +13,7 @@ This module give you access to neo4j and org.jooby jooby-neo4j - 1.6.3 + 1.6.4 ``` @@ -176,7 +176,7 @@ A [Session.Store](/apidocs/org/jooby/neo4j/Neo4jSessionStore) powered by org.jooby jooby-neo4j - 1.6.3 + 1.6.4 ``` diff --git a/modules/jooby-neo4j/pom.xml b/modules/jooby-neo4j/pom.xml index aa5ade1026..5948839f29 100644 --- a/modules/jooby-neo4j/pom.xml +++ b/modules/jooby-neo4j/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-netty/README.md b/modules/jooby-netty/README.md index 76dff5efe7..c8f78ae964 100644 --- a/modules/jooby-netty/README.md +++ b/modules/jooby-netty/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-netty/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-netty/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-netty.svg)](https://javadoc.io/doc/org.jooby/jooby-netty/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-netty/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-netty/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-netty.svg)](https://javadoc.io/doc/org.jooby/jooby-netty/1.6.4) [![jooby-netty website](https://img.shields.io/badge/jooby-netty-brightgreen.svg)](http://jooby.org/doc/netty) # netty @@ -15,7 +15,7 @@ org.jooby jooby-netty - 1.6.3 + 1.6.4 ``` diff --git a/modules/jooby-netty/pom.xml b/modules/jooby-netty/pom.xml index aa5f6d9c25..3a414b94cf 100644 --- a/modules/jooby-netty/pom.xml +++ b/modules/jooby-netty/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-pac4j/README.md b/modules/jooby-pac4j/README.md index 1ce952a82c..bdfd9fcd07 100644 --- a/modules/jooby-pac4j/README.md +++ b/modules/jooby-pac4j/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-pac4j/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-pac4j/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-pac4j.svg)](https://javadoc.io/doc/org.jooby/jooby-pac4j/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-pac4j/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-pac4j/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-pac4j.svg)](https://javadoc.io/doc/org.jooby/jooby-pac4j/1.6.4) [![jooby-pac4j website](https://img.shields.io/badge/jooby-pac4j-brightgreen.svg)](http://jooby.org/doc/pac4j) # pac4j @@ -22,7 +22,7 @@ Authentication module via: [Pac4j 1.x](https://github.com/pac4j/pac4j). org.jooby jooby-pac4j - 1.6.3 + 1.6.4 ``` diff --git a/modules/jooby-pac4j/pom.xml b/modules/jooby-pac4j/pom.xml index 981b1e0ebf..8cb8a384d6 100644 --- a/modules/jooby-pac4j/pom.xml +++ b/modules/jooby-pac4j/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-pac4j2/README.md b/modules/jooby-pac4j2/README.md index c06c7a616d..2efb7a4512 100644 --- a/modules/jooby-pac4j2/README.md +++ b/modules/jooby-pac4j2/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-pac4j2/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-pac4j2/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-pac4j2.svg)](https://javadoc.io/doc/org.jooby/jooby-pac4j2/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-pac4j2/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-pac4j2/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-pac4j2.svg)](https://javadoc.io/doc/org.jooby/jooby-pac4j2/1.6.4) [![jooby-pac4j2 website](https://img.shields.io/badge/jooby-pac4j2-brightgreen.svg)](http://jooby.org/doc/pac4j2) # pac4j module @@ -19,7 +19,7 @@ Authentication module via: Pac4j 2.x org.jooby jooby-pac4j2 - 1.6.3 + 1.6.4 ``` diff --git a/modules/jooby-pac4j2/pom.xml b/modules/jooby-pac4j2/pom.xml index 0b54e37fbf..8d838cb03d 100644 --- a/modules/jooby-pac4j2/pom.xml +++ b/modules/jooby-pac4j2/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-pebble/README.md b/modules/jooby-pebble/README.md index ef2b892543..835c6edb0b 100644 --- a/modules/jooby-pebble/README.md +++ b/modules/jooby-pebble/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-pebble/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-pebble/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-pebble.svg)](https://javadoc.io/doc/org.jooby/jooby-pebble/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-pebble/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-pebble/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-pebble.svg)](https://javadoc.io/doc/org.jooby/jooby-pebble/1.6.4) [![jooby-pebble website](https://img.shields.io/badge/jooby-pebble-brightgreen.svg)](http://jooby.org/doc/pebble) # pebble @@ -16,7 +16,7 @@ org.jooby jooby-pebble - 1.6.3 + 1.6.4 ``` diff --git a/modules/jooby-pebble/pom.xml b/modules/jooby-pebble/pom.xml index b21d0ef91a..e6160d67f2 100644 --- a/modules/jooby-pebble/pom.xml +++ b/modules/jooby-pebble/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-quartz/README.md b/modules/jooby-quartz/README.md index 1cfceabba1..3ca3925ffa 100644 --- a/modules/jooby-quartz/README.md +++ b/modules/jooby-quartz/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-quartz/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-quartz/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-quartz.svg)](https://javadoc.io/doc/org.jooby/jooby-quartz/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-quartz/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-quartz/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-quartz.svg)](https://javadoc.io/doc/org.jooby/jooby-quartz/1.6.4) [![jooby-quartz website](https://img.shields.io/badge/jooby-quartz-brightgreen.svg)](http://jooby.org/doc/quartz) # quartz @@ -11,7 +11,7 @@ Cron triggers, job scheduling and async processing via [Quartz](http://quartz-sc org.jooby jooby-quartz - 1.6.3 + 1.6.4 ``` diff --git a/modules/jooby-quartz/pom.xml b/modules/jooby-quartz/pom.xml index 5776ad804f..7a8a127d28 100644 --- a/modules/jooby-quartz/pom.xml +++ b/modules/jooby-quartz/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-querydsl/README.md b/modules/jooby-querydsl/README.md index fc47506743..1d76e306d4 100644 --- a/modules/jooby-querydsl/README.md +++ b/modules/jooby-querydsl/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-querydsl/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-querydsl/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-querydsl.svg)](https://javadoc.io/doc/org.jooby/jooby-querydsl/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-querydsl/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-querydsl/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-querydsl.svg)](https://javadoc.io/doc/org.jooby/jooby-querydsl/1.6.4) [![jooby-querydsl website](https://img.shields.io/badge/jooby-querydsl-brightgreen.svg)](http://jooby.org/doc/querydsl) # queryDSL @@ -17,7 +17,7 @@ SQL abstraction provided by QueryDSL using org.jooby jooby-querydsl - 1.6.3 + 1.6.4 ``` diff --git a/modules/jooby-querydsl/pom.xml b/modules/jooby-querydsl/pom.xml index c3d7130d62..16b02e15f7 100644 --- a/modules/jooby-querydsl/pom.xml +++ b/modules/jooby-querydsl/pom.xml @@ -4,7 +4,7 @@ modules org.jooby - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-reactor/README.md b/modules/jooby-reactor/README.md index ab745f3db3..f51be748a1 100644 --- a/modules/jooby-reactor/README.md +++ b/modules/jooby-reactor/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-reactor/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-reactor/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-reactor.svg)](https://javadoc.io/doc/org.jooby/jooby-reactor/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-reactor/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-reactor/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-reactor.svg)](https://javadoc.io/doc/org.jooby/jooby-reactor/1.6.4) [![jooby-reactor website](https://img.shields.io/badge/jooby-reactor-brightgreen.svg)](http://jooby.org/doc/reactor) # reactor @@ -11,7 +11,7 @@ org.jooby jooby-reactor - 1.6.3 + 1.6.4 ``` diff --git a/modules/jooby-reactor/pom.xml b/modules/jooby-reactor/pom.xml index 2a05b7c658..811831728d 100644 --- a/modules/jooby-reactor/pom.xml +++ b/modules/jooby-reactor/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-requery/README.md b/modules/jooby-requery/README.md index 805e7083b9..c592d9c6b7 100644 --- a/modules/jooby-requery/README.md +++ b/modules/jooby-requery/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-requery/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-requery/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-requery.svg)](https://javadoc.io/doc/org.jooby/jooby-requery/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-requery/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-requery/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-requery.svg)](https://javadoc.io/doc/org.jooby/jooby-requery/1.6.4) [![jooby-requery website](https://img.shields.io/badge/jooby-requery-brightgreen.svg)](http://jooby.org/doc/requery) # requery @@ -15,7 +15,7 @@ Safe, clean and efficient database access via Reactive Ext org.jooby jooby-rxjava - 1.6.3 + 1.6.4 ``` diff --git a/modules/jooby-rxjava/pom.xml b/modules/jooby-rxjava/pom.xml index b4f5250881..ffbe7c2b10 100644 --- a/modules/jooby-rxjava/pom.xml +++ b/modules/jooby-rxjava/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-scanner/README.md b/modules/jooby-scanner/README.md index 5bb80d18d2..99725f8fe2 100644 --- a/modules/jooby-scanner/README.md +++ b/modules/jooby-scanner/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-scanner/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-scanner/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-scanner.svg)](https://javadoc.io/doc/org.jooby/jooby-scanner/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-scanner/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-scanner/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-scanner.svg)](https://javadoc.io/doc/org.jooby/jooby-scanner/1.6.4) [![jooby-scanner website](https://img.shields.io/badge/jooby-scanner-brightgreen.svg)](http://jooby.org/doc/scanner) # scanner @@ -13,7 +13,7 @@ This module provides `class-path` scanning services for `MVC routes`, `services` org.jooby jooby-scanner - 1.6.3 + 1.6.4 ``` diff --git a/modules/jooby-scanner/pom.xml b/modules/jooby-scanner/pom.xml index 550541afdf..511e702918 100644 --- a/modules/jooby-scanner/pom.xml +++ b/modules/jooby-scanner/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-servlet/README.md b/modules/jooby-servlet/README.md index 4c5d739644..1acb7b4266 100644 --- a/modules/jooby-servlet/README.md +++ b/modules/jooby-servlet/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-servlet/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-servlet/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-servlet.svg)](https://javadoc.io/doc/org.jooby/jooby-servlet/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-servlet/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-servlet/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-servlet.svg)](https://javadoc.io/doc/org.jooby/jooby-servlet/1.6.4) [![jooby-servlet website](https://img.shields.io/badge/jooby-servlet-brightgreen.svg)](http://jooby.org/doc/servlet) # servlets diff --git a/modules/jooby-servlet/pom.xml b/modules/jooby-servlet/pom.xml index efd5998b5d..1c7907ac4b 100644 --- a/modules/jooby-servlet/pom.xml +++ b/modules/jooby-servlet/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-sitemap/README.md b/modules/jooby-sitemap/README.md index 0359b4f8bb..ba12dc25d6 100644 --- a/modules/jooby-sitemap/README.md +++ b/modules/jooby-sitemap/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-sitemap/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-sitemap/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-sitemap.svg)](https://javadoc.io/doc/org.jooby/jooby-sitemap/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-sitemap/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-sitemap/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-sitemap.svg)](https://javadoc.io/doc/org.jooby/jooby-sitemap/1.6.4) [![jooby-sitemap website](https://img.shields.io/badge/jooby-sitemap-brightgreen.svg)](http://jooby.org/doc/sitemap) # sitemap @@ -15,7 +15,7 @@ Generate sitemap.xml files org.jooby jooby-sitemap - 1.6.3 + 1.6.4 ``` diff --git a/modules/jooby-sitemap/pom.xml b/modules/jooby-sitemap/pom.xml index 8af172d794..3e8e9f9b55 100644 --- a/modules/jooby-sitemap/pom.xml +++ b/modules/jooby-sitemap/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-spymemcached/README.md b/modules/jooby-spymemcached/README.md index 29ed54111d..bee8012d80 100644 --- a/modules/jooby-spymemcached/README.md +++ b/modules/jooby-spymemcached/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-spymemcached/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-spymemcached/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-spymemcached.svg)](https://javadoc.io/doc/org.jooby/jooby-spymemcached/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-spymemcached/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-spymemcached/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-spymemcached.svg)](https://javadoc.io/doc/org.jooby/jooby-spymemcached/1.6.4) [![jooby-spymemcached website](https://img.shields.io/badge/jooby-spymemcached-brightgreen.svg)](http://jooby.org/doc/spymemcached) # spymemcached @@ -15,7 +15,7 @@ Provides memcached access via [SpyMemcached](https://github.com/dustin/java-memc org.jooby jooby-spymemcached - 1.6.3 + 1.6.4 ``` @@ -65,7 +65,7 @@ or programmatically: org.jooby jooby-spymemcached - 1.6.3 + 1.6.4 ``` diff --git a/modules/jooby-spymemcached/pom.xml b/modules/jooby-spymemcached/pom.xml index 8015bf61b4..d52c10e743 100644 --- a/modules/jooby-spymemcached/pom.xml +++ b/modules/jooby-spymemcached/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-thymeleaf/README.md b/modules/jooby-thymeleaf/README.md index a4036c64d1..0cdb9fd684 100644 --- a/modules/jooby-thymeleaf/README.md +++ b/modules/jooby-thymeleaf/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-thymeleaf/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-thymeleaf/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-thymeleaf.svg)](https://javadoc.io/doc/org.jooby/jooby-thymeleaf/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-thymeleaf/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-thymeleaf/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-thymeleaf.svg)](https://javadoc.io/doc/org.jooby/jooby-thymeleaf/1.6.4) [![jooby-thymeleaf website](https://img.shields.io/badge/jooby-thymeleaf-brightgreen.svg)](http://jooby.org/doc/thymeleaf) # thymeleaf @@ -11,7 +11,7 @@ org.jooby jooby-thymeleaf - 1.6.3 + 1.6.4 ``` diff --git a/modules/jooby-thymeleaf/pom.xml b/modules/jooby-thymeleaf/pom.xml index b0ef7d7417..febe43e775 100644 --- a/modules/jooby-thymeleaf/pom.xml +++ b/modules/jooby-thymeleaf/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-unbescape/README.md b/modules/jooby-unbescape/README.md index 07e3b6c2d6..cec70d1b64 100644 --- a/modules/jooby-unbescape/README.md +++ b/modules/jooby-unbescape/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-unbescape/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-unbescape/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-unbescape.svg)](https://javadoc.io/doc/org.jooby/jooby-unbescape/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-unbescape/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-unbescape/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-unbescape.svg)](https://javadoc.io/doc/org.jooby/jooby-unbescape/1.6.4) [![jooby-unbescape website](https://img.shields.io/badge/jooby-unbescape-brightgreen.svg)](http://jooby.org/doc/unbescape) # unbescape @@ -11,7 +11,7 @@ org.jooby jooby-unbescape - 1.6.3 + 1.6.4 ``` diff --git a/modules/jooby-unbescape/pom.xml b/modules/jooby-unbescape/pom.xml index 989caba606..584bb78161 100644 --- a/modules/jooby-unbescape/pom.xml +++ b/modules/jooby-unbescape/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-undertow/README.md b/modules/jooby-undertow/README.md index af079f4fc3..9b14d303e3 100644 --- a/modules/jooby-undertow/README.md +++ b/modules/jooby-undertow/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-undertow/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-undertow/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-undertow.svg)](https://javadoc.io/doc/org.jooby/jooby-undertow/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-undertow/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-undertow/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-undertow.svg)](https://javadoc.io/doc/org.jooby/jooby-undertow/1.6.4) [![jooby-undertow website](https://img.shields.io/badge/jooby-undertow-brightgreen.svg)](http://jooby.org/doc/undertow) # undertow @@ -15,7 +15,7 @@ org.jooby jooby-undertow - 1.6.3 + 1.6.4 ``` diff --git a/modules/jooby-undertow/pom.xml b/modules/jooby-undertow/pom.xml index 4493f10943..5ca30ff867 100644 --- a/modules/jooby-undertow/pom.xml +++ b/modules/jooby-undertow/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-whoops/README.md b/modules/jooby-whoops/README.md index 2430f60436..3cce33104c 100644 --- a/modules/jooby-whoops/README.md +++ b/modules/jooby-whoops/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-whoops/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-whoops/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-whoops.svg)](https://javadoc.io/doc/org.jooby/jooby-whoops/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-whoops/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-whoops/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-whoops.svg)](https://javadoc.io/doc/org.jooby/jooby-whoops/1.6.4) [![jooby-whoops website](https://img.shields.io/badge/jooby-whoops-brightgreen.svg)](http://jooby.org/doc/whoops) # whoops @@ -15,7 +15,7 @@ Pretty error page that helps you debug your web application. org.jooby jooby-whoops - 1.6.3 + 1.6.4 ``` diff --git a/modules/jooby-whoops/pom.xml b/modules/jooby-whoops/pom.xml index e956860f38..77eaee398b 100644 --- a/modules/jooby-whoops/pom.xml +++ b/modules/jooby-whoops/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/jooby-yasson/README.md b/modules/jooby-yasson/README.md index d24d7cf46d..673b1b45a1 100644 --- a/modules/jooby-yasson/README.md +++ b/modules/jooby-yasson/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-yasson/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-yasson/1.6.3) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-yasson.svg)](https://javadoc.io/doc/org.jooby/jooby-yasson/1.6.3) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-yasson/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-yasson/1.6.4) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-yasson.svg)](https://javadoc.io/doc/org.jooby/jooby-yasson/1.6.4) [![jooby-yasson website](https://img.shields.io/badge/jooby-yasson-brightgreen.svg)](http://jooby.org/doc/yasson) # yasson @@ -17,7 +17,7 @@ JSON support via [yasson](https://github.com/eclipse-ee4j/yasson) library. org.jooby jooby-yasson - 1.6.3 + 1.6.4 ``` diff --git a/modules/jooby-yasson/pom.xml b/modules/jooby-yasson/pom.xml index b6629e2e96..d295c3b0d8 100644 --- a/modules/jooby-yasson/pom.xml +++ b/modules/jooby-yasson/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4-SNAPSHOT + 1.6.4 4.0.0 diff --git a/modules/pom.xml b/modules/pom.xml index 6ae1eded26..20a2d7071a 100644 --- a/modules/pom.xml +++ b/modules/pom.xml @@ -6,7 +6,7 @@ org.jooby jooby-project - 1.6.4-SNAPSHOT + 1.6.4 modules diff --git a/pom.xml b/pom.xml index f615fbf043..433242f052 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ 4.0.0 org.jooby jooby-project - 1.6.4-SNAPSHOT + 1.6.4 pom jooby-project From e76943669dc2efb70769d7c0c775a82f0f7b8102 Mon Sep 17 00:00:00 2001 From: Edgar Espina Date: Tue, 27 Aug 2019 08:59:36 -0300 Subject: [PATCH 74/93] prepare for next development cycle --- jooby/pom.xml | 2 +- modules/coverage-report/pom.xml | 2 +- modules/jooby-akka/pom.xml | 2 +- modules/jooby-apitool/pom.xml | 2 +- modules/jooby-archetype/pom.xml | 2 +- modules/jooby-assets-autoprefixer/pom.xml | 2 +- modules/jooby-assets-babel/pom.xml | 2 +- modules/jooby-assets-clean-css/pom.xml | 2 +- modules/jooby-assets-closure-compiler/pom.xml | 2 +- modules/jooby-assets-csslint/pom.xml | 2 +- modules/jooby-assets-j2v8/pom.xml | 2 +- modules/jooby-assets-jscs/pom.xml | 2 +- modules/jooby-assets-jshint/pom.xml | 2 +- modules/jooby-assets-less/pom.xml | 2 +- modules/jooby-assets-less4j/pom.xml | 2 +- modules/jooby-assets-ng-annotate/pom.xml | 2 +- modules/jooby-assets-nodejs/pom.xml | 2 +- modules/jooby-assets-requirejs/pom.xml | 2 +- modules/jooby-assets-rollup/pom.xml | 2 +- modules/jooby-assets-sass/pom.xml | 2 +- modules/jooby-assets-svg-sprites/pom.xml | 2 +- modules/jooby-assets-svg-symbol/pom.xml | 2 +- modules/jooby-assets-uglify/pom.xml | 2 +- modules/jooby-assets-yui-compressor/pom.xml | 2 +- modules/jooby-assets/pom.xml | 2 +- modules/jooby-aws/pom.xml | 2 +- modules/jooby-banner/pom.xml | 2 +- modules/jooby-caffeine/pom.xml | 2 +- modules/jooby-camel/pom.xml | 2 +- modules/jooby-cassandra/pom.xml | 2 +- modules/jooby-commons-email/pom.xml | 2 +- modules/jooby-consul/pom.xml | 2 +- modules/jooby-couchbase/pom.xml | 2 +- modules/jooby-crash/pom.xml | 2 +- modules/jooby-csl/pom.xml | 2 +- modules/jooby-dist/pom.xml | 2 +- modules/jooby-ebean/pom.xml | 2 +- modules/jooby-ehcache/pom.xml | 2 +- modules/jooby-elasticsearch/pom.xml | 2 +- modules/jooby-eventbus/pom.xml | 2 +- modules/jooby-executor/pom.xml | 2 +- modules/jooby-exposed/pom.xml | 2 +- modules/jooby-filewatcher/pom.xml | 2 +- modules/jooby-flyway/pom.xml | 2 +- modules/jooby-frontend/pom.xml | 2 +- modules/jooby-ftl/pom.xml | 2 +- modules/jooby-gradle-plugin/pom.xml | 2 +- modules/jooby-gson/pom.xml | 2 +- modules/jooby-guava-cache/pom.xml | 2 +- modules/jooby-hazelcast/pom.xml | 2 +- modules/jooby-hbm/pom.xml | 2 +- modules/jooby-hbs/pom.xml | 2 +- modules/jooby-hbv/pom.xml | 2 +- modules/jooby-jackson/pom.xml | 2 +- modules/jooby-jade/pom.xml | 2 +- modules/jooby-jdbc/pom.xml | 2 +- modules/jooby-jdbi/pom.xml | 2 +- modules/jooby-jdbi3/pom.xml | 2 +- modules/jooby-jedis/pom.xml | 2 +- modules/jooby-jetty/pom.xml | 2 +- modules/jooby-jongo/pom.xml | 2 +- modules/jooby-jooq/pom.xml | 2 +- modules/jooby-lang-kotlin/pom.xml | 2 +- modules/jooby-livereload/pom.xml | 2 +- modules/jooby-maven-plugin/pom.xml | 2 +- modules/jooby-metrics/pom.xml | 2 +- modules/jooby-micrometer/pom.xml | 2 +- modules/jooby-mongodb-rx/pom.xml | 2 +- modules/jooby-mongodb/pom.xml | 2 +- modules/jooby-morphia/pom.xml | 2 +- modules/jooby-neo4j/pom.xml | 2 +- modules/jooby-netty/pom.xml | 2 +- modules/jooby-pac4j/pom.xml | 2 +- modules/jooby-pac4j2/pom.xml | 2 +- modules/jooby-pebble/pom.xml | 2 +- modules/jooby-quartz/pom.xml | 2 +- modules/jooby-querydsl/pom.xml | 2 +- modules/jooby-reactor/pom.xml | 2 +- modules/jooby-requery/pom.xml | 2 +- modules/jooby-rocker/pom.xml | 2 +- modules/jooby-run/pom.xml | 2 +- modules/jooby-rxjava-jdbc/pom.xml | 2 +- modules/jooby-rxjava/pom.xml | 2 +- modules/jooby-scanner/pom.xml | 2 +- modules/jooby-servlet/pom.xml | 2 +- modules/jooby-sitemap/pom.xml | 2 +- modules/jooby-spymemcached/pom.xml | 2 +- modules/jooby-thymeleaf/pom.xml | 2 +- modules/jooby-unbescape/pom.xml | 2 +- modules/jooby-undertow/pom.xml | 2 +- modules/jooby-whoops/pom.xml | 2 +- modules/jooby-yasson/pom.xml | 2 +- modules/pom.xml | 2 +- pom.xml | 2 +- 94 files changed, 94 insertions(+), 94 deletions(-) diff --git a/jooby/pom.xml b/jooby/pom.xml index d6897b6148..e427bee887 100644 --- a/jooby/pom.xml +++ b/jooby/pom.xml @@ -6,7 +6,7 @@ org.jooby jooby-project - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/coverage-report/pom.xml b/modules/coverage-report/pom.xml index 115eaf8d95..70b0ea6ca9 100644 --- a/modules/coverage-report/pom.xml +++ b/modules/coverage-report/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-akka/pom.xml b/modules/jooby-akka/pom.xml index 2eda4989a3..330c7bec9a 100644 --- a/modules/jooby-akka/pom.xml +++ b/modules/jooby-akka/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-apitool/pom.xml b/modules/jooby-apitool/pom.xml index 38990c4f39..1f2dfdf0a8 100644 --- a/modules/jooby-apitool/pom.xml +++ b/modules/jooby-apitool/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-archetype/pom.xml b/modules/jooby-archetype/pom.xml index b6d71d8e95..92b4e86e81 100644 --- a/modules/jooby-archetype/pom.xml +++ b/modules/jooby-archetype/pom.xml @@ -7,7 +7,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT jooby-archetype diff --git a/modules/jooby-assets-autoprefixer/pom.xml b/modules/jooby-assets-autoprefixer/pom.xml index b61072e1c7..cdb33c35ff 100644 --- a/modules/jooby-assets-autoprefixer/pom.xml +++ b/modules/jooby-assets-autoprefixer/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-babel/pom.xml b/modules/jooby-assets-babel/pom.xml index 951d9749a9..7425fc9477 100644 --- a/modules/jooby-assets-babel/pom.xml +++ b/modules/jooby-assets-babel/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-clean-css/pom.xml b/modules/jooby-assets-clean-css/pom.xml index 7385b7a557..75a0b9e453 100644 --- a/modules/jooby-assets-clean-css/pom.xml +++ b/modules/jooby-assets-clean-css/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-closure-compiler/pom.xml b/modules/jooby-assets-closure-compiler/pom.xml index 442fc3da73..ca45a81c21 100644 --- a/modules/jooby-assets-closure-compiler/pom.xml +++ b/modules/jooby-assets-closure-compiler/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-csslint/pom.xml b/modules/jooby-assets-csslint/pom.xml index 26401abffa..b3a69b064b 100644 --- a/modules/jooby-assets-csslint/pom.xml +++ b/modules/jooby-assets-csslint/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-j2v8/pom.xml b/modules/jooby-assets-j2v8/pom.xml index b006d75fb8..ad78e5fbbd 100644 --- a/modules/jooby-assets-j2v8/pom.xml +++ b/modules/jooby-assets-j2v8/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-jscs/pom.xml b/modules/jooby-assets-jscs/pom.xml index 9864b9d008..c93bc62e15 100644 --- a/modules/jooby-assets-jscs/pom.xml +++ b/modules/jooby-assets-jscs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-jshint/pom.xml b/modules/jooby-assets-jshint/pom.xml index bd89621594..2dc0647ca4 100644 --- a/modules/jooby-assets-jshint/pom.xml +++ b/modules/jooby-assets-jshint/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-less/pom.xml b/modules/jooby-assets-less/pom.xml index f049b172a5..a205da8b4e 100644 --- a/modules/jooby-assets-less/pom.xml +++ b/modules/jooby-assets-less/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-less4j/pom.xml b/modules/jooby-assets-less4j/pom.xml index 7ad7a6b0aa..0ea83102ee 100644 --- a/modules/jooby-assets-less4j/pom.xml +++ b/modules/jooby-assets-less4j/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-ng-annotate/pom.xml b/modules/jooby-assets-ng-annotate/pom.xml index f5eba6b773..382e654570 100644 --- a/modules/jooby-assets-ng-annotate/pom.xml +++ b/modules/jooby-assets-ng-annotate/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-nodejs/pom.xml b/modules/jooby-assets-nodejs/pom.xml index 259492e5df..4cee414da5 100644 --- a/modules/jooby-assets-nodejs/pom.xml +++ b/modules/jooby-assets-nodejs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-requirejs/pom.xml b/modules/jooby-assets-requirejs/pom.xml index eed8a7366e..2c6f03ec8c 100644 --- a/modules/jooby-assets-requirejs/pom.xml +++ b/modules/jooby-assets-requirejs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-rollup/pom.xml b/modules/jooby-assets-rollup/pom.xml index 16f22aa857..ce86affc9a 100644 --- a/modules/jooby-assets-rollup/pom.xml +++ b/modules/jooby-assets-rollup/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-sass/pom.xml b/modules/jooby-assets-sass/pom.xml index ed82cfae18..ffd6f8ac3b 100644 --- a/modules/jooby-assets-sass/pom.xml +++ b/modules/jooby-assets-sass/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-svg-sprites/pom.xml b/modules/jooby-assets-svg-sprites/pom.xml index 3179c54788..c17be28bd9 100644 --- a/modules/jooby-assets-svg-sprites/pom.xml +++ b/modules/jooby-assets-svg-sprites/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-svg-symbol/pom.xml b/modules/jooby-assets-svg-symbol/pom.xml index f26892cd77..d57ba00b78 100644 --- a/modules/jooby-assets-svg-symbol/pom.xml +++ b/modules/jooby-assets-svg-symbol/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-uglify/pom.xml b/modules/jooby-assets-uglify/pom.xml index 678ebe5981..2f1c94e026 100644 --- a/modules/jooby-assets-uglify/pom.xml +++ b/modules/jooby-assets-uglify/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-yui-compressor/pom.xml b/modules/jooby-assets-yui-compressor/pom.xml index 475ac9b8b9..56429d0342 100644 --- a/modules/jooby-assets-yui-compressor/pom.xml +++ b/modules/jooby-assets-yui-compressor/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets/pom.xml b/modules/jooby-assets/pom.xml index cfdadd02f2..fca99da641 100644 --- a/modules/jooby-assets/pom.xml +++ b/modules/jooby-assets/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-aws/pom.xml b/modules/jooby-aws/pom.xml index 4240e40dba..87d9ee49d2 100644 --- a/modules/jooby-aws/pom.xml +++ b/modules/jooby-aws/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-banner/pom.xml b/modules/jooby-banner/pom.xml index ea7da404eb..8af18b21ce 100644 --- a/modules/jooby-banner/pom.xml +++ b/modules/jooby-banner/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-caffeine/pom.xml b/modules/jooby-caffeine/pom.xml index a482a342ac..ac2dd1f417 100644 --- a/modules/jooby-caffeine/pom.xml +++ b/modules/jooby-caffeine/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-camel/pom.xml b/modules/jooby-camel/pom.xml index 72c8809f22..5fe832fe41 100644 --- a/modules/jooby-camel/pom.xml +++ b/modules/jooby-camel/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-cassandra/pom.xml b/modules/jooby-cassandra/pom.xml index 9058440088..1e4fa2f799 100644 --- a/modules/jooby-cassandra/pom.xml +++ b/modules/jooby-cassandra/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-commons-email/pom.xml b/modules/jooby-commons-email/pom.xml index 9a1a58999a..8990f9490a 100644 --- a/modules/jooby-commons-email/pom.xml +++ b/modules/jooby-commons-email/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-consul/pom.xml b/modules/jooby-consul/pom.xml index 03be61f2d0..515253a2f3 100644 --- a/modules/jooby-consul/pom.xml +++ b/modules/jooby-consul/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-couchbase/pom.xml b/modules/jooby-couchbase/pom.xml index ef5377ae0f..281570e410 100644 --- a/modules/jooby-couchbase/pom.xml +++ b/modules/jooby-couchbase/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-crash/pom.xml b/modules/jooby-crash/pom.xml index 5632de7745..ea3872d338 100644 --- a/modules/jooby-crash/pom.xml +++ b/modules/jooby-crash/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-csl/pom.xml b/modules/jooby-csl/pom.xml index 7888146a69..d1a255f1cb 100644 --- a/modules/jooby-csl/pom.xml +++ b/modules/jooby-csl/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-dist/pom.xml b/modules/jooby-dist/pom.xml index b2155f3b63..094554e594 100644 --- a/modules/jooby-dist/pom.xml +++ b/modules/jooby-dist/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-ebean/pom.xml b/modules/jooby-ebean/pom.xml index f65789d899..4a99c09e9f 100644 --- a/modules/jooby-ebean/pom.xml +++ b/modules/jooby-ebean/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-ehcache/pom.xml b/modules/jooby-ehcache/pom.xml index a459933a9e..a1b9becb0f 100644 --- a/modules/jooby-ehcache/pom.xml +++ b/modules/jooby-ehcache/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-elasticsearch/pom.xml b/modules/jooby-elasticsearch/pom.xml index c67f361fe2..826d57916e 100644 --- a/modules/jooby-elasticsearch/pom.xml +++ b/modules/jooby-elasticsearch/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-eventbus/pom.xml b/modules/jooby-eventbus/pom.xml index 5dba52dd3e..62cc63ee62 100644 --- a/modules/jooby-eventbus/pom.xml +++ b/modules/jooby-eventbus/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-executor/pom.xml b/modules/jooby-executor/pom.xml index fca10df99d..f49f94dc46 100644 --- a/modules/jooby-executor/pom.xml +++ b/modules/jooby-executor/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-exposed/pom.xml b/modules/jooby-exposed/pom.xml index 47cfc0cf23..8c29774570 100644 --- a/modules/jooby-exposed/pom.xml +++ b/modules/jooby-exposed/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-filewatcher/pom.xml b/modules/jooby-filewatcher/pom.xml index a535ba2df2..a4904bc31b 100644 --- a/modules/jooby-filewatcher/pom.xml +++ b/modules/jooby-filewatcher/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-flyway/pom.xml b/modules/jooby-flyway/pom.xml index 6eb7a84e3d..ba081d1748 100644 --- a/modules/jooby-flyway/pom.xml +++ b/modules/jooby-flyway/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-frontend/pom.xml b/modules/jooby-frontend/pom.xml index 88b3d8a138..8b6255547d 100644 --- a/modules/jooby-frontend/pom.xml +++ b/modules/jooby-frontend/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-ftl/pom.xml b/modules/jooby-ftl/pom.xml index 7b2daafa79..6bc954cd15 100644 --- a/modules/jooby-ftl/pom.xml +++ b/modules/jooby-ftl/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-gradle-plugin/pom.xml b/modules/jooby-gradle-plugin/pom.xml index 46d4568503..59ed0a9b7c 100644 --- a/modules/jooby-gradle-plugin/pom.xml +++ b/modules/jooby-gradle-plugin/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-gson/pom.xml b/modules/jooby-gson/pom.xml index 4921887d9a..1d16d30a38 100644 --- a/modules/jooby-gson/pom.xml +++ b/modules/jooby-gson/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-guava-cache/pom.xml b/modules/jooby-guava-cache/pom.xml index 9e17c53de3..6d5a82ff92 100644 --- a/modules/jooby-guava-cache/pom.xml +++ b/modules/jooby-guava-cache/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-hazelcast/pom.xml b/modules/jooby-hazelcast/pom.xml index 3b54215909..0570f3770a 100644 --- a/modules/jooby-hazelcast/pom.xml +++ b/modules/jooby-hazelcast/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-hbm/pom.xml b/modules/jooby-hbm/pom.xml index f6dd76b29e..0f6095dee4 100644 --- a/modules/jooby-hbm/pom.xml +++ b/modules/jooby-hbm/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-hbs/pom.xml b/modules/jooby-hbs/pom.xml index cb0d87a6a2..4ddf7aa479 100644 --- a/modules/jooby-hbs/pom.xml +++ b/modules/jooby-hbs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-hbv/pom.xml b/modules/jooby-hbv/pom.xml index 75a6a74276..3207a2ce6c 100644 --- a/modules/jooby-hbv/pom.xml +++ b/modules/jooby-hbv/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-jackson/pom.xml b/modules/jooby-jackson/pom.xml index 438f22dca4..3ff06516fa 100644 --- a/modules/jooby-jackson/pom.xml +++ b/modules/jooby-jackson/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-jade/pom.xml b/modules/jooby-jade/pom.xml index fff9a0cbd0..f73582d801 100644 --- a/modules/jooby-jade/pom.xml +++ b/modules/jooby-jade/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-jdbc/pom.xml b/modules/jooby-jdbc/pom.xml index 7e72ef59f2..aecdacf985 100644 --- a/modules/jooby-jdbc/pom.xml +++ b/modules/jooby-jdbc/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-jdbi/pom.xml b/modules/jooby-jdbi/pom.xml index 3e0d7256df..9fba532f19 100644 --- a/modules/jooby-jdbi/pom.xml +++ b/modules/jooby-jdbi/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-jdbi3/pom.xml b/modules/jooby-jdbi3/pom.xml index 6f24ad6ad2..ab0e9b39af 100644 --- a/modules/jooby-jdbi3/pom.xml +++ b/modules/jooby-jdbi3/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-jedis/pom.xml b/modules/jooby-jedis/pom.xml index b0678aa02d..55529c3dac 100644 --- a/modules/jooby-jedis/pom.xml +++ b/modules/jooby-jedis/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-jetty/pom.xml b/modules/jooby-jetty/pom.xml index f0dc1e9b9d..0e6aeff04a 100644 --- a/modules/jooby-jetty/pom.xml +++ b/modules/jooby-jetty/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-jongo/pom.xml b/modules/jooby-jongo/pom.xml index 90887afe3a..eedaaf890c 100644 --- a/modules/jooby-jongo/pom.xml +++ b/modules/jooby-jongo/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-jooq/pom.xml b/modules/jooby-jooq/pom.xml index 8d10c748d1..e14f6241fd 100644 --- a/modules/jooby-jooq/pom.xml +++ b/modules/jooby-jooq/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-lang-kotlin/pom.xml b/modules/jooby-lang-kotlin/pom.xml index 0b5914ed56..617f27852c 100644 --- a/modules/jooby-lang-kotlin/pom.xml +++ b/modules/jooby-lang-kotlin/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-livereload/pom.xml b/modules/jooby-livereload/pom.xml index 8dc97883a7..a9abd60c8d 100644 --- a/modules/jooby-livereload/pom.xml +++ b/modules/jooby-livereload/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT jooby-livereload jooby-livereload diff --git a/modules/jooby-maven-plugin/pom.xml b/modules/jooby-maven-plugin/pom.xml index b9e506d60f..65f2a751ee 100644 --- a/modules/jooby-maven-plugin/pom.xml +++ b/modules/jooby-maven-plugin/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-metrics/pom.xml b/modules/jooby-metrics/pom.xml index 5e3e40dcc6..04e9bf641d 100644 --- a/modules/jooby-metrics/pom.xml +++ b/modules/jooby-metrics/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-micrometer/pom.xml b/modules/jooby-micrometer/pom.xml index e5d38724b4..1b1b417d8e 100644 --- a/modules/jooby-micrometer/pom.xml +++ b/modules/jooby-micrometer/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-mongodb-rx/pom.xml b/modules/jooby-mongodb-rx/pom.xml index a6226d65bb..0d336e6991 100644 --- a/modules/jooby-mongodb-rx/pom.xml +++ b/modules/jooby-mongodb-rx/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-mongodb/pom.xml b/modules/jooby-mongodb/pom.xml index d28a0878e3..76191319a0 100644 --- a/modules/jooby-mongodb/pom.xml +++ b/modules/jooby-mongodb/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-morphia/pom.xml b/modules/jooby-morphia/pom.xml index 7ac29e16a7..c66785f4c7 100644 --- a/modules/jooby-morphia/pom.xml +++ b/modules/jooby-morphia/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-neo4j/pom.xml b/modules/jooby-neo4j/pom.xml index 5948839f29..96f73938a5 100644 --- a/modules/jooby-neo4j/pom.xml +++ b/modules/jooby-neo4j/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-netty/pom.xml b/modules/jooby-netty/pom.xml index 3a414b94cf..56efd04461 100644 --- a/modules/jooby-netty/pom.xml +++ b/modules/jooby-netty/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-pac4j/pom.xml b/modules/jooby-pac4j/pom.xml index 8cb8a384d6..2ad14390d6 100644 --- a/modules/jooby-pac4j/pom.xml +++ b/modules/jooby-pac4j/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-pac4j2/pom.xml b/modules/jooby-pac4j2/pom.xml index 8d838cb03d..4bd83ed04b 100644 --- a/modules/jooby-pac4j2/pom.xml +++ b/modules/jooby-pac4j2/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-pebble/pom.xml b/modules/jooby-pebble/pom.xml index e6160d67f2..24f21f3f85 100644 --- a/modules/jooby-pebble/pom.xml +++ b/modules/jooby-pebble/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-quartz/pom.xml b/modules/jooby-quartz/pom.xml index 7a8a127d28..8743e34b6b 100644 --- a/modules/jooby-quartz/pom.xml +++ b/modules/jooby-quartz/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-querydsl/pom.xml b/modules/jooby-querydsl/pom.xml index 16b02e15f7..cdbbfb8636 100644 --- a/modules/jooby-querydsl/pom.xml +++ b/modules/jooby-querydsl/pom.xml @@ -4,7 +4,7 @@ modules org.jooby - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-reactor/pom.xml b/modules/jooby-reactor/pom.xml index 811831728d..bd1ba9e3f7 100644 --- a/modules/jooby-reactor/pom.xml +++ b/modules/jooby-reactor/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-requery/pom.xml b/modules/jooby-requery/pom.xml index 3d9c2b7105..963810cf40 100644 --- a/modules/jooby-requery/pom.xml +++ b/modules/jooby-requery/pom.xml @@ -4,7 +4,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT jooby-requery requery module diff --git a/modules/jooby-rocker/pom.xml b/modules/jooby-rocker/pom.xml index 195afc2d6b..c1d68b7550 100644 --- a/modules/jooby-rocker/pom.xml +++ b/modules/jooby-rocker/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT jooby-rocker jooby-rocker diff --git a/modules/jooby-run/pom.xml b/modules/jooby-run/pom.xml index 6e16febcdb..baf192398d 100644 --- a/modules/jooby-run/pom.xml +++ b/modules/jooby-run/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-rxjava-jdbc/pom.xml b/modules/jooby-rxjava-jdbc/pom.xml index 5770b9220c..b81d0317d3 100644 --- a/modules/jooby-rxjava-jdbc/pom.xml +++ b/modules/jooby-rxjava-jdbc/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-rxjava/pom.xml b/modules/jooby-rxjava/pom.xml index ffbe7c2b10..dcd9fc198f 100644 --- a/modules/jooby-rxjava/pom.xml +++ b/modules/jooby-rxjava/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-scanner/pom.xml b/modules/jooby-scanner/pom.xml index 511e702918..3e13c36517 100644 --- a/modules/jooby-scanner/pom.xml +++ b/modules/jooby-scanner/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-servlet/pom.xml b/modules/jooby-servlet/pom.xml index 1c7907ac4b..09981be746 100644 --- a/modules/jooby-servlet/pom.xml +++ b/modules/jooby-servlet/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-sitemap/pom.xml b/modules/jooby-sitemap/pom.xml index 3e8e9f9b55..38f365634c 100644 --- a/modules/jooby-sitemap/pom.xml +++ b/modules/jooby-sitemap/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-spymemcached/pom.xml b/modules/jooby-spymemcached/pom.xml index d52c10e743..970c9becf8 100644 --- a/modules/jooby-spymemcached/pom.xml +++ b/modules/jooby-spymemcached/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-thymeleaf/pom.xml b/modules/jooby-thymeleaf/pom.xml index febe43e775..6bdd855ae5 100644 --- a/modules/jooby-thymeleaf/pom.xml +++ b/modules/jooby-thymeleaf/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-unbescape/pom.xml b/modules/jooby-unbescape/pom.xml index 584bb78161..89aa90a93a 100644 --- a/modules/jooby-unbescape/pom.xml +++ b/modules/jooby-unbescape/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-undertow/pom.xml b/modules/jooby-undertow/pom.xml index 5ca30ff867..5b634fbdc1 100644 --- a/modules/jooby-undertow/pom.xml +++ b/modules/jooby-undertow/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-whoops/pom.xml b/modules/jooby-whoops/pom.xml index 77eaee398b..96218974a7 100644 --- a/modules/jooby-whoops/pom.xml +++ b/modules/jooby-whoops/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/jooby-yasson/pom.xml b/modules/jooby-yasson/pom.xml index d295c3b0d8..0349fd8d73 100644 --- a/modules/jooby-yasson/pom.xml +++ b/modules/jooby-yasson/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.4 + 1.6.5-SNAPSHOT 4.0.0 diff --git a/modules/pom.xml b/modules/pom.xml index 20a2d7071a..11405a910f 100644 --- a/modules/pom.xml +++ b/modules/pom.xml @@ -6,7 +6,7 @@ org.jooby jooby-project - 1.6.4 + 1.6.5-SNAPSHOT modules diff --git a/pom.xml b/pom.xml index 433242f052..182c1609ca 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ 4.0.0 org.jooby jooby-project - 1.6.4 + 1.6.5-SNAPSHOT pom jooby-project From d9a5bb878a9b304c9a8a45d910472437d742614e Mon Sep 17 00:00:00 2001 From: Edgar Espina Date: Wed, 11 Sep 2019 16:16:16 -0300 Subject: [PATCH 75/93] update travis branch to 1.x --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 54baf1d3cf..ad30c496eb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,7 +13,7 @@ jdk: branches: only: - - master + - 1.x script: - ./build/travis.sh From 1b3dea6a7b4581d436ad71646ad0cd4bfb0c0e06 Mon Sep 17 00:00:00 2001 From: Edgar Espina Date: Wed, 11 Sep 2019 16:20:53 -0300 Subject: [PATCH 76/93] Travis: use openjdk for 1.x branch --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index ad30c496eb..92c1316669 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,7 +9,7 @@ before_install: - export MAVEN_OPTS=-Xmx1024m jdk: - - oraclejdk8 + - openjdk8 branches: only: From 274803d91d538df1ee9cce66177ac8c95bb4330b Mon Sep 17 00:00:00 2001 From: Andrei Hurynovich Date: Mon, 16 Sep 2019 16:17:40 -0500 Subject: [PATCH 77/93] Test fixes for windows path separators, line endings, more elaborate error messages --- jooby/src/main/resources/org/jooby/jooby.conf | 2 +- .../test/java/org/jooby/test/JoobyRunner.java | 1 + .../jackson/JsonCustomMapperFeature.java | 13 +++++++------ .../org/jooby/jackson/JsonDoWithFeature.java | 14 ++++++++------ .../java/org/jooby/whoops/WhoopsTest.java | 2 +- .../src/test/resources/assets.conf | 0 .../test/java/org/jooby/assets/SassTest.java | 19 +++++++++++-------- .../jooby/assets/SvgSpritesFileSetTest.java | 12 ++++++------ .../org/jooby/assets/AssetCompilerTest.java | 4 ++-- 9 files changed, 37 insertions(+), 30 deletions(-) create mode 100644 modules/coverage-report/src/test/resources/assets.conf diff --git a/jooby/src/main/resources/org/jooby/jooby.conf b/jooby/src/main/resources/org/jooby/jooby.conf index 293ef122e8..c9af91db25 100644 --- a/jooby/src/main/resources/org/jooby/jooby.conf +++ b/jooby/src/main/resources/org/jooby/jooby.conf @@ -16,7 +16,7 @@ application { # class = App.class.getName() # tmpdir - tmpdir = ${java.io.tmpdir}/${application.name} + tmpdir = ${java.io.tmpdir}${file.separator}${application.name} # path (a.k.a. as contextPath) path = / diff --git a/jooby/src/test/java/org/jooby/test/JoobyRunner.java b/jooby/src/test/java/org/jooby/test/JoobyRunner.java index bf0923bb73..5990e53e59 100644 --- a/jooby/src/test/java/org/jooby/test/JoobyRunner.java +++ b/jooby/src/test/java/org/jooby/test/JoobyRunner.java @@ -105,6 +105,7 @@ private void prepare(final Class klass, final Class server) throws Initial } app = (Jooby) appClass.newInstance(); + app.throwBootstrapException(); if (app instanceof ServerFeature) { int appport = ((ServerFeature) app).port; if (appport > 0) { diff --git a/modules/coverage-report/src/test/java/org/jooby/jackson/JsonCustomMapperFeature.java b/modules/coverage-report/src/test/java/org/jooby/jackson/JsonCustomMapperFeature.java index fdb10d076b..bfe6a97b49 100644 --- a/modules/coverage-report/src/test/java/org/jooby/jackson/JsonCustomMapperFeature.java +++ b/modules/coverage-report/src/test/java/org/jooby/jackson/JsonCustomMapperFeature.java @@ -1,5 +1,6 @@ package org.jooby.jackson; +import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertSame; import java.net.URISyntaxException; @@ -31,12 +32,12 @@ public class JsonCustomMapperFeature extends ServerFeature { @Test public void get() throws URISyntaxException, Exception { - request() - .get("/members") - .expect("[ {\n" + - " \"id\" : 1,\n" + - " \"name\" : \"pablo\"\n" + - "} ]"); + request().get("/members").expect(value -> + assertEquals("[ {\n" + + " \"id\" : 1,\n" + + " \"name\" : \"pablo\"\n" + + "} ]", value.replaceAll("\r\n", "\n")) + ); } } diff --git a/modules/coverage-report/src/test/java/org/jooby/jackson/JsonDoWithFeature.java b/modules/coverage-report/src/test/java/org/jooby/jackson/JsonDoWithFeature.java index 5731fb1ec9..dabfe83c95 100644 --- a/modules/coverage-report/src/test/java/org/jooby/jackson/JsonDoWithFeature.java +++ b/modules/coverage-report/src/test/java/org/jooby/jackson/JsonDoWithFeature.java @@ -10,6 +10,8 @@ import com.google.common.collect.ImmutableMap; import com.google.common.collect.Lists; +import static org.junit.Assert.assertEquals; + @SuppressWarnings("unchecked") public class JsonDoWithFeature extends ServerFeature { @@ -26,12 +28,12 @@ public class JsonDoWithFeature extends ServerFeature { @Test public void get() throws URISyntaxException, Exception { - request() - .get("/members") - .expect("[ {\n" + - " \"id\" : 1,\n" + - " \"name\" : \"pablo\"\n" + - "} ]"); + request().get("/members").expect(value -> + assertEquals("[ {\n" + + " \"id\" : 1,\n" + + " \"name\" : \"pablo\"\n" + + "} ]", value.replaceAll("\r\n", "\n")) + ); } } diff --git a/modules/coverage-report/src/test/java/org/jooby/whoops/WhoopsTest.java b/modules/coverage-report/src/test/java/org/jooby/whoops/WhoopsTest.java index a63507ea53..85cfe33db6 100644 --- a/modules/coverage-report/src/test/java/org/jooby/whoops/WhoopsTest.java +++ b/modules/coverage-report/src/test/java/org/jooby/whoops/WhoopsTest.java @@ -47,7 +47,7 @@ public void shouldIgnoreMissingClass() { @Test public void locationOf() { - assertTrue(new File(Whoops.locationOf(Whoops.class)).exists()); + assertTrue(Whoops.locationOf(Whoops.class) + " file does not exist", new File(Whoops.locationOf(Whoops.class)).exists()); assertEquals("rt.jar", Whoops.locationOf(Object.class)); } diff --git a/modules/coverage-report/src/test/resources/assets.conf b/modules/coverage-report/src/test/resources/assets.conf new file mode 100644 index 0000000000..e69de29bb2 diff --git a/modules/jooby-assets-sass/src/test/java/org/jooby/assets/SassTest.java b/modules/jooby-assets-sass/src/test/java/org/jooby/assets/SassTest.java index 5223745d43..15bae91a87 100644 --- a/modules/jooby-assets-sass/src/test/java/org/jooby/assets/SassTest.java +++ b/modules/jooby-assets-sass/src/test/java/org/jooby/assets/SassTest.java @@ -1,8 +1,11 @@ package org.jooby.assets; +import static org.hamcrest.CoreMatchers.startsWith; +import static org.hamcrest.MatcherAssert.assertThat; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertTrue; +import org.hamcrest.core.StringStartsWith; import org.junit.Test; import com.typesafe.config.ConfigFactory; @@ -204,14 +207,14 @@ public void inlineSourceMap() throws Exception { " color: $primary-color;\n" + "}\n", ConfigFactory.empty()); - assertTrue(output.startsWith(".foo {\n" + - " color: #fff; }\n" + - "\n" + - "body {\n" + - " font: 100% Helvetica, sans-serif;\n" + - " color: #333; }\n" + - "\n" + - "/*# sourceMappingURL=data:application/json;base64,ewoJInZlcnNpb24iOiAzLAoJImZpbGUiOiAiLi4vLi4v")); + assertThat(output, startsWith(".foo {\n" + + " color: #fff; }\n" + + "\n" + + "body {\n" + + " font: 100% Helvetica, sans-serif;\n" + + " color: #333; }\n" + + "\n" + + "/*# sourceMappingURL=data:application/json;base64,ewoJInZlcnNpb24iOiAzLAoJImZpbGUiOiAiL")); // include up to "file": " } @Test diff --git a/modules/jooby-assets-svg-sprites/src/test/java/org/jooby/assets/SvgSpritesFileSetTest.java b/modules/jooby-assets-svg-sprites/src/test/java/org/jooby/assets/SvgSpritesFileSetTest.java index 57e0c079c4..e8a1779507 100644 --- a/modules/jooby-assets-svg-sprites/src/test/java/org/jooby/assets/SvgSpritesFileSetTest.java +++ b/modules/jooby-assets-svg-sprites/src/test/java/org/jooby/assets/SvgSpritesFileSetTest.java @@ -17,7 +17,7 @@ public void requireSpriteElementPath() throws Exception { @Test public void cssPath() throws Exception { - assertEquals(Paths.get("target", "css", "sprite.css").toString(), + assertEquals(Paths.get("target", "css").toString() + "/sprite.css", new SvgSprites() .set("spritePath", Paths.get("target", "css").toString()) .cssPath()); @@ -30,7 +30,7 @@ public void cssPath() throws Exception { @Test public void spritePath() throws Exception { - assertEquals(Paths.get("target", "css", "sprite.svg").toString(), + assertEquals(Paths.get("target", "css").toString() + "/sprite.svg", new SvgSprites() .set("spritePath", Paths.get("target", "css").toString()) .spritePath()); @@ -43,7 +43,7 @@ public void spritePath() throws Exception { @Test public void spritePrefix() throws Exception { - assertEquals(Paths.get("target", "css", "p-sprite.svg").toString(), + assertEquals(Paths.get("target", "css").toString() + "/p-sprite.svg", new SvgSprites() .set("prefix", "p") .set("spritePath", Paths.get("target", "css").toString()) @@ -58,14 +58,14 @@ public void spritePrefix() throws Exception { @Test public void spriteName() throws Exception { - assertEquals(Paths.get("target", "css", "p-n-sprite.svg").toString(), + assertEquals(Paths.get("target", "css").toString() + "/p-n-sprite.svg", new SvgSprites() .set("prefix", "p") .set("name", "n") .set("spritePath", Paths.get("target", "css").toString()) .spritePath()); - assertEquals(Paths.get("target", "css", "n-sprite.svg").toString(), + assertEquals(Paths.get("target", "css").toString() + "/n-sprite.svg", new SvgSprites() .set("name", "n") .set("spritePath", Paths.get("target", "css").toString()) @@ -74,7 +74,7 @@ public void spriteName() throws Exception { @Test public void cssPrefix() throws Exception { - assertEquals(Paths.get("target", "css", "p-sprite.css").toString(), + assertEquals(Paths.get("target", "css").toString() + "/p-sprite.css", new SvgSprites() .set("prefix", "p") .set("spritePath", Paths.get("target", "css").toString()) diff --git a/modules/jooby-assets/src/test/java/org/jooby/assets/AssetCompilerTest.java b/modules/jooby-assets/src/test/java/org/jooby/assets/AssetCompilerTest.java index 2e24ef5382..a0fda34c8a 100644 --- a/modules/jooby-assets/src/test/java/org/jooby/assets/AssetCompilerTest.java +++ b/modules/jooby-assets/src/test/java/org/jooby/assets/AssetCompilerTest.java @@ -81,7 +81,7 @@ public void summary() throws Exception { File dir = Paths.get("target", "summary").toFile(); Map> files = compiler.build("dev", dir); - + String summary = compiler.summary(files, dir.toPath(), "dev", 1000, "Foo: bar").replaceAll("\\\\","/"); assertEquals("Summary:\n" + "Pipeline: []\n" + "Time: 1s\n" @@ -92,7 +92,7 @@ public void summary() throws Exception { + " assets/home.css 8b\n" + " assets/base.js 19b\n" + " assets/home.js 19b\n", - compiler.summary(files, dir.toPath(), "dev", 1000, "Foo: bar")); + summary); } @Test From 8c9baf74bdb634173e30f91f2d3b0484beb20b25 Mon Sep 17 00:00:00 2001 From: Istvan Meszaros Date: Fri, 4 Oct 2019 21:45:38 +0200 Subject: [PATCH 78/93] Ability to use SessionBuilder with jooby-hbm. #1392 --- .../src/main/java/org/jooby/hbm/Hbm.java | 37 ++- .../hbm/SessionBuilderConfigurer.java | 219 ++++++++++++++++++ .../jooby/internal/hbm/SessionProvider.java | 6 +- .../internal/hbm/UnitOfWorkProvider.java | 6 +- .../src/test/java/org/jooby/hbm/HbmTest.java | 65 +++++- .../internal/hbm/SessionProviderTest.java | 30 ++- .../internal/hbm/UnitOfWorkProviderTest.java | 34 ++- 7 files changed, 370 insertions(+), 27 deletions(-) create mode 100644 modules/jooby-hbm/src/main/java/org/jooby/internal/hbm/SessionBuilderConfigurer.java diff --git a/modules/jooby-hbm/src/main/java/org/jooby/hbm/Hbm.java b/modules/jooby-hbm/src/main/java/org/jooby/hbm/Hbm.java index ab1d21063b..87edae19a8 100644 --- a/modules/jooby-hbm/src/main/java/org/jooby/hbm/Hbm.java +++ b/modules/jooby-hbm/src/main/java/org/jooby/hbm/Hbm.java @@ -209,6 +209,7 @@ import com.typesafe.config.Config; import com.typesafe.config.ConfigFactory; import org.hibernate.Session; +import org.hibernate.SessionBuilder; import org.hibernate.SessionFactory; import org.hibernate.boot.Metadata; import org.hibernate.boot.MetadataSources; @@ -228,11 +229,7 @@ import org.jooby.Jooby; import org.jooby.Registry; import org.jooby.Route; -import org.jooby.internal.hbm.GuiceBeanManager; -import org.jooby.internal.hbm.OpenSessionInView; -import org.jooby.internal.hbm.ScanEnvImpl; -import org.jooby.internal.hbm.SessionProvider; -import org.jooby.internal.hbm.UnitOfWorkProvider; +import org.jooby.internal.hbm.*; import org.jooby.jdbc.Jdbc; import javax.inject.Provider; @@ -534,6 +531,8 @@ public class Hbm implements Jooby.Module { private BiConsumer sf = NOOP; + private BiConsumer sb = NOOP; + /** * Creates a new {@link Hbm} module. * @@ -744,6 +743,28 @@ public Hbm doWithSessionFactoryBuilder( return this; } + /** + * Configurer callback to apply advanced configuration while bootstrapping hibernate: + * + * @param configurer Configurer callback. + * @return This module + */ + public Hbm doWithSessionBuilder( + final BiConsumer configurer) { + this.sb = configurer; + return this; + } + + /** + * Configurer callback to apply advanced configuration while bootstrapping hibernate: + * + * @param configurer Configurer callback. + * @return This module + */ + public Hbm doWithSessionBuilder(final Consumer configurer) { + return doWithSessionBuilder((builder, conf) -> configurer.accept(builder)); + } + @Override public void configure(final Env env, final Config conf, final Binder binder) { Key dskey = Key.get(DataSource.class, Names.named(name)); @@ -794,7 +815,9 @@ public void configure(final Env env, final Config conf, final Binder binder) { SessionFactory sessionFactory = sfb.build(); this.sf.accept(sessionFactory, conf); - Provider session = new SessionProvider(sessionFactory); + SessionBuilderConfigurer sbc = builder -> this.sb.accept(builder, conf); + + Provider session = new SessionProvider(sessionFactory, sbc); ServiceKey serviceKey = env.serviceKey(); serviceKey.generate(SessionFactory.class, name, @@ -809,7 +832,7 @@ public void configure(final Env env, final Config conf, final Binder binder) { k -> binder.bind(k).toProvider(session)); /** Unit of work . */ - Provider uow = new UnitOfWorkProvider(sessionFactory); + Provider uow = new UnitOfWorkProvider(sessionFactory, sbc); serviceKey.generate(UnitOfWork.class, name, k -> binder.bind(k).toProvider(uow)); diff --git a/modules/jooby-hbm/src/main/java/org/jooby/internal/hbm/SessionBuilderConfigurer.java b/modules/jooby-hbm/src/main/java/org/jooby/internal/hbm/SessionBuilderConfigurer.java new file mode 100644 index 0000000000..878748d106 --- /dev/null +++ b/modules/jooby-hbm/src/main/java/org/jooby/internal/hbm/SessionBuilderConfigurer.java @@ -0,0 +1,219 @@ +/** + * Apache License + * Version 2.0, January 2004 + * http://www.apache.org/licenses/ + * + * TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + * + * 1. Definitions. + * + * "License" shall mean the terms and conditions for use, reproduction, + * and distribution as defined by Sections 1 through 9 of this document. + * + * "Licensor" shall mean the copyright owner or entity authorized by + * the copyright owner that is granting the License. + * + * "Legal Entity" shall mean the union of the acting entity and all + * other entities that control, are controlled by, or are under common + * control with that entity. For the purposes of this definition, + * "control" means (i) the power, direct or indirect, to cause the + * direction or management of such entity, whether by contract or + * otherwise, or (ii) ownership of fifty percent (50%) or more of the + * outstanding shares, or (iii) beneficial ownership of such entity. + * + * "You" (or "Your") shall mean an individual or Legal Entity + * exercising permissions granted by this License. + * + * "Source" form shall mean the preferred form for making modifications, + * including but not limited to software source code, documentation + * source, and configuration files. + * + * "Object" form shall mean any form resulting from mechanical + * transformation or translation of a Source form, including but + * not limited to compiled object code, generated documentation, + * and conversions to other media types. + * + * "Work" shall mean the work of authorship, whether in Source or + * Object form, made available under the License, as indicated by a + * copyright notice that is included in or attached to the work + * (an example is provided in the Appendix below). + * + * "Derivative Works" shall mean any work, whether in Source or Object + * form, that is based on (or derived from) the Work and for which the + * editorial revisions, annotations, elaborations, or other modifications + * represent, as a whole, an original work of authorship. For the purposes + * of this License, Derivative Works shall not include works that remain + * separable from, or merely link (or bind by name) to the interfaces of, + * the Work and Derivative Works thereof. + * + * "Contribution" shall mean any work of authorship, including + * the original version of the Work and any modifications or additions + * to that Work or Derivative Works thereof, that is intentionally + * submitted to Licensor for inclusion in the Work by the copyright owner + * or by an individual or Legal Entity authorized to submit on behalf of + * the copyright owner. For the purposes of this definition, "submitted" + * means any form of electronic, verbal, or written communication sent + * to the Licensor or its representatives, including but not limited to + * communication on electronic mailing lists, source code control systems, + * and issue tracking systems that are managed by, or on behalf of, the + * Licensor for the purpose of discussing and improving the Work, but + * excluding communication that is conspicuously marked or otherwise + * designated in writing by the copyright owner as "Not a Contribution." + * + * "Contributor" shall mean Licensor and any individual or Legal Entity + * on behalf of whom a Contribution has been received by Licensor and + * subsequently incorporated within the Work. + * + * 2. Grant of Copyright License. Subject to the terms and conditions of + * this License, each Contributor hereby grants to You a perpetual, + * worldwide, non-exclusive, no-charge, royalty-free, irrevocable + * copyright license to reproduce, prepare Derivative Works of, + * publicly display, publicly perform, sublicense, and distribute the + * Work and such Derivative Works in Source or Object form. + * + * 3. Grant of Patent License. Subject to the terms and conditions of + * this License, each Contributor hereby grants to You a perpetual, + * worldwide, non-exclusive, no-charge, royalty-free, irrevocable + * (except as stated in this section) patent license to make, have made, + * use, offer to sell, sell, import, and otherwise transfer the Work, + * where such license applies only to those patent claims licensable + * by such Contributor that are necessarily infringed by their + * Contribution(s) alone or by combination of their Contribution(s) + * with the Work to which such Contribution(s) was submitted. If You + * institute patent litigation against any entity (including a + * cross-claim or counterclaim in a lawsuit) alleging that the Work + * or a Contribution incorporated within the Work constitutes direct + * or contributory patent infringement, then any patent licenses + * granted to You under this License for that Work shall terminate + * as of the date such litigation is filed. + * + * 4. Redistribution. You may reproduce and distribute copies of the + * Work or Derivative Works thereof in any medium, with or without + * modifications, and in Source or Object form, provided that You + * meet the following conditions: + * + * (a) You must give any other recipients of the Work or + * Derivative Works a copy of this License; and + * + * (b) You must cause any modified files to carry prominent notices + * stating that You changed the files; and + * + * (c) You must retain, in the Source form of any Derivative Works + * that You distribute, all copyright, patent, trademark, and + * attribution notices from the Source form of the Work, + * excluding those notices that do not pertain to any part of + * the Derivative Works; and + * + * (d) If the Work includes a "NOTICE" text file as part of its + * distribution, then any Derivative Works that You distribute must + * include a readable copy of the attribution notices contained + * within such NOTICE file, excluding those notices that do not + * pertain to any part of the Derivative Works, in at least one + * of the following places: within a NOTICE text file distributed + * as part of the Derivative Works; within the Source form or + * documentation, if provided along with the Derivative Works; or, + * within a display generated by the Derivative Works, if and + * wherever such third-party notices normally appear. The contents + * of the NOTICE file are for informational purposes only and + * do not modify the License. You may add Your own attribution + * notices within Derivative Works that You distribute, alongside + * or as an addendum to the NOTICE text from the Work, provided + * that such additional attribution notices cannot be construed + * as modifying the License. + * + * You may add Your own copyright statement to Your modifications and + * may provide additional or different license terms and conditions + * for use, reproduction, or distribution of Your modifications, or + * for any such Derivative Works as a whole, provided Your use, + * reproduction, and distribution of the Work otherwise complies with + * the conditions stated in this License. + * + * 5. Submission of Contributions. Unless You explicitly state otherwise, + * any Contribution intentionally submitted for inclusion in the Work + * by You to the Licensor shall be under the terms and conditions of + * this License, without any additional terms or conditions. + * Notwithstanding the above, nothing herein shall supersede or modify + * the terms of any separate license agreement you may have executed + * with Licensor regarding such Contributions. + * + * 6. Trademarks. This License does not grant permission to use the trade + * names, trademarks, service marks, or product names of the Licensor, + * except as required for reasonable and customary use in describing the + * origin of the Work and reproducing the content of the NOTICE file. + * + * 7. Disclaimer of Warranty. Unless required by applicable law or + * agreed to in writing, Licensor provides the Work (and each + * Contributor provides its Contributions) on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + * implied, including, without limitation, any warranties or conditions + * of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + * PARTICULAR PURPOSE. You are solely responsible for determining the + * appropriateness of using or redistributing the Work and assume any + * risks associated with Your exercise of permissions under this License. + * + * 8. Limitation of Liability. In no event and under no legal theory, + * whether in tort (including negligence), contract, or otherwise, + * unless required by applicable law (such as deliberate and grossly + * negligent acts) or agreed to in writing, shall any Contributor be + * liable to You for damages, including any direct, indirect, special, + * incidental, or consequential damages of any character arising as a + * result of this License or out of the use or inability to use the + * Work (including but not limited to damages for loss of goodwill, + * work stoppage, computer failure or malfunction, or any and all + * other commercial damages or losses), even if such Contributor + * has been advised of the possibility of such damages. + * + * 9. Accepting Warranty or Additional Liability. While redistributing + * the Work or Derivative Works thereof, You may choose to offer, + * and charge a fee for, acceptance of support, warranty, indemnity, + * or other liability obligations and/or rights consistent with this + * License. However, in accepting such obligations, You may act only + * on Your own behalf and on Your sole responsibility, not on behalf + * of any other Contributor, and only if You agree to indemnify, + * defend, and hold each Contributor harmless for any liability + * incurred by, or claims asserted against, such Contributor by reason + * of your accepting any such warranty or additional liability. + * + * END OF TERMS AND CONDITIONS + * + * APPENDIX: How to apply the Apache License to your work. + * + * To apply the Apache License to your work, attach the following + * boilerplate notice, with the fields enclosed by brackets "{}" + * replaced with your own identifying information. (Don't include + * the brackets!) The text should be enclosed in the appropriate + * comment syntax for the file format. We also recommend that a + * file or class name and description of purpose be included on the + * same "printed page" as the copyright notice for easier + * identification within third-party archives. + * + * Copyright 2014 Edgar Espina + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.jooby.internal.hbm; + +import org.hibernate.Session; +import org.hibernate.SessionBuilder; +import org.hibernate.SessionFactory; + +public interface SessionBuilderConfigurer { + + void configure(SessionBuilder sessionBuilder); + + default Session apply(SessionFactory sessionFactory) { + final SessionBuilder sb = sessionFactory.withOptions(); + configure(sb); + return sb.openSession(); + } +} \ No newline at end of file diff --git a/modules/jooby-hbm/src/main/java/org/jooby/internal/hbm/SessionProvider.java b/modules/jooby-hbm/src/main/java/org/jooby/internal/hbm/SessionProvider.java index ed68f6dd84..2d705412b3 100644 --- a/modules/jooby-hbm/src/main/java/org/jooby/internal/hbm/SessionProvider.java +++ b/modules/jooby-hbm/src/main/java/org/jooby/internal/hbm/SessionProvider.java @@ -212,14 +212,16 @@ public class SessionProvider implements Provider { private final SessionFactory sf; + private final SessionBuilderConfigurer sbc; - public SessionProvider(final SessionFactory sf) { + public SessionProvider(final SessionFactory sf, final SessionBuilderConfigurer sbc) { this.sf = sf; + this.sbc = sbc; } @Override public Session get() { - return ManagedSessionContext.hasBind(sf) ? sf.getCurrentSession() : sf.openSession(); + return ManagedSessionContext.hasBind(sf) ? sf.getCurrentSession() : sbc.apply(sf); } } diff --git a/modules/jooby-hbm/src/main/java/org/jooby/internal/hbm/UnitOfWorkProvider.java b/modules/jooby-hbm/src/main/java/org/jooby/internal/hbm/UnitOfWorkProvider.java index 6910abf5af..520fcf6389 100644 --- a/modules/jooby-hbm/src/main/java/org/jooby/internal/hbm/UnitOfWorkProvider.java +++ b/modules/jooby-hbm/src/main/java/org/jooby/internal/hbm/UnitOfWorkProvider.java @@ -212,9 +212,11 @@ public class UnitOfWorkProvider implements Provider { private final SessionFactory sf; + private final SessionBuilderConfigurer sbc; - public UnitOfWorkProvider(final SessionFactory sf) { + public UnitOfWorkProvider(final SessionFactory sf, final SessionBuilderConfigurer sbc) { this.sf = sf; + this.sbc = sbc; } @Override @@ -222,7 +224,7 @@ public UnitOfWork get() { if (ManagedSessionContext.hasBind(sf)) { return new ChildUnitOfWork(sf.getCurrentSession()); } else { - return new RootUnitOfWork(sf.openSession()); + return new RootUnitOfWork(sbc.apply(sf)); } } diff --git a/modules/jooby-hbm/src/test/java/org/jooby/hbm/HbmTest.java b/modules/jooby-hbm/src/test/java/org/jooby/hbm/HbmTest.java index 6879ca5104..c0f7b95710 100644 --- a/modules/jooby-hbm/src/test/java/org/jooby/hbm/HbmTest.java +++ b/modules/jooby-hbm/src/test/java/org/jooby/hbm/HbmTest.java @@ -13,8 +13,9 @@ import com.zaxxer.hikari.HikariConfig; import com.zaxxer.hikari.HikariDataSource; import hbm5.Beer; -import static org.easymock.EasyMock.expect; + import org.hibernate.Session; +import org.hibernate.SessionBuilder; import org.hibernate.SessionFactory; import org.hibernate.boot.Metadata; import org.hibernate.boot.MetadataBuilder; @@ -27,6 +28,7 @@ import org.hibernate.boot.registry.StandardServiceRegistry; import org.hibernate.boot.registry.StandardServiceRegistryBuilder; import org.hibernate.cfg.AvailableSettings; +import org.hibernate.engine.spi.SessionBuilderImplementor; import org.hibernate.engine.spi.SessionFactoryImplementor; import org.hibernate.event.service.spi.EventListenerRegistry; import org.hibernate.event.spi.EventType; @@ -37,13 +39,11 @@ import org.jooby.Env.ServiceKey; import org.jooby.Registry; import org.jooby.funzy.Throwing; -import org.jooby.internal.hbm.GuiceBeanManager; -import org.jooby.internal.hbm.OpenSessionInView; -import org.jooby.internal.hbm.ScanEnvImpl; -import org.jooby.internal.hbm.SessionProvider; -import org.jooby.internal.hbm.UnitOfWorkProvider; +import org.jooby.internal.hbm.*; import org.jooby.test.MockUnit; import org.jooby.test.MockUnit.Block; + +import static org.easymock.EasyMock.*; import static org.junit.Assert.assertEquals; import org.junit.Test; import org.junit.runner.RunWith; @@ -700,6 +700,53 @@ public void doWithSessionFactoryBuilder() throws Exception { }); } + @Test + public void doWithSessionBuilder() throws Exception { + new MockUnit(Env.class, Config.class, Binder.class, Integrator.class, SessionBuilderImplementor.class) + .expect(env("prod")) + .expect(bsrb) + .expect(ssrb("none")) + .expect(applySettins(ImmutableMap.of( + AvailableSettings.SESSION_FACTORY_NAME_IS_JNDI, false, + AvailableSettings.SCANNER_DISCOVERY, "class", + AvailableSettings.CURRENT_SESSION_CONTEXT_CLASS, "managed"))) + .expect(applyDataSource) + .expect(metadataSources()) + .expect(metadataBuilder()) + .expect(sessionFactoryBuilder("db")) + .expect(beanManager()) + .expect(bind(null, SessionFactory.class)) + .expect(bind("db", SessionFactory.class)) + .expect(bind(null, EntityManagerFactory.class)) + .expect(bind("db", EntityManagerFactory.class)) + .expect(sessionProvider()) + .expect(bind(null, Session.class, SessionProvider.class)) + .expect(bind("db", Session.class, SessionProvider.class)) + .expect(bind(null, EntityManager.class, SessionProvider.class)) + .expect(bind("db", EntityManager.class, SessionProvider.class)) + .expect(unitOfWork()) + .expect(bind(null, UnitOfWork.class, UnitOfWorkProvider.class)) + .expect(bind("db", UnitOfWork.class, UnitOfWorkProvider.class)) + .expect(onStart) + .expect(onStop) + .expect(unit -> { + SessionBuilder builder = unit.get(SessionBuilderImplementor.class); + expect(unit.get(SessionFactory.class).withOptions()).andReturn(builder); + expect(builder.setQueryParameterValidation(true)).andReturn(builder); + expect(builder.openSession()).andReturn(null); + }) + .run(unit -> { + new Hbm() + .doWithSessionBuilder((final SessionBuilder builder) -> { + builder.setQueryParameterValidation(true); + }) + .configure(unit.get(Env.class), config("hbm"), unit.get(Binder.class)); + + // invoke the captured object passed to the SessionProvider / UnitOfWorkProvider + unit.captured(SessionBuilderConfigurer.class).get(0).apply(unit.get(SessionFactory.class)); + }); + } + @Test(expected = ClassCastException.class) public void genericSetupCallbackShouldReportClassCastException() throws Exception { String url = "jdbc:h2:target/hbm"; @@ -866,7 +913,8 @@ private Block sessionProvider() { SessionFactory sf = unit.get(SessionFactory.class); SessionProvider sp = unit.constructor(SessionProvider.class) - .build(sf); + .args(SessionFactory.class, SessionBuilderConfigurer.class) + .build(eq(sf), unit.capture(SessionBuilderConfigurer.class)); unit.registerMock(SessionProvider.class, sp); }; @@ -877,7 +925,8 @@ private Block unitOfWork() { SessionFactory sf = unit.get(SessionFactory.class); UnitOfWorkProvider sp = unit.constructor(UnitOfWorkProvider.class) - .build(sf); + .args(SessionFactory.class, SessionBuilderConfigurer.class) + .build(eq(sf), unit.capture(SessionBuilderConfigurer.class)); unit.registerMock(UnitOfWorkProvider.class, sp); }; diff --git a/modules/jooby-hbm/src/test/java/org/jooby/internal/hbm/SessionProviderTest.java b/modules/jooby-hbm/src/test/java/org/jooby/internal/hbm/SessionProviderTest.java index 19d0fb3268..69168ae986 100644 --- a/modules/jooby-hbm/src/test/java/org/jooby/internal/hbm/SessionProviderTest.java +++ b/modules/jooby-hbm/src/test/java/org/jooby/internal/hbm/SessionProviderTest.java @@ -4,8 +4,10 @@ import static org.junit.Assert.assertEquals; import org.hibernate.Session; +import org.hibernate.SessionBuilder; import org.hibernate.SessionFactory; import org.hibernate.context.internal.ManagedSessionContext; +import org.hibernate.engine.spi.SessionBuilderImplementor; import org.jooby.test.MockUnit; import org.jooby.test.MockUnit.Block; import org.junit.Test; @@ -19,13 +21,15 @@ public class SessionProviderTest { @Test public void openSession() throws Exception { - new MockUnit(SessionFactory.class, Session.class) + new MockUnit(SessionFactory.class, Session.class, SessionBuilderImplementor.class) .expect(hasBind(false)) .expect(unit -> { - expect(unit.get(SessionFactory.class).openSession()).andReturn(unit.get(Session.class)); + SessionBuilder builder = unit.get(SessionBuilderImplementor.class); + expect(unit.get(SessionFactory.class).withOptions()).andReturn(builder); + expect(builder.openSession()).andReturn(unit.get(Session.class)); }) .run(unit -> { - Session result = new SessionProvider(unit.get(SessionFactory.class)).get(); + Session result = new SessionProvider(unit.get(SessionFactory.class), b -> {}).get(); assertEquals(unit.get(Session.class), result); }); } @@ -39,7 +43,25 @@ public void currentSession() throws Exception { .andReturn(unit.get(Session.class)); }) .run(unit -> { - Session result = new SessionProvider(unit.get(SessionFactory.class)).get(); + Session result = new SessionProvider(unit.get(SessionFactory.class), b -> {}).get(); + assertEquals(unit.get(Session.class), result); + }); + } + + @Test + public void sessionBuilderConfigurer() throws Exception { + new MockUnit(SessionFactory.class, Session.class, SessionBuilderImplementor.class) + .expect(hasBind(false)) + .expect(unit -> { + SessionBuilder builder = unit.get(SessionBuilderImplementor.class); + expect(unit.get(SessionFactory.class).withOptions()).andReturn(builder); + expect(builder.setQueryParameterValidation(true)).andReturn(builder); + expect(builder.openSession()).andReturn(unit.get(Session.class)); + }) + .run(unit -> { + Session result = new SessionProvider(unit.get(SessionFactory.class), + b -> b.setQueryParameterValidation(true)).get(); + assertEquals(unit.get(Session.class), result); }); } diff --git a/modules/jooby-hbm/src/test/java/org/jooby/internal/hbm/UnitOfWorkProviderTest.java b/modules/jooby-hbm/src/test/java/org/jooby/internal/hbm/UnitOfWorkProviderTest.java index 9e2e7cb36e..ae93f901ab 100644 --- a/modules/jooby-hbm/src/test/java/org/jooby/internal/hbm/UnitOfWorkProviderTest.java +++ b/modules/jooby-hbm/src/test/java/org/jooby/internal/hbm/UnitOfWorkProviderTest.java @@ -4,8 +4,10 @@ import static org.junit.Assert.assertTrue; import org.hibernate.Session; +import org.hibernate.SessionBuilder; import org.hibernate.SessionFactory; import org.hibernate.context.internal.ManagedSessionContext; +import org.hibernate.engine.spi.SessionBuilderImplementor; import org.jooby.hbm.UnitOfWork; import org.jooby.test.MockUnit; import org.jooby.test.MockUnit.Block; @@ -21,17 +23,19 @@ public class UnitOfWorkProviderTest { @Test public void openSession() throws Exception { - new MockUnit(SessionFactory.class, Session.class) + new MockUnit(SessionFactory.class, Session.class, SessionBuilderImplementor.class) .expect(hasBind(false)) .expect(unit -> { - expect(unit.get(SessionFactory.class).openSession()).andReturn(unit.get(Session.class)); + SessionBuilder builder = unit.get(SessionBuilderImplementor.class); + expect(unit.get(SessionFactory.class).withOptions()).andReturn(builder); + expect(builder.openSession()).andReturn(unit.get(Session.class)); }) .expect(unit -> { unit.constructor(RootUnitOfWork.class) .build(unit.get(Session.class)); }) .run(unit -> { - UnitOfWork result = new UnitOfWorkProvider(unit.get(SessionFactory.class)).get(); + UnitOfWork result = new UnitOfWorkProvider(unit.get(SessionFactory.class), b -> {}).get(); assertTrue(result instanceof RootUnitOfWork); }); } @@ -49,11 +53,33 @@ public void currentSession() throws Exception { .build(unit.get(Session.class)); }) .run(unit -> { - UnitOfWork result = new UnitOfWorkProvider(unit.get(SessionFactory.class)).get(); + UnitOfWork result = new UnitOfWorkProvider(unit.get(SessionFactory.class), b -> {}).get(); assertTrue(result instanceof ChildUnitOfWork); }); } + @Test + public void sessionBuilderConfigurer() throws Exception { + new MockUnit(SessionFactory.class, Session.class, SessionBuilderImplementor.class) + .expect(hasBind(false)) + .expect(unit -> { + SessionBuilder builder = unit.get(SessionBuilderImplementor.class); + expect(unit.get(SessionFactory.class).withOptions()).andReturn(builder); + expect(builder.setQueryParameterValidation(true)).andReturn(builder); + expect(builder.openSession()).andReturn(unit.get(Session.class)); + }) + .expect(unit -> { + unit.constructor(RootUnitOfWork.class) + .build(unit.get(Session.class)); + }) + .run(unit -> { + UnitOfWork result = new UnitOfWorkProvider(unit.get(SessionFactory.class), + b -> b.setQueryParameterValidation(true)).get(); + + assertTrue(result instanceof RootUnitOfWork); + }); + } + private Block hasBind(final boolean b) { return unit -> { unit.mockStatic(ManagedSessionContext.class); From 83ec03e5ae753480eab246de8ba963fdb0117d9d Mon Sep 17 00:00:00 2001 From: Edgar Espina Date: Tue, 3 Sep 2019 16:47:58 -0300 Subject: [PATCH 79/93] Add flag to control when headers are reset on error - fix #1383 - fix #1299 --- jooby/src/main/java/org/jooby/Response.java | 22 +++++++++++++ .../java/org/jooby/internal/ResponseImpl.java | 18 +++++++++-- .../src/test/java/org/jooby/ResponseTest.java | 8 +++++ .../test/java/org/jooby/issues/Issue1299.java | 32 +++++++++++++++++++ 4 files changed, 77 insertions(+), 3 deletions(-) create mode 100644 modules/coverage-report/src/test/java/org/jooby/issues/Issue1299.java diff --git a/jooby/src/main/java/org/jooby/Response.java b/jooby/src/main/java/org/jooby/Response.java index 8ff89cb421..6dc0f9c7af 100644 --- a/jooby/src/main/java/org/jooby/Response.java +++ b/jooby/src/main/java/org/jooby/Response.java @@ -416,6 +416,14 @@ public String toString() { return rsp.toString(); } + @Override public boolean isResetHeadersOnError() { + return rsp.isResetHeadersOnError(); + } + + @Override public void setResetHeadersOnError(boolean value) { + this.setResetHeadersOnError(value); + } + /** * Unwrap a response in order to find out the target instance. * @@ -848,4 +856,18 @@ default Response status(final int status) { * @see Route.After */ void complete(Route.Complete handler); + + /** + * Indicates if headers are cleared/reset on error. + * + * @return Indicates if headers are cleared/reset on error. Default is true. + */ + boolean isResetHeadersOnError(); + + /** + * Indicates if headers are cleared/reset on error. + * + * @param value True to reset. + */ + void setResetHeadersOnError(boolean value); } diff --git a/jooby/src/main/java/org/jooby/internal/ResponseImpl.java b/jooby/src/main/java/org/jooby/internal/ResponseImpl.java index 503f5365be..57b8718566 100644 --- a/jooby/src/main/java/org/jooby/internal/ResponseImpl.java +++ b/jooby/src/main/java/org/jooby/internal/ResponseImpl.java @@ -280,6 +280,8 @@ public class ResponseImpl implements Response { private Optional byteRange; + private boolean resetHeadersOnError = true; + public ResponseImpl(final RequestImpl req, final ParserExecutor parserExecutor, final NativeResponse rsp, final Route route, final List renderers, final Map rendererMap, final Map locals, @@ -296,6 +298,14 @@ public ResponseImpl(final RequestImpl req, final ParserExecutor parserExecutor, this.byteRange = byteRange; } + @Override public boolean isResetHeadersOnError() { + return resetHeadersOnError; + } + + @Override public void setResetHeadersOnError(boolean resetHeadersOnError) { + this.resetHeadersOnError = resetHeadersOnError; + } + @Override public void download(final String filename, final InputStream stream) throws Throwable { requireNonNull(filename, "A file's name is required."); @@ -585,9 +595,11 @@ private void writeCookies() { } public void reset() { - status = null; - this.cookies.clear(); - rsp.reset(); + if (resetHeadersOnError) { + status = null; + this.cookies.clear(); + rsp.reset(); + } } void route(final Route route) { diff --git a/jooby/src/test/java/org/jooby/ResponseTest.java b/jooby/src/test/java/org/jooby/ResponseTest.java index 4a79aae0d8..78cbc24717 100644 --- a/jooby/src/test/java/org/jooby/ResponseTest.java +++ b/jooby/src/test/java/org/jooby/ResponseTest.java @@ -17,6 +17,14 @@ public class ResponseTest { public static class ResponseMock implements Response { + @Override public boolean isResetHeadersOnError() { + throw new UnsupportedOperationException(); + } + + @Override public void setResetHeadersOnError(boolean value) { + throw new UnsupportedOperationException(); + } + @Override public void download(final String filename, final InputStream stream) throws Exception { throw new UnsupportedOperationException(); diff --git a/modules/coverage-report/src/test/java/org/jooby/issues/Issue1299.java b/modules/coverage-report/src/test/java/org/jooby/issues/Issue1299.java new file mode 100644 index 0000000000..a3ac7abf73 --- /dev/null +++ b/modules/coverage-report/src/test/java/org/jooby/issues/Issue1299.java @@ -0,0 +1,32 @@ +package org.jooby.issues; + +import org.jooby.test.ServerFeature; +import org.junit.Test; + +public class Issue1299 extends ServerFeature { + + { + use("*", (req, rsp) -> { + if (req.param("noreset").booleanValue(false)) { + rsp.setResetHeadersOnError(false); + } + }); + get("/1299", req -> { + req.flash("error", "error"); + return req.param("missing").value(); + }); + + err((req, rsp, x) -> { + rsp.status(200).end(); + }); + } + + @Test + public void shouldNotResetHeaders() throws Exception { + request() + .get("/1299") + .expect(200) + .header("Set-Cookie", (String) null); + } + +} From 7fd86fe2d1e2c8c8e80bd6cbd27770171e81cc8d Mon Sep 17 00:00:00 2001 From: Edgar Espina Date: Tue, 26 Nov 2019 00:17:16 -0300 Subject: [PATCH 80/93] version bump --- .../src/test/java/issues/Issue1072.java | 2 +- .../src/test/java/issues/Issue1073.java | 2 +- .../src/test/java/issues/Issue1074.java | 2 +- .../src/test/java/issues/Issue1075.java | 6 +++--- .../src/test/java/issues/Issue1096.java | 10 +++++----- .../src/test/java/issues/Issue1097.java | 6 +++--- .../src/test/java/issues/Issue1100.java | 8 ++++---- .../src/test/java/issues/Issue1126.java | 4 ++-- .../src/test/java/issues/Issue1182.java | 2 +- .../src/test/java/issues/Issue1276.java | 4 ++-- .../src/test/java/issues/Issue1300.java | 4 ++-- pom.xml | 12 ++++++------ 12 files changed, 31 insertions(+), 31 deletions(-) diff --git a/modules/jooby-apitool/src/test/java/issues/Issue1072.java b/modules/jooby-apitool/src/test/java/issues/Issue1072.java index 0f8ed5683c..848fed9058 100644 --- a/modules/jooby-apitool/src/test/java/issues/Issue1072.java +++ b/modules/jooby-apitool/src/test/java/issues/Issue1072.java @@ -41,7 +41,7 @@ public void shouldContainsSwaggerResponseDescription() throws Exception { + " operationId: \"get\"\n" + " parameters: []\n" + " responses:\n" - + " 200:\n" + + " \"200\":\n" + " description: \"Person\"\n" + " schema:\n" + " $ref: \"#/definitions/Person\"\n" diff --git a/modules/jooby-apitool/src/test/java/issues/Issue1073.java b/modules/jooby-apitool/src/test/java/issues/Issue1073.java index 4e86016e57..c7c1b5f3c0 100644 --- a/modules/jooby-apitool/src/test/java/issues/Issue1073.java +++ b/modules/jooby-apitool/src/test/java/issues/Issue1073.java @@ -35,7 +35,7 @@ public void zonedDateMustUseDateTimeFormat() throws Exception { + " type: \"string\"\n" + " format: \"date-time\"\n" + " responses:\n" - + " 200:\n" + + " \"200\":\n" + " description: \"News\"\n" + " schema:\n" + " $ref: \"#/definitions/News\"\n" diff --git a/modules/jooby-apitool/src/test/java/issues/Issue1074.java b/modules/jooby-apitool/src/test/java/issues/Issue1074.java index 92ccbe6646..515bc068f3 100644 --- a/modules/jooby-apitool/src/test/java/issues/Issue1074.java +++ b/modules/jooby-apitool/src/test/java/issues/Issue1074.java @@ -63,7 +63,7 @@ public void shouldDetectKotlinTypeUsingOptionalParameters() throws Exception { + " type: \"integer\"\n" + " format: \"int32\"\n" + " responses:\n" - + " 200:\n" + + " \"200\":\n" + " description: \"String\"\n" + " schema:\n" + " type: \"string\"\n", yaml(swagger(routes))); diff --git a/modules/jooby-apitool/src/test/java/issues/Issue1075.java b/modules/jooby-apitool/src/test/java/issues/Issue1075.java index 6eaed53122..6c95d455b6 100644 --- a/modules/jooby-apitool/src/test/java/issues/Issue1075.java +++ b/modules/jooby-apitool/src/test/java/issues/Issue1075.java @@ -32,7 +32,7 @@ public void shouldGenerateUniqueOperationIds() throws Exception { + " operationId: \"getOrders\"\n" + " parameters: []\n" + " responses:\n" - + " 200:\n" + + " \"200\":\n" + " description: \"List[String]\"\n" + " schema:\n" + " type: \"array\"\n" @@ -50,7 +50,7 @@ public void shouldGenerateUniqueOperationIds() throws Exception { + " type: \"integer\"\n" + " format: \"int32\"\n" + " responses:\n" - + " 200:\n" + + " \"200\":\n" + " description: \"int\"\n" + " schema:\n" + " type: \"integer\"\n" @@ -62,7 +62,7 @@ public void shouldGenerateUniqueOperationIds() throws Exception { + " operationId: \"getProducts\"\n" + " parameters: []\n" + " responses:\n" - + " 200:\n" + + " \"200\":\n" + " description: \"List[String]\"\n" + " schema:\n" + " type: \"array\"\n" diff --git a/modules/jooby-apitool/src/test/java/issues/Issue1096.java b/modules/jooby-apitool/src/test/java/issues/Issue1096.java index dfb06dbd9d..43f0299717 100644 --- a/modules/jooby-apitool/src/test/java/issues/Issue1096.java +++ b/modules/jooby-apitool/src/test/java/issues/Issue1096.java @@ -81,7 +81,7 @@ public void shouldExpandQueryBean() throws Exception { + " required: false\n" + " type: \"string\"\n" + " responses:\n" - + " 200:\n" + + " \"200\":\n" + " description: \"String\"\n" + " schema:\n" + " type: \"string\"\n", yaml(swagger(routes))); @@ -155,7 +155,7 @@ public void shouldExpandForm() throws Exception { + " required: false\n" + " type: \"file\"\n" + " responses:\n" - + " 200:\n" + + " \"200\":\n" + " description: \"String\"\n" + " schema:\n" + " type: \"string\"\n", yaml(swagger(routes))); @@ -229,7 +229,7 @@ public void shouldExpandFormMvc() throws Exception { + " required: false\n" + " type: \"file\"\n" + " responses:\n" - + " 200:\n" + + " \"200\":\n" + " description: \"String\"\n" + " schema:\n" + " type: \"string\"\n", yaml(swagger(routes))); @@ -296,7 +296,7 @@ public void shouldExpandQueryBeanFromMvc() throws Exception { + " required: false\n" + " type: \"string\"\n" + " responses:\n" - + " 200:\n" + + " \"200\":\n" + " description: \"String\"\n" + " schema:\n" + " type: \"string\"\n", yaml(swagger(routes))); @@ -350,7 +350,7 @@ public void shouldExpandQueryBeanFromKotlin() throws Exception { + " required: true\n" + " type: \"string\"\n" + " responses:\n" - + " 200:\n" + + " \"200\":\n" + " description: \"String\"\n" + " schema:\n" + " type: \"string\"\n", yaml(swagger(routes))); diff --git a/modules/jooby-apitool/src/test/java/issues/Issue1097.java b/modules/jooby-apitool/src/test/java/issues/Issue1097.java index 4259e4487f..0f876fd3bd 100644 --- a/modules/jooby-apitool/src/test/java/issues/Issue1097.java +++ b/modules/jooby-apitool/src/test/java/issues/Issue1097.java @@ -36,7 +36,7 @@ public void shouldUseCustomTagger() throws Exception { + " operationId: \"getSong\"\n" + " parameters: []\n" + " responses:\n" - + " 200:\n" + + " \"200\":\n" + " description: \"String\"\n" + " schema:\n" + " type: \"string\"\n" @@ -47,7 +47,7 @@ public void shouldUseCustomTagger() throws Exception { + " operationId: \"getAlbum\"\n" + " parameters: []\n" + " responses:\n" - + " 200:\n" + + " \"200\":\n" + " description: \"String\"\n" + " schema:\n" + " type: \"string\"\n" @@ -58,7 +58,7 @@ public void shouldUseCustomTagger() throws Exception { + " operationId: \"getArtist\"\n" + " parameters: []\n" + " responses:\n" - + " 200:\n" + + " \"200\":\n" + " description: \"String\"\n" + " schema:\n" + " type: \"string\"\n", Yaml diff --git a/modules/jooby-apitool/src/test/java/issues/Issue1100.java b/modules/jooby-apitool/src/test/java/issues/Issue1100.java index acea3a73a7..bceafc538c 100644 --- a/modules/jooby-apitool/src/test/java/issues/Issue1100.java +++ b/modules/jooby-apitool/src/test/java/issues/Issue1100.java @@ -41,7 +41,7 @@ public void apiOperation() throws Exception { + " - \" bar/baz\"\n" + " parameters: []\n" + " responses:\n" - + " 202:\n" + + " \"202\":\n" + " description: \"Result\"\n" + " headers:\n" + " foo:\n" @@ -56,7 +56,7 @@ public void apiOperation() throws Exception { + " operationId: \"/Controller1100.listApiResponse\"\n" + " parameters: []\n" + " responses:\n" - + " 204:\n" + + " \"204\":\n" + " description: \"Response message\"\n" + " headers:\n" + " foo:\n" @@ -70,11 +70,11 @@ public void apiOperation() throws Exception { + " operationId: \"/Controller1100.listNApiResponse\"\n" + " parameters: []\n" + " responses:\n" - + " 200:\n" + + " \"200\":\n" + " description: \"cat\"\n" + " schema:\n" + " $ref: \"#/definitions/Category\"\n" - + " 200(Tag):\n" + + " \"200(Tag)\":\n" + " description: \"tag\"\n" + " headers:\n" + " foo:\n" diff --git a/modules/jooby-apitool/src/test/java/issues/Issue1126.java b/modules/jooby-apitool/src/test/java/issues/Issue1126.java index 93a3979f98..cced516012 100644 --- a/modules/jooby-apitool/src/test/java/issues/Issue1126.java +++ b/modules/jooby-apitool/src/test/java/issues/Issue1126.java @@ -36,7 +36,7 @@ public void bodySchemaRefVsFormData() throws Exception { + " schema:\n" + " $ref: \"#/definitions/PingCommand\"\n" + " responses:\n" - + " 200:\n" + + " \"200\":\n" + " description: \"Boolean\"\n" + " schema:\n" + " type: \"boolean\"\n" @@ -59,7 +59,7 @@ public void bodySchemaRefVsFormData() throws Exception { + " type: \"integer\"\n" + " format: \"int32\"\n" + " responses:\n" - + " 200:\n" + + " \"200\":\n" + " description: \"Boolean\"\n" + " schema:\n" + " type: \"boolean\"\n" diff --git a/modules/jooby-apitool/src/test/java/issues/Issue1182.java b/modules/jooby-apitool/src/test/java/issues/Issue1182.java index b8953b55e6..b8e963e0b9 100644 --- a/modules/jooby-apitool/src/test/java/issues/Issue1182.java +++ b/modules/jooby-apitool/src/test/java/issues/Issue1182.java @@ -42,7 +42,7 @@ public void shouldProcessApiParamSwaggerAnnotation() throws Exception { + " required: false\n" + " type: \"string\"\n" + " responses:\n" - + " 200:\n" + + " \"200\":\n" + " description: \"String\"\n", yaml(swagger(routes), false)); } diff --git a/modules/jooby-apitool/src/test/java/issues/Issue1276.java b/modules/jooby-apitool/src/test/java/issues/Issue1276.java index 1d6ff9de11..058e88056f 100644 --- a/modules/jooby-apitool/src/test/java/issues/Issue1276.java +++ b/modules/jooby-apitool/src/test/java/issues/Issue1276.java @@ -33,7 +33,7 @@ public void apitoolDoesNotListMvcNamespaced () throws Exception { + " operationId: \"/Controller1276.foo\"\n" + " parameters: []\n" + " responses:\n" - + " 200:\n" + + " \"200\":\n" + " description: \"String\"\n" + " schema:\n" + " type: \"string\"\n" @@ -44,7 +44,7 @@ public void apitoolDoesNotListMvcNamespaced () throws Exception { + " operationId: \"getNamespacefoo\"\n" + " parameters: []\n" + " responses:\n" - + " 200:\n" + + " \"200\":\n" + " description: \"String\"\n" + " schema:\n" + " type: \"string\"\n", yaml(swagger(routes), false)); diff --git a/modules/jooby-apitool/src/test/java/issues/Issue1300.java b/modules/jooby-apitool/src/test/java/issues/Issue1300.java index 5c4d990067..e333b4146b 100644 --- a/modules/jooby-apitool/src/test/java/issues/Issue1300.java +++ b/modules/jooby-apitool/src/test/java/issues/Issue1300.java @@ -33,7 +33,7 @@ public void apitoolDoesNotListMvcNamespaced () throws Exception { + " operationId: \"getRoute\"\n" + " parameters: []\n" + " responses:\n" - + " 200:\n" + + " \"200\":\n" + " description: \"int\"\n" + " schema:\n" + " type: \"integer\"\n" @@ -45,7 +45,7 @@ public void apitoolDoesNotListMvcNamespaced () throws Exception { + " operationId: \"getSubroutehello\"\n" + " parameters: []\n" + " responses:\n" - + " 200:\n" + + " \"200\":\n" + " description: \"String\"\n" + " schema:\n" + " type: \"string\"\n", yaml(swagger(routes), false)); diff --git a/pom.xml b/pom.xml index 182c1609ca..a7dd193c54 100644 --- a/pom.xml +++ b/pom.xml @@ -3200,7 +3200,7 @@ org.eclipse.jdt.apt.processorOptions/defaultOverwrite=true 3.3.1 4.5.5 4.6.0 - 2.9.9 + 2.10.1 1.2.7 3.22.0-GA 3.0.1-b06 @@ -3210,10 +3210,10 @@ org.eclipse.jdt.apt.processorOptions/defaultOverwrite=true 1.8.5.Final 3.9.0 2.78 - 3.3.0 + 3.11.1 2.9.0 1.19.4 - 9.4.20.v20190813 + 9.4.24.v20191120 1.4.0 1.11.3 2.1.3 @@ -3236,7 +3236,7 @@ org.eclipse.jdt.apt.processorOptions/defaultOverwrite=true 3.4.0.52.4 3.4.0.52 3.3.2 - 4.1.39.Final + 4.1.43.Final 1.9.9 2.3.1 2.4.0 @@ -3255,14 +3255,14 @@ org.eclipse.jdt.apt.processorOptions/defaultOverwrite=true 3.1.0 1.7.25 1.7.25 - 1.19 + 1.25 2.12.3 1.0.36 3.0.0 3.17.1 1.5.20 3.0.10.RELEASE - 2.0.22.Final + 2.0.28.Final 2.1 2.4.8 0.12.1 From 8f2834b7e2549b9c78918c4e0bdbdd4d9fa3d542 Mon Sep 17 00:00:00 2001 From: Edgar Espina Date: Tue, 26 Nov 2019 01:11:12 -0300 Subject: [PATCH 81/93] v1.6.5 --- README.md | 4 ++-- jooby/pom.xml | 2 +- modules/coverage-report/pom.xml | 2 +- modules/jooby-akka/README.md | 6 +++--- modules/jooby-akka/pom.xml | 2 +- modules/jooby-apitool/README.md | 8 ++++---- modules/jooby-apitool/pom.xml | 2 +- modules/jooby-archetype/pom.xml | 2 +- modules/jooby-assets-autoprefixer/README.md | 6 +++--- modules/jooby-assets-autoprefixer/pom.xml | 2 +- modules/jooby-assets-babel/README.md | 8 ++++---- modules/jooby-assets-babel/pom.xml | 2 +- modules/jooby-assets-clean-css/README.md | 6 +++--- modules/jooby-assets-clean-css/pom.xml | 2 +- modules/jooby-assets-closure-compiler/README.md | 6 +++--- modules/jooby-assets-closure-compiler/pom.xml | 2 +- modules/jooby-assets-csslint/README.md | 6 +++--- modules/jooby-assets-csslint/pom.xml | 2 +- modules/jooby-assets-j2v8/pom.xml | 2 +- modules/jooby-assets-jscs/README.md | 6 +++--- modules/jooby-assets-jscs/pom.xml | 2 +- modules/jooby-assets-jshint/README.md | 6 +++--- modules/jooby-assets-jshint/pom.xml | 2 +- modules/jooby-assets-less/README.md | 6 +++--- modules/jooby-assets-less/pom.xml | 2 +- modules/jooby-assets-less4j/README.md | 6 +++--- modules/jooby-assets-less4j/pom.xml | 2 +- modules/jooby-assets-ng-annotate/README.md | 6 +++--- modules/jooby-assets-ng-annotate/pom.xml | 2 +- modules/jooby-assets-nodejs/pom.xml | 2 +- modules/jooby-assets-requirejs/README.md | 6 +++--- modules/jooby-assets-requirejs/pom.xml | 2 +- modules/jooby-assets-rollup/README.md | 6 +++--- modules/jooby-assets-rollup/pom.xml | 2 +- modules/jooby-assets-sass/README.md | 6 +++--- modules/jooby-assets-sass/pom.xml | 2 +- modules/jooby-assets-svg-sprites/README.md | 6 +++--- modules/jooby-assets-svg-sprites/pom.xml | 2 +- modules/jooby-assets-svg-symbol/README.md | 6 +++--- modules/jooby-assets-svg-symbol/pom.xml | 2 +- modules/jooby-assets-uglify/README.md | 6 +++--- modules/jooby-assets-uglify/pom.xml | 2 +- modules/jooby-assets-yui-compressor/README.md | 6 +++--- modules/jooby-assets-yui-compressor/pom.xml | 2 +- modules/jooby-assets/README.md | 6 +++--- modules/jooby-assets/pom.xml | 2 +- modules/jooby-aws/README.md | 6 +++--- modules/jooby-aws/pom.xml | 2 +- modules/jooby-banner/README.md | 6 +++--- modules/jooby-banner/pom.xml | 2 +- modules/jooby-bom/pom.xml | 16 ++++++++-------- modules/jooby-caffeine/README.md | 6 +++--- modules/jooby-caffeine/pom.xml | 2 +- modules/jooby-camel/README.md | 6 +++--- modules/jooby-camel/pom.xml | 2 +- modules/jooby-cassandra/README.md | 8 ++++---- modules/jooby-cassandra/pom.xml | 2 +- modules/jooby-commons-email/README.md | 6 +++--- modules/jooby-commons-email/pom.xml | 2 +- modules/jooby-consul/README.md | 6 +++--- modules/jooby-consul/pom.xml | 2 +- modules/jooby-couchbase/README.md | 8 ++++---- modules/jooby-couchbase/pom.xml | 2 +- modules/jooby-crash/README.md | 6 +++--- modules/jooby-crash/pom.xml | 2 +- modules/jooby-csl/README.md | 6 +++--- modules/jooby-csl/pom.xml | 2 +- modules/jooby-dist/pom.xml | 2 +- modules/jooby-ebean/README.md | 6 +++--- modules/jooby-ebean/pom.xml | 2 +- modules/jooby-ehcache/README.md | 8 ++++---- modules/jooby-ehcache/pom.xml | 2 +- modules/jooby-elasticsearch/README.md | 6 +++--- modules/jooby-elasticsearch/pom.xml | 2 +- modules/jooby-eventbus/README.md | 6 +++--- modules/jooby-eventbus/pom.xml | 2 +- modules/jooby-executor/README.md | 6 +++--- modules/jooby-executor/pom.xml | 2 +- modules/jooby-exposed/README.md | 4 ++-- modules/jooby-exposed/pom.xml | 2 +- modules/jooby-filewatcher/README.md | 6 +++--- modules/jooby-filewatcher/pom.xml | 2 +- modules/jooby-flyway/README.md | 6 +++--- modules/jooby-flyway/pom.xml | 2 +- modules/jooby-frontend/README.md | 6 +++--- modules/jooby-frontend/pom.xml | 2 +- modules/jooby-ftl/README.md | 6 +++--- modules/jooby-ftl/pom.xml | 2 +- modules/jooby-gradle-plugin/README.md | 6 +++--- modules/jooby-gradle-plugin/pom.xml | 2 +- modules/jooby-gson/README.md | 6 +++--- modules/jooby-gson/pom.xml | 2 +- modules/jooby-guava-cache/README.md | 8 ++++---- modules/jooby-guava-cache/pom.xml | 2 +- modules/jooby-hazelcast/README.md | 8 ++++---- modules/jooby-hazelcast/pom.xml | 2 +- modules/jooby-hbm/README.md | 6 +++--- modules/jooby-hbm/pom.xml | 2 +- modules/jooby-hbs/README.md | 6 +++--- modules/jooby-hbs/pom.xml | 2 +- modules/jooby-hbv/README.md | 6 +++--- modules/jooby-hbv/pom.xml | 2 +- modules/jooby-jackson/README.md | 6 +++--- modules/jooby-jackson/pom.xml | 2 +- modules/jooby-jade/README.md | 6 +++--- modules/jooby-jade/pom.xml | 2 +- modules/jooby-jdbc/README.md | 6 +++--- modules/jooby-jdbc/pom.xml | 2 +- modules/jooby-jdbi/README.md | 6 +++--- modules/jooby-jdbi/pom.xml | 2 +- modules/jooby-jdbi3/README.md | 6 +++--- modules/jooby-jdbi3/pom.xml | 2 +- modules/jooby-jedis/README.md | 8 ++++---- modules/jooby-jedis/pom.xml | 2 +- modules/jooby-jetty/README.md | 6 +++--- modules/jooby-jetty/pom.xml | 2 +- modules/jooby-jongo/README.md | 6 +++--- modules/jooby-jongo/pom.xml | 2 +- modules/jooby-jooq/README.md | 6 +++--- modules/jooby-jooq/pom.xml | 2 +- modules/jooby-lang-kotlin/README.md | 6 +++--- modules/jooby-lang-kotlin/pom.xml | 2 +- modules/jooby-livereload/README.md | 6 +++--- modules/jooby-livereload/pom.xml | 2 +- modules/jooby-maven-plugin/README.md | 10 +++++----- modules/jooby-maven-plugin/pom.xml | 2 +- modules/jooby-metrics/README.md | 6 +++--- modules/jooby-metrics/pom.xml | 2 +- modules/jooby-micrometer/README.md | 6 +++--- modules/jooby-micrometer/pom.xml | 2 +- modules/jooby-mongodb-rx/README.md | 6 +++--- modules/jooby-mongodb-rx/pom.xml | 2 +- modules/jooby-mongodb/README.md | 8 ++++---- modules/jooby-mongodb/pom.xml | 2 +- modules/jooby-morphia/README.md | 6 +++--- modules/jooby-morphia/pom.xml | 2 +- modules/jooby-neo4j/README.md | 8 ++++---- modules/jooby-neo4j/pom.xml | 2 +- modules/jooby-netty/README.md | 6 +++--- modules/jooby-netty/pom.xml | 2 +- modules/jooby-pac4j/README.md | 6 +++--- modules/jooby-pac4j/pom.xml | 2 +- modules/jooby-pac4j2/README.md | 6 +++--- modules/jooby-pac4j2/pom.xml | 2 +- modules/jooby-pebble/README.md | 6 +++--- modules/jooby-pebble/pom.xml | 2 +- modules/jooby-quartz/README.md | 6 +++--- modules/jooby-quartz/pom.xml | 2 +- modules/jooby-querydsl/README.md | 6 +++--- modules/jooby-querydsl/pom.xml | 2 +- modules/jooby-reactor/README.md | 6 +++--- modules/jooby-reactor/pom.xml | 2 +- modules/jooby-requery/README.md | 6 +++--- modules/jooby-requery/pom.xml | 2 +- modules/jooby-rocker/README.md | 6 +++--- modules/jooby-rocker/pom.xml | 2 +- modules/jooby-run/pom.xml | 2 +- modules/jooby-rxjava-jdbc/README.md | 6 +++--- modules/jooby-rxjava-jdbc/pom.xml | 2 +- modules/jooby-rxjava/README.md | 6 +++--- modules/jooby-rxjava/pom.xml | 2 +- modules/jooby-scanner/README.md | 6 +++--- modules/jooby-scanner/pom.xml | 2 +- modules/jooby-servlet/README.md | 4 ++-- modules/jooby-servlet/pom.xml | 2 +- modules/jooby-sitemap/README.md | 6 +++--- modules/jooby-sitemap/pom.xml | 2 +- modules/jooby-spymemcached/README.md | 8 ++++---- modules/jooby-spymemcached/pom.xml | 2 +- modules/jooby-thymeleaf/README.md | 6 +++--- modules/jooby-thymeleaf/pom.xml | 2 +- modules/jooby-unbescape/README.md | 6 +++--- modules/jooby-unbescape/pom.xml | 2 +- modules/jooby-undertow/README.md | 6 +++--- modules/jooby-undertow/pom.xml | 2 +- modules/jooby-whoops/README.md | 6 +++--- modules/jooby-whoops/pom.xml | 2 +- modules/jooby-yasson/README.md | 6 +++--- modules/jooby-yasson/pom.xml | 2 +- modules/pom.xml | 2 +- pom.xml | 2 +- 181 files changed, 370 insertions(+), 370 deletions(-) diff --git a/README.md b/README.md index d2ef73759e..067a02eb41 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby.svg)](https://javadoc.io/doc/org.jooby/jooby/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby.svg)](https://javadoc.io/doc/org.jooby/jooby/1.6.5) [![Become a Patreon](https://img.shields.io/badge/patreon-donate-orange.svg)](https://patreon.com/edgarespina) [![Build Status](https://travis-ci.org/jooby-project/jooby.svg?branch=master)](https://travis-ci.org/jooby-project/jooby) [![coveralls.io](https://img.shields.io/coveralls/jooby-project/jooby.svg)](https://coveralls.io/r/jooby-project/jooby?branch=master) diff --git a/jooby/pom.xml b/jooby/pom.xml index e427bee887..d4444bc104 100644 --- a/jooby/pom.xml +++ b/jooby/pom.xml @@ -6,7 +6,7 @@ org.jooby jooby-project - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/coverage-report/pom.xml b/modules/coverage-report/pom.xml index 70b0ea6ca9..41a3389bb2 100644 --- a/modules/coverage-report/pom.xml +++ b/modules/coverage-report/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-akka/README.md b/modules/jooby-akka/README.md index 072ec200aa..2ffaa1bf1b 100644 --- a/modules/jooby-akka/README.md +++ b/modules/jooby-akka/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-akka/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-akka/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-akka.svg)](https://javadoc.io/doc/org.jooby/jooby-akka/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-akka/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-akka/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-akka.svg)](https://javadoc.io/doc/org.jooby/jooby-akka/1.6.5) [![jooby-akka website](https://img.shields.io/badge/jooby-akka-brightgreen.svg)](http://jooby.org/doc/akka) # akka @@ -15,7 +15,7 @@ Small module to build concurrent & distributed applications via [Akka](http://ak org.jooby jooby-akka - 1.6.4 + 1.6.5 ``` diff --git a/modules/jooby-akka/pom.xml b/modules/jooby-akka/pom.xml index 330c7bec9a..58c62fa01a 100644 --- a/modules/jooby-akka/pom.xml +++ b/modules/jooby-akka/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-apitool/README.md b/modules/jooby-apitool/README.md index 2ad4be4b2f..7d01c7c1ca 100644 --- a/modules/jooby-apitool/README.md +++ b/modules/jooby-apitool/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-apitool/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-apitool/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-apitool.svg)](https://javadoc.io/doc/org.jooby/jooby-apitool/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-apitool/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-apitool/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-apitool.svg)](https://javadoc.io/doc/org.jooby/jooby-apitool/1.6.5) [![jooby-apitool website](https://img.shields.io/badge/jooby-apitool-brightgreen.svg)](http://jooby.org/doc/apitool) # API tool @@ -23,7 +23,7 @@ This module generates live documentation from your HTTP API (source code). org.jooby jooby-apitool - 1.6.4 + 1.6.5 ``` @@ -187,7 +187,7 @@ Go to ```build.gradle``` and add these lines: ```gradke buildscript { dependencies { - classpath group: 'org.jooby', name: 'jooby-gradle-plugin', version: '1.6.4' + classpath group: 'org.jooby', name: 'jooby-gradle-plugin', version: '1.6.5' } } apply plugin: 'jooby' diff --git a/modules/jooby-apitool/pom.xml b/modules/jooby-apitool/pom.xml index 1f2dfdf0a8..e2a110f26c 100644 --- a/modules/jooby-apitool/pom.xml +++ b/modules/jooby-apitool/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-archetype/pom.xml b/modules/jooby-archetype/pom.xml index 92b4e86e81..e37bf3701f 100644 --- a/modules/jooby-archetype/pom.xml +++ b/modules/jooby-archetype/pom.xml @@ -7,7 +7,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 jooby-archetype diff --git a/modules/jooby-assets-autoprefixer/README.md b/modules/jooby-assets-autoprefixer/README.md index 1550b8d16a..8e4ed70a39 100644 --- a/modules/jooby-assets-autoprefixer/README.md +++ b/modules/jooby-assets-autoprefixer/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-autoprefixer/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-autoprefixer/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-autoprefixer.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-autoprefixer/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-autoprefixer/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-autoprefixer/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-autoprefixer.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-autoprefixer/1.6.5) [![jooby-assets-autoprefixer website](https://img.shields.io/badge/jooby-assets-autoprefixer-brightgreen.svg)](http://jooby.org/doc/assets-autoprefixer) # auto-prefixer @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-autoprefixer - 1.6.4 + 1.6.5 provided ``` diff --git a/modules/jooby-assets-autoprefixer/pom.xml b/modules/jooby-assets-autoprefixer/pom.xml index cdb33c35ff..0e62d2b8a0 100644 --- a/modules/jooby-assets-autoprefixer/pom.xml +++ b/modules/jooby-assets-autoprefixer/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-assets-babel/README.md b/modules/jooby-assets-babel/README.md index 33ca3f4bbf..a01f66effa 100644 --- a/modules/jooby-assets-babel/README.md +++ b/modules/jooby-assets-babel/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-babel/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-babel/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-babel.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-babel/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-babel/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-babel/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-babel.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-babel/1.6.5) [![jooby-assets-babel website](https://img.shields.io/badge/jooby-assets-babel-brightgreen.svg)](http://jooby.org/doc/assets-babel) # babel @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-babel - 1.6.4 + 1.6.5 provided ``` @@ -38,7 +38,7 @@ assets { org.jooby jooby-assets-babel - 1.6.4 + 1.6.5 provided ``` diff --git a/modules/jooby-assets-babel/pom.xml b/modules/jooby-assets-babel/pom.xml index 7425fc9477..aef10b0334 100644 --- a/modules/jooby-assets-babel/pom.xml +++ b/modules/jooby-assets-babel/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-assets-clean-css/README.md b/modules/jooby-assets-clean-css/README.md index 80e36ebad4..47414dacdb 100644 --- a/modules/jooby-assets-clean-css/README.md +++ b/modules/jooby-assets-clean-css/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-clean-css/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-clean-css/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-clean-css.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-clean-css/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-clean-css/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-clean-css/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-clean-css.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-clean-css/1.6.5) [![jooby-assets-clean-css website](https://img.shields.io/badge/jooby-assets-clean-css-brightgreen.svg)](http://jooby.org/doc/assets-clean-css) # clean-css @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-clean-css - 1.6.4 + 1.6.5 provided ``` diff --git a/modules/jooby-assets-clean-css/pom.xml b/modules/jooby-assets-clean-css/pom.xml index 75a0b9e453..ff73e158dd 100644 --- a/modules/jooby-assets-clean-css/pom.xml +++ b/modules/jooby-assets-clean-css/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-assets-closure-compiler/README.md b/modules/jooby-assets-closure-compiler/README.md index 77bfece010..ffb6dc2c4b 100644 --- a/modules/jooby-assets-closure-compiler/README.md +++ b/modules/jooby-assets-closure-compiler/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-closure-compiler/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-closure-compiler/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-closure-compiler.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-closure-compiler/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-closure-compiler/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-closure-compiler/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-closure-compiler.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-closure-compiler/1.6.5) [![jooby-assets-closure-compiler website](https://img.shields.io/badge/jooby-assets-closure-compiler-brightgreen.svg)](http://jooby.org/doc/assets-closure-compiler) # closure-compiler @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-closure-compiler - 1.6.4 + 1.6.5 provided ``` diff --git a/modules/jooby-assets-closure-compiler/pom.xml b/modules/jooby-assets-closure-compiler/pom.xml index ca45a81c21..32a858bb00 100644 --- a/modules/jooby-assets-closure-compiler/pom.xml +++ b/modules/jooby-assets-closure-compiler/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-assets-csslint/README.md b/modules/jooby-assets-csslint/README.md index cf1b7982cf..ad13eebd91 100644 --- a/modules/jooby-assets-csslint/README.md +++ b/modules/jooby-assets-csslint/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-csslint/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-csslint/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-csslint.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-csslint/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-csslint/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-csslint/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-csslint.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-csslint/1.6.5) [![jooby-assets-csslint website](https://img.shields.io/badge/jooby-assets-csslint-brightgreen.svg)](http://jooby.org/doc/assets-csslint) # csslint @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-csslint - 1.6.4 + 1.6.5 provided ``` diff --git a/modules/jooby-assets-csslint/pom.xml b/modules/jooby-assets-csslint/pom.xml index b3a69b064b..9aad1bb923 100644 --- a/modules/jooby-assets-csslint/pom.xml +++ b/modules/jooby-assets-csslint/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-assets-j2v8/pom.xml b/modules/jooby-assets-j2v8/pom.xml index ad78e5fbbd..33ade9f80b 100644 --- a/modules/jooby-assets-j2v8/pom.xml +++ b/modules/jooby-assets-j2v8/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-assets-jscs/README.md b/modules/jooby-assets-jscs/README.md index e91ec107c6..eedf98a2dd 100644 --- a/modules/jooby-assets-jscs/README.md +++ b/modules/jooby-assets-jscs/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-jscs/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-jscs/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-jscs.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-jscs/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-jscs/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-jscs/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-jscs.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-jscs/1.6.5) [![jooby-assets-jscs website](https://img.shields.io/badge/jooby-assets-jscs-brightgreen.svg)](http://jooby.org/doc/assets-jscs) # jscs @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-jscs - 1.6.4 + 1.6.5 provided ``` diff --git a/modules/jooby-assets-jscs/pom.xml b/modules/jooby-assets-jscs/pom.xml index c93bc62e15..e991973265 100644 --- a/modules/jooby-assets-jscs/pom.xml +++ b/modules/jooby-assets-jscs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-assets-jshint/README.md b/modules/jooby-assets-jshint/README.md index e54810baba..b68c8ebbf6 100644 --- a/modules/jooby-assets-jshint/README.md +++ b/modules/jooby-assets-jshint/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-jshint/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-jshint/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-jshint.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-jshint/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-jshint/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-jshint/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-jshint.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-jshint/1.6.5) [![jooby-assets-jshint website](https://img.shields.io/badge/jooby-assets-jshint-brightgreen.svg)](http://jooby.org/doc/assets-jshint) # jshint @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-jshint - 1.6.4 + 1.6.5 provided ``` diff --git a/modules/jooby-assets-jshint/pom.xml b/modules/jooby-assets-jshint/pom.xml index 2dc0647ca4..4f12ec5353 100644 --- a/modules/jooby-assets-jshint/pom.xml +++ b/modules/jooby-assets-jshint/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-assets-less/README.md b/modules/jooby-assets-less/README.md index d9ab52e01c..732922a8db 100644 --- a/modules/jooby-assets-less/README.md +++ b/modules/jooby-assets-less/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-less/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-less/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-less.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-less/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-less/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-less/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-less.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-less/1.6.5) [![jooby-assets-less website](https://img.shields.io/badge/jooby-assets-less-brightgreen.svg)](http://jooby.org/doc/assets-less) # less @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-less - 1.6.4 + 1.6.5 provided ``` diff --git a/modules/jooby-assets-less/pom.xml b/modules/jooby-assets-less/pom.xml index a205da8b4e..aff4cc16d2 100644 --- a/modules/jooby-assets-less/pom.xml +++ b/modules/jooby-assets-less/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-assets-less4j/README.md b/modules/jooby-assets-less4j/README.md index 7da6377eb5..e3047a716e 100644 --- a/modules/jooby-assets-less4j/README.md +++ b/modules/jooby-assets-less4j/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-less4j/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-less4j/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-less4j.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-less4j/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-less4j/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-less4j/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-less4j.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-less4j/1.6.5) [![jooby-assets-less4j website](https://img.shields.io/badge/jooby-assets-less4j-brightgreen.svg)](http://jooby.org/doc/assets-less4j) # less4j @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-less4j - 1.6.4 + 1.6.5 provided ``` diff --git a/modules/jooby-assets-less4j/pom.xml b/modules/jooby-assets-less4j/pom.xml index 0ea83102ee..4afc722979 100644 --- a/modules/jooby-assets-less4j/pom.xml +++ b/modules/jooby-assets-less4j/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-assets-ng-annotate/README.md b/modules/jooby-assets-ng-annotate/README.md index 764aea9602..92a5ec2669 100644 --- a/modules/jooby-assets-ng-annotate/README.md +++ b/modules/jooby-assets-ng-annotate/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-ng-annotate/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-ng-annotate/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-ng-annotate.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-ng-annotate/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-ng-annotate/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-ng-annotate/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-ng-annotate.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-ng-annotate/1.6.5) [![jooby-assets-ng-annotate website](https://img.shields.io/badge/jooby-assets-ng-annotate-brightgreen.svg)](http://jooby.org/doc/assets-ng-annotate) # ng-annotate @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-ng-annotate - 1.6.4 + 1.6.5 provided ``` diff --git a/modules/jooby-assets-ng-annotate/pom.xml b/modules/jooby-assets-ng-annotate/pom.xml index 382e654570..d9a3b9f25c 100644 --- a/modules/jooby-assets-ng-annotate/pom.xml +++ b/modules/jooby-assets-ng-annotate/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-assets-nodejs/pom.xml b/modules/jooby-assets-nodejs/pom.xml index 4cee414da5..074c0c7c66 100644 --- a/modules/jooby-assets-nodejs/pom.xml +++ b/modules/jooby-assets-nodejs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-assets-requirejs/README.md b/modules/jooby-assets-requirejs/README.md index c713d24f3e..b55cee91ae 100644 --- a/modules/jooby-assets-requirejs/README.md +++ b/modules/jooby-assets-requirejs/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-requirejs/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-requirejs/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-requirejs.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-requirejs/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-requirejs/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-requirejs/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-requirejs.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-requirejs/1.6.5) [![jooby-assets-requirejs website](https://img.shields.io/badge/jooby-assets-requirejs-brightgreen.svg)](http://jooby.org/doc/assets-requirejs) # rjs @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-requirejs - 1.6.4 + 1.6.5 provided ``` diff --git a/modules/jooby-assets-requirejs/pom.xml b/modules/jooby-assets-requirejs/pom.xml index 2c6f03ec8c..2152aad888 100644 --- a/modules/jooby-assets-requirejs/pom.xml +++ b/modules/jooby-assets-requirejs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-assets-rollup/README.md b/modules/jooby-assets-rollup/README.md index e7c2f8b926..4543bd0193 100644 --- a/modules/jooby-assets-rollup/README.md +++ b/modules/jooby-assets-rollup/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-rollup/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-rollup/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-rollup.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-rollup/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-rollup/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-rollup/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-rollup.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-rollup/1.6.5) [![jooby-assets-rollup website](https://img.shields.io/badge/jooby-assets-rollup-brightgreen.svg)](http://jooby.org/doc/assets-rollup) # rollup.js @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-rollup.js - 1.6.4 + 1.6.5 provided ``` diff --git a/modules/jooby-assets-rollup/pom.xml b/modules/jooby-assets-rollup/pom.xml index ce86affc9a..b669cce29d 100644 --- a/modules/jooby-assets-rollup/pom.xml +++ b/modules/jooby-assets-rollup/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-assets-sass/README.md b/modules/jooby-assets-sass/README.md index 969805acc6..ecdc74eefe 100644 --- a/modules/jooby-assets-sass/README.md +++ b/modules/jooby-assets-sass/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-sass/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-sass/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-sass.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-sass/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-sass/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-sass/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-sass.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-sass/1.6.5) [![jooby-assets-sass website](https://img.shields.io/badge/jooby-assets-sass-brightgreen.svg)](http://jooby.org/doc/assets-sass) # sass @@ -13,7 +13,7 @@ org.jooby jooby-assets-sass - 1.6.4 + 1.6.5 provided ``` diff --git a/modules/jooby-assets-sass/pom.xml b/modules/jooby-assets-sass/pom.xml index ffd6f8ac3b..3b929193d7 100644 --- a/modules/jooby-assets-sass/pom.xml +++ b/modules/jooby-assets-sass/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-assets-svg-sprites/README.md b/modules/jooby-assets-svg-sprites/README.md index 0bf8dc2e94..67ad7e013f 100644 --- a/modules/jooby-assets-svg-sprites/README.md +++ b/modules/jooby-assets-svg-sprites/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-svg-sprites/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-svg-sprites/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-svg-sprites.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-svg-sprites/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-svg-sprites/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-svg-sprites/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-svg-sprites.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-svg-sprites/1.6.5) [![jooby-assets-svg-sprites website](https://img.shields.io/badge/jooby-assets-svg-sprites-brightgreen.svg)](http://jooby.org/doc/assets-svg-sprites) # svg-sprites @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-svg-sprites - 1.6.4 + 1.6.5 provided ``` diff --git a/modules/jooby-assets-svg-sprites/pom.xml b/modules/jooby-assets-svg-sprites/pom.xml index c17be28bd9..5f92eb2716 100644 --- a/modules/jooby-assets-svg-sprites/pom.xml +++ b/modules/jooby-assets-svg-sprites/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-assets-svg-symbol/README.md b/modules/jooby-assets-svg-symbol/README.md index 968ed72b75..5d19db6b94 100644 --- a/modules/jooby-assets-svg-symbol/README.md +++ b/modules/jooby-assets-svg-symbol/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-svg-symbol/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-svg-symbol/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-svg-symbol.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-svg-symbol/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-svg-symbol/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-svg-symbol/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-svg-symbol.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-svg-symbol/1.6.5) [![jooby-assets-svg-symbol website](https://img.shields.io/badge/jooby-assets-svg-symbol-brightgreen.svg)](http://jooby.org/doc/assets-svg-symbol) # svg-symbol @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-svg-symbol - 1.6.4 + 1.6.5 provided ``` diff --git a/modules/jooby-assets-svg-symbol/pom.xml b/modules/jooby-assets-svg-symbol/pom.xml index d57ba00b78..5141e903a8 100644 --- a/modules/jooby-assets-svg-symbol/pom.xml +++ b/modules/jooby-assets-svg-symbol/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-assets-uglify/README.md b/modules/jooby-assets-uglify/README.md index a9ec39fe3b..67b6207ba7 100644 --- a/modules/jooby-assets-uglify/README.md +++ b/modules/jooby-assets-uglify/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-uglify/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-uglify/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-uglify.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-uglify/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-uglify/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-uglify/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-uglify.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-uglify/1.6.5) [![jooby-assets-uglify website](https://img.shields.io/badge/jooby-assets-uglify-brightgreen.svg)](http://jooby.org/doc/assets-uglify) # uglify @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-uglify - 1.6.4 + 1.6.5 provided ``` diff --git a/modules/jooby-assets-uglify/pom.xml b/modules/jooby-assets-uglify/pom.xml index 2f1c94e026..d8f3f8fa18 100644 --- a/modules/jooby-assets-uglify/pom.xml +++ b/modules/jooby-assets-uglify/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-assets-yui-compressor/README.md b/modules/jooby-assets-yui-compressor/README.md index 783d4c6646..48d3ba657b 100644 --- a/modules/jooby-assets-yui-compressor/README.md +++ b/modules/jooby-assets-yui-compressor/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-yui-compressor/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-yui-compressor/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-yui-compressor.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-yui-compressor/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-yui-compressor/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-yui-compressor/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-yui-compressor.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-yui-compressor/1.6.5) [![jooby-assets-yui-compressor website](https://img.shields.io/badge/jooby-assets-yui-compressor-brightgreen.svg)](http://jooby.org/doc/assets-yui-compressor) # yui-css @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-yui-compressor - 1.6.4 + 1.6.5 provided ``` diff --git a/modules/jooby-assets-yui-compressor/pom.xml b/modules/jooby-assets-yui-compressor/pom.xml index 56429d0342..0234686a23 100644 --- a/modules/jooby-assets-yui-compressor/pom.xml +++ b/modules/jooby-assets-yui-compressor/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-assets/README.md b/modules/jooby-assets/README.md index d44b0d2715..3d823217bb 100644 --- a/modules/jooby-assets/README.md +++ b/modules/jooby-assets/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets.svg)](https://javadoc.io/doc/org.jooby/jooby-assets/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets.svg)](https://javadoc.io/doc/org.jooby/jooby-assets/1.6.5) [![jooby-assets website](https://img.shields.io/badge/jooby-assets-brightgreen.svg)](http://jooby.org/doc/assets) # assets @@ -13,7 +13,7 @@ A variety of processors are available: ([jshint](https://github.com/jooby-projec org.jooby jooby-assets - 1.6.4 + 1.6.5 ``` diff --git a/modules/jooby-assets/pom.xml b/modules/jooby-assets/pom.xml index fca99da641..5c04ed5dd3 100644 --- a/modules/jooby-assets/pom.xml +++ b/modules/jooby-assets/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-aws/README.md b/modules/jooby-aws/README.md index d5f09da2cc..a7080680dc 100644 --- a/modules/jooby-aws/README.md +++ b/modules/jooby-aws/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-aws/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-aws/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-aws.svg)](https://javadoc.io/doc/org.jooby/jooby-aws/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-aws/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-aws/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-aws.svg)](https://javadoc.io/doc/org.jooby/jooby-aws/1.6.5) [![jooby-aws website](https://img.shields.io/badge/jooby-aws-brightgreen.svg)](http://jooby.org/doc/aws) # aws @@ -15,7 +15,7 @@ Small utility module that exports ```AmazonWebServiceClient``` services. org.jooby jooby-aws - 1.6.4 + 1.6.5 ``` diff --git a/modules/jooby-aws/pom.xml b/modules/jooby-aws/pom.xml index 87d9ee49d2..51fcdc118a 100644 --- a/modules/jooby-aws/pom.xml +++ b/modules/jooby-aws/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-banner/README.md b/modules/jooby-banner/README.md index 45f08f6dfd..157879217f 100644 --- a/modules/jooby-banner/README.md +++ b/modules/jooby-banner/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-banner/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-banner/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-banner.svg)](https://javadoc.io/doc/org.jooby/jooby-banner/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-banner/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-banner/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-banner.svg)](https://javadoc.io/doc/org.jooby/jooby-banner/1.6.5) [![jooby-banner website](https://img.shields.io/badge/jooby-banner-brightgreen.svg)](http://jooby.org/doc/banner) # banner @@ -11,7 +11,7 @@ Prints out an ASCII art banner on startup using org.jooby jooby-caffeine - 1.6.4 + 1.6.5 ``` diff --git a/modules/jooby-caffeine/pom.xml b/modules/jooby-caffeine/pom.xml index ac2dd1f417..00e88735b0 100644 --- a/modules/jooby-caffeine/pom.xml +++ b/modules/jooby-caffeine/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-camel/README.md b/modules/jooby-camel/README.md index d8ab59dd19..a0387513ae 100644 --- a/modules/jooby-camel/README.md +++ b/modules/jooby-camel/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-camel/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-camel/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-camel.svg)](https://javadoc.io/doc/org.jooby/jooby-camel/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-camel/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-camel/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-camel.svg)](https://javadoc.io/doc/org.jooby/jooby-camel/1.6.5) [![jooby-camel website](https://img.shields.io/badge/jooby-camel-brightgreen.svg)](http://jooby.org/doc/camel) # camel @@ -26,7 +26,7 @@ depend on [camel-guice](http://camel.apache.org/guice.html), but it provides sim org.jooby jooby-camel - 1.6.4 + 1.6.5 ``` diff --git a/modules/jooby-camel/pom.xml b/modules/jooby-camel/pom.xml index 5fe832fe41..7678832c03 100644 --- a/modules/jooby-camel/pom.xml +++ b/modules/jooby-camel/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-cassandra/README.md b/modules/jooby-cassandra/README.md index f571a485aa..6b15aa863a 100644 --- a/modules/jooby-cassandra/README.md +++ b/modules/jooby-cassandra/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-cassandra/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-cassandra/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-cassandra.svg)](https://javadoc.io/doc/org.jooby/jooby-cassandra/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-cassandra/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-cassandra/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-cassandra.svg)](https://javadoc.io/doc/org.jooby/jooby-cassandra/1.6.5) [![jooby-cassandra website](https://img.shields.io/badge/jooby-cassandra-brightgreen.svg)](http://jooby.org/doc/cassandra) # cassandra @@ -13,7 +13,7 @@ This module offers cassandra database org.jooby jooby-cassandra - 1.6.4 + 1.6.5 ``` @@ -211,7 +211,7 @@ A [Session.Store](/apidocs/org/jooby/cassandra/CassandraSessionStore.html) power org.jooby jooby-cassandra - 1.6.4 + 1.6.5 ``` diff --git a/modules/jooby-cassandra/pom.xml b/modules/jooby-cassandra/pom.xml index 1e4fa2f799..8a4bcc80ec 100644 --- a/modules/jooby-cassandra/pom.xml +++ b/modules/jooby-cassandra/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-commons-email/README.md b/modules/jooby-commons-email/README.md index 81c1f5e990..b377f040e7 100644 --- a/modules/jooby-commons-email/README.md +++ b/modules/jooby-commons-email/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-commons-email/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-commons-email/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-commons-email.svg)](https://javadoc.io/doc/org.jooby/jooby-commons-email/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-commons-email/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-commons-email/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-commons-email.svg)](https://javadoc.io/doc/org.jooby/jooby-commons-email/1.6.5) [![jooby-commons-email website](https://img.shields.io/badge/jooby-commons-email-brightgreen.svg)](http://jooby.org/doc/commons-email) # commons-email @@ -19,7 +19,7 @@ Small but helpful module that provides access to ```Email``` instances. org.jooby jooby-commons-email - 1.6.4 + 1.6.5 ``` diff --git a/modules/jooby-commons-email/pom.xml b/modules/jooby-commons-email/pom.xml index 8990f9490a..bcbdb99694 100644 --- a/modules/jooby-commons-email/pom.xml +++ b/modules/jooby-commons-email/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-consul/README.md b/modules/jooby-consul/README.md index 9573a36faf..ed2b10d671 100644 --- a/modules/jooby-consul/README.md +++ b/modules/jooby-consul/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-consul/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-consul/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-consul.svg)](https://javadoc.io/doc/org.jooby/jooby-consul/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-consul/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-consul/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-consul.svg)](https://javadoc.io/doc/org.jooby/jooby-consul/1.6.5) [![jooby-consul website](https://img.shields.io/badge/jooby-consul-brightgreen.svg)](http://jooby.org/doc/consul) # consul @@ -15,7 +15,7 @@ Also register the application as a service and setup a health check. org.jooby jooby-consul - 1.6.4 + 1.6.5 ``` diff --git a/modules/jooby-consul/pom.xml b/modules/jooby-consul/pom.xml index 515253a2f3..2c4c869888 100644 --- a/modules/jooby-consul/pom.xml +++ b/modules/jooby-consul/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-couchbase/README.md b/modules/jooby-couchbase/README.md index 0730c88715..64b22000de 100644 --- a/modules/jooby-couchbase/README.md +++ b/modules/jooby-couchbase/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-couchbase/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-couchbase/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-couchbase.svg)](https://javadoc.io/doc/org.jooby/jooby-couchbase/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-couchbase/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-couchbase/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-couchbase.svg)](https://javadoc.io/doc/org.jooby/jooby-couchbase/1.6.5) [![jooby-couchbase website](https://img.shields.io/badge/jooby-couchbase-brightgreen.svg)](http://jooby.org/doc/couchbase) # couchbase @@ -13,7 +13,7 @@ This module provides couchbase access via org.jooby jooby-couchbase - 1.6.4 + 1.6.5 ``` @@ -307,7 +307,7 @@ A [Session.Store](/apidocs/org/jooby/couchbase/CouchbaseSessionStore) powered by org.jooby jooby-couchbase - 1.6.4 + 1.6.5 ``` diff --git a/modules/jooby-couchbase/pom.xml b/modules/jooby-couchbase/pom.xml index 281570e410..c9e76588e2 100644 --- a/modules/jooby-couchbase/pom.xml +++ b/modules/jooby-couchbase/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-crash/README.md b/modules/jooby-crash/README.md index 5f0e48e97f..9fc6ea6ad9 100644 --- a/modules/jooby-crash/README.md +++ b/modules/jooby-crash/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-crash/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-crash/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-crash.svg)](https://javadoc.io/doc/org.jooby/jooby-crash/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-crash/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-crash/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-crash.svg)](https://javadoc.io/doc/org.jooby/jooby-crash/1.6.5) [![jooby-crash website](https://img.shields.io/badge/jooby-crash-brightgreen.svg)](http://jooby.org/doc/crash) # crash @@ -11,7 +11,7 @@ org.jooby jooby-crash - 1.6.4 + 1.6.5 ``` diff --git a/modules/jooby-crash/pom.xml b/modules/jooby-crash/pom.xml index ea3872d338..f734f105b3 100644 --- a/modules/jooby-crash/pom.xml +++ b/modules/jooby-crash/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-csl/README.md b/modules/jooby-csl/README.md index 9739902cf7..ab2f68a3df 100644 --- a/modules/jooby-csl/README.md +++ b/modules/jooby-csl/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-csl/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-csl/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-csl.svg)](https://javadoc.io/doc/org.jooby/jooby-csl/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-csl/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-csl/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-csl.svg)](https://javadoc.io/doc/org.jooby/jooby-csl/1.6.5) [![jooby-csl website](https://img.shields.io/badge/jooby-csl-brightgreen.svg)](http://jooby.org/doc/csl) # csl @@ -11,7 +11,7 @@ org.jooby jooby-csl - 1.6.4 + 1.6.5 ``` diff --git a/modules/jooby-csl/pom.xml b/modules/jooby-csl/pom.xml index d1a255f1cb..0281a1a0af 100644 --- a/modules/jooby-csl/pom.xml +++ b/modules/jooby-csl/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-dist/pom.xml b/modules/jooby-dist/pom.xml index 094554e594..d7a5a485ba 100644 --- a/modules/jooby-dist/pom.xml +++ b/modules/jooby-dist/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-ebean/README.md b/modules/jooby-ebean/README.md index b78081322d..3e8bfedad4 100644 --- a/modules/jooby-ebean/README.md +++ b/modules/jooby-ebean/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-ebean/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-ebean/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-ebean.svg)](https://javadoc.io/doc/org.jooby/jooby-ebean/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-ebean/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-ebean/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-ebean.svg)](https://javadoc.io/doc/org.jooby/jooby-ebean/1.6.5) [![jooby-ebean website](https://img.shields.io/badge/jooby-ebean-brightgreen.svg)](http://jooby.org/doc/ebean) # ebean @@ -17,7 +17,7 @@ Object-Relational-Mapping via [Ebean ORM](http://ebean-orm.github.io). It config org.jooby jooby-ebean - 1.6.4 + 1.6.5 ``` diff --git a/modules/jooby-ebean/pom.xml b/modules/jooby-ebean/pom.xml index 4a99c09e9f..00dfe4ed5c 100644 --- a/modules/jooby-ebean/pom.xml +++ b/modules/jooby-ebean/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-ehcache/README.md b/modules/jooby-ehcache/README.md index cba1b71628..d35acba5d8 100644 --- a/modules/jooby-ehcache/README.md +++ b/modules/jooby-ehcache/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-ehcache/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-ehcache/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-ehcache.svg)](https://javadoc.io/doc/org.jooby/jooby-ehcache/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-ehcache/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-ehcache/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-ehcache.svg)](https://javadoc.io/doc/org.jooby/jooby-ehcache/1.6.5) [![jooby-ehcache website](https://img.shields.io/badge/jooby-ehcache-brightgreen.svg)](http://jooby.org/doc/ehcache) # ehcache @@ -16,7 +16,7 @@ Provides advanced cache features via [Ehcache](http://ehcache.org) org.jooby jooby-ehcache - 1.6.4 + 1.6.5 ``` @@ -120,7 +120,7 @@ Please note the ```default``` cache works as a template and isn't a real/usable org.jooby jooby-ehcache - 1.6.4 + 1.6.5 ``` diff --git a/modules/jooby-ehcache/pom.xml b/modules/jooby-ehcache/pom.xml index a1b9becb0f..5933e23573 100644 --- a/modules/jooby-ehcache/pom.xml +++ b/modules/jooby-ehcache/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-elasticsearch/README.md b/modules/jooby-elasticsearch/README.md index bbfaffaba3..79cdeddfa1 100644 --- a/modules/jooby-elasticsearch/README.md +++ b/modules/jooby-elasticsearch/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-elasticsearch/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-elasticsearch/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-elasticsearch.svg)](https://javadoc.io/doc/org.jooby/jooby-elasticsearch/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-elasticsearch/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-elasticsearch/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-elasticsearch.svg)](https://javadoc.io/doc/org.jooby/jooby-elasticsearch/1.6.5) [![jooby-elasticsearch website](https://img.shields.io/badge/jooby-elasticsearch-brightgreen.svg)](http://jooby.org/doc/elasticsearch) # elasticsearch @@ -15,7 +15,7 @@ Open Source, Distributed, RESTful Search Engine via [Elastic Search](https://git org.jooby jooby-elasticsearch - 1.6.4 + 1.6.5 ``` diff --git a/modules/jooby-elasticsearch/pom.xml b/modules/jooby-elasticsearch/pom.xml index 826d57916e..1598aad4fc 100644 --- a/modules/jooby-elasticsearch/pom.xml +++ b/modules/jooby-elasticsearch/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-eventbus/README.md b/modules/jooby-eventbus/README.md index 21bbdd7e35..308c72ebb2 100644 --- a/modules/jooby-eventbus/README.md +++ b/modules/jooby-eventbus/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-eventbus/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-eventbus/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-eventbus.svg)](https://javadoc.io/doc/org.jooby/jooby-eventbus/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-eventbus/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-eventbus/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-eventbus.svg)](https://javadoc.io/doc/org.jooby/jooby-eventbus/1.6.5) [![jooby-eventbus website](https://img.shields.io/badge/jooby-eventbus-brightgreen.svg)](http://jooby.org/doc/eventbus) # EventBus @@ -15,7 +15,7 @@ org.jooby jooby-eventbus - 1.6.4 + 1.6.5 ``` diff --git a/modules/jooby-eventbus/pom.xml b/modules/jooby-eventbus/pom.xml index 62cc63ee62..6dde5c4d64 100644 --- a/modules/jooby-eventbus/pom.xml +++ b/modules/jooby-eventbus/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-executor/README.md b/modules/jooby-executor/README.md index a21cd2bf10..a165bc515a 100644 --- a/modules/jooby-executor/README.md +++ b/modules/jooby-executor/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-executor/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-executor/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-executor.svg)](https://javadoc.io/doc/org.jooby/jooby-executor/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-executor/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-executor/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-executor.svg)](https://javadoc.io/doc/org.jooby/jooby-executor/1.6.5) [![jooby-executor website](https://img.shields.io/badge/jooby-executor-brightgreen.svg)](http://jooby.org/doc/executor) # executor @@ -15,7 +15,7 @@ Manage the life cycle of {@link ExecutorService} and build async apps, schedule org.jooby jooby-executor - 1.6.4 + 1.6.5 ``` diff --git a/modules/jooby-executor/pom.xml b/modules/jooby-executor/pom.xml index f49f94dc46..62ec7b807d 100644 --- a/modules/jooby-executor/pom.xml +++ b/modules/jooby-executor/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-exposed/README.md b/modules/jooby-exposed/README.md index e83a533b5a..98a4a9f835 100644 --- a/modules/jooby-exposed/README.md +++ b/modules/jooby-exposed/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-exposed/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-exposed/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-exposed.svg)](https://javadoc.io/doc/org.jooby/jooby-exposed/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-exposed/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-exposed/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-exposed.svg)](https://javadoc.io/doc/org.jooby/jooby-exposed/1.6.5) [![jooby-exposed website](https://img.shields.io/badge/jooby-exposed-brightgreen.svg)](http://jooby.org/doc/exposed) # exposed diff --git a/modules/jooby-exposed/pom.xml b/modules/jooby-exposed/pom.xml index 8c29774570..41e8c111a4 100644 --- a/modules/jooby-exposed/pom.xml +++ b/modules/jooby-exposed/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-filewatcher/README.md b/modules/jooby-filewatcher/README.md index 6effa5c036..39995ba35b 100644 --- a/modules/jooby-filewatcher/README.md +++ b/modules/jooby-filewatcher/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-filewatcher/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-filewatcher/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-filewatcher.svg)](https://javadoc.io/doc/org.jooby/jooby-filewatcher/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-filewatcher/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-filewatcher/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-filewatcher.svg)](https://javadoc.io/doc/org.jooby/jooby-filewatcher/1.6.5) [![jooby-filewatcher website](https://img.shields.io/badge/jooby-filewatcher-brightgreen.svg)](http://jooby.org/doc/filewatcher) # file watcher @@ -11,7 +11,7 @@ Watches for file system changes or event. It uses a watch service to monitor a d org.jooby jooby-file watcher - 1.6.4 + 1.6.5 ``` diff --git a/modules/jooby-filewatcher/pom.xml b/modules/jooby-filewatcher/pom.xml index a4904bc31b..76f196fbe5 100644 --- a/modules/jooby-filewatcher/pom.xml +++ b/modules/jooby-filewatcher/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-flyway/README.md b/modules/jooby-flyway/README.md index 3b7131968d..25e4e82f99 100644 --- a/modules/jooby-flyway/README.md +++ b/modules/jooby-flyway/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-flyway/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-flyway/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-flyway.svg)](https://javadoc.io/doc/org.jooby/jooby-flyway/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-flyway/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-flyway/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-flyway.svg)](https://javadoc.io/doc/org.jooby/jooby-flyway/1.6.5) [![jooby-flyway website](https://img.shields.io/badge/jooby-flyway-brightgreen.svg)](http://jooby.org/doc/flyway) # flyway @@ -15,7 +15,7 @@ This module run [Flyway](http://flywaydb.org) on startup and apply database migr org.jooby jooby-flyway - 1.6.4 + 1.6.5 ``` diff --git a/modules/jooby-flyway/pom.xml b/modules/jooby-flyway/pom.xml index ba081d1748..0072162aa5 100644 --- a/modules/jooby-flyway/pom.xml +++ b/modules/jooby-flyway/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-frontend/README.md b/modules/jooby-frontend/README.md index a464b613f8..18ea0708c6 100644 --- a/modules/jooby-frontend/README.md +++ b/modules/jooby-frontend/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-frontend/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-frontend/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-frontend.svg)](https://javadoc.io/doc/org.jooby/jooby-frontend/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-frontend/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-frontend/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-frontend.svg)](https://javadoc.io/doc/org.jooby/jooby-frontend/1.6.5) [![jooby-frontend website](https://img.shields.io/badge/jooby-frontend-brightgreen.svg)](http://jooby.org/doc/frontend) # frontend @@ -12,7 +12,7 @@ runs npm, w org.jooby jooby-frontend - 1.6.4 + 1.6.5 ``` diff --git a/modules/jooby-frontend/pom.xml b/modules/jooby-frontend/pom.xml index 8b6255547d..4173e837c1 100644 --- a/modules/jooby-frontend/pom.xml +++ b/modules/jooby-frontend/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-ftl/README.md b/modules/jooby-ftl/README.md index 28dfe6c0fe..f7744ab641 100644 --- a/modules/jooby-ftl/README.md +++ b/modules/jooby-ftl/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-ftl/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-ftl/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-ftl.svg)](https://javadoc.io/doc/org.jooby/jooby-ftl/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-ftl/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-ftl/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-ftl.svg)](https://javadoc.io/doc/org.jooby/jooby-ftl/1.6.5) [![jooby-ftl website](https://img.shields.io/badge/jooby-ftl-brightgreen.svg)](http://jooby.org/doc/ftl) # freemarker @@ -16,7 +16,7 @@ org.jooby jooby-ftl - 1.6.4 + 1.6.5 ``` diff --git a/modules/jooby-ftl/pom.xml b/modules/jooby-ftl/pom.xml index 6bc954cd15..5a6efd57b4 100644 --- a/modules/jooby-ftl/pom.xml +++ b/modules/jooby-ftl/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-gradle-plugin/README.md b/modules/jooby-gradle-plugin/README.md index 07981ac689..0d351c10da 100644 --- a/modules/jooby-gradle-plugin/README.md +++ b/modules/jooby-gradle-plugin/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-gradle-plugin/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-gradle-plugin/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-gradle-plugin.svg)](https://javadoc.io/doc/org.jooby/jooby-gradle-plugin/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-gradle-plugin/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-gradle-plugin/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-gradle-plugin.svg)](https://javadoc.io/doc/org.jooby/jooby-gradle-plugin/1.6.5) [![jooby-gradle-plugin website](https://img.shields.io/badge/jooby-gradle-plugin-brightgreen.svg)](http://jooby.org/doc/gradle-plugin) # gradle plugin @@ -21,7 +21,7 @@ buildscript { dependencies { /** joobyRun */ - classpath group: 'org.jooby', name: 'jooby-gradle-plugin', version: '1.6.4' + classpath group: 'org.jooby', name: 'jooby-gradle-plugin', version: '1.6.5' } } diff --git a/modules/jooby-gradle-plugin/pom.xml b/modules/jooby-gradle-plugin/pom.xml index 59ed0a9b7c..ae4778360a 100644 --- a/modules/jooby-gradle-plugin/pom.xml +++ b/modules/jooby-gradle-plugin/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-gson/README.md b/modules/jooby-gson/README.md index 2325ad7d4d..0515ca4a78 100644 --- a/modules/jooby-gson/README.md +++ b/modules/jooby-gson/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-gson/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-gson/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-gson.svg)](https://javadoc.io/doc/org.jooby/jooby-gson/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-gson/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-gson/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-gson.svg)](https://javadoc.io/doc/org.jooby/jooby-gson/1.6.5) [![jooby-gson website](https://img.shields.io/badge/jooby-gson-brightgreen.svg)](http://jooby.org/doc/gson) # gson @@ -17,7 +17,7 @@ JSON support via [Gson](https://github.com/google/gson) library. org.jooby jooby-gson - 1.6.4 + 1.6.5 ``` diff --git a/modules/jooby-gson/pom.xml b/modules/jooby-gson/pom.xml index 1d16d30a38..90778a4f03 100644 --- a/modules/jooby-gson/pom.xml +++ b/modules/jooby-gson/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-guava-cache/README.md b/modules/jooby-guava-cache/README.md index a608ff5abc..fa530c8ddd 100644 --- a/modules/jooby-guava-cache/README.md +++ b/modules/jooby-guava-cache/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-guava-cache/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-guava-cache/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-guava-cache.svg)](https://javadoc.io/doc/org.jooby/jooby-guava-cache/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-guava-cache/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-guava-cache/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-guava-cache.svg)](https://javadoc.io/doc/org.jooby/jooby-guava-cache/1.6.5) [![jooby-guava-cache website](https://img.shields.io/badge/jooby-guava-cache-brightgreen.svg)](http://jooby.org/doc/guava-cache) # guava-cache @@ -15,7 +15,7 @@ Provides cache solution and session storage via: Hibernate ORM org.jooby jooby-hbm - 1.6.4 + 1.6.5 ``` diff --git a/modules/jooby-hbm/pom.xml b/modules/jooby-hbm/pom.xml index 0f6095dee4..e2e6c44e1b 100644 --- a/modules/jooby-hbm/pom.xml +++ b/modules/jooby-hbm/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-hbs/README.md b/modules/jooby-hbs/README.md index 30abda03e7..834ff09657 100644 --- a/modules/jooby-hbs/README.md +++ b/modules/jooby-hbs/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-hbs/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-hbs/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-hbs.svg)](https://javadoc.io/doc/org.jooby/jooby-hbs/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-hbs/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-hbs/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-hbs.svg)](https://javadoc.io/doc/org.jooby/jooby-hbs/1.6.5) [![jooby-hbs website](https://img.shields.io/badge/jooby-hbs-brightgreen.svg)](http://jooby.org/doc/hbs) # handlebars @@ -16,7 +16,7 @@ Logic-less and semantic templates via [Handlebars.java](https://github.com/jknac org.jooby jooby-hbs - 1.6.4 + 1.6.5 ``` diff --git a/modules/jooby-hbs/pom.xml b/modules/jooby-hbs/pom.xml index 4ddf7aa479..e5a9827d8e 100644 --- a/modules/jooby-hbs/pom.xml +++ b/modules/jooby-hbs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-hbv/README.md b/modules/jooby-hbv/README.md index a4b1a379a4..59081252d6 100644 --- a/modules/jooby-hbv/README.md +++ b/modules/jooby-hbv/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-hbv/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-hbv/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-hbv.svg)](https://javadoc.io/doc/org.jooby/jooby-hbv/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-hbv/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-hbv/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-hbv.svg)](https://javadoc.io/doc/org.jooby/jooby-hbv/1.6.5) [![jooby-hbv website](https://img.shields.io/badge/jooby-hbv-brightgreen.svg)](http://jooby.org/doc/hbv) # hibernate validator @@ -17,7 +17,7 @@ Bean validation via [Hibernate Validator](hibernate.org/validator). org.jooby jooby-hbv - 1.6.4 + 1.6.5 ``` diff --git a/modules/jooby-hbv/pom.xml b/modules/jooby-hbv/pom.xml index 3207a2ce6c..1165286a01 100644 --- a/modules/jooby-hbv/pom.xml +++ b/modules/jooby-hbv/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-jackson/README.md b/modules/jooby-jackson/README.md index bdb2914dd3..aacdfa695b 100644 --- a/modules/jooby-jackson/README.md +++ b/modules/jooby-jackson/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jackson/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jackson/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jackson.svg)](https://javadoc.io/doc/org.jooby/jooby-jackson/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jackson/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jackson/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jackson.svg)](https://javadoc.io/doc/org.jooby/jooby-jackson/1.6.5) [![jooby-jackson website](https://img.shields.io/badge/jooby-jackson-brightgreen.svg)](http://jooby.org/doc/jackson) # jackson @@ -17,7 +17,7 @@ JSON support from the excellent [Jackson](https://github.com/FasterXML/jackson) org.jooby jooby-jackson - 1.6.4 + 1.6.5 ``` diff --git a/modules/jooby-jackson/pom.xml b/modules/jooby-jackson/pom.xml index 3ff06516fa..9c094a0ad0 100644 --- a/modules/jooby-jackson/pom.xml +++ b/modules/jooby-jackson/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-jade/README.md b/modules/jooby-jade/README.md index de3117ef36..ecfaec4c84 100644 --- a/modules/jooby-jade/README.md +++ b/modules/jooby-jade/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jade/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jade/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jade.svg)](https://javadoc.io/doc/org.jooby/jooby-jade/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jade/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jade/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jade.svg)](https://javadoc.io/doc/org.jooby/jooby-jade/1.6.5) [![jooby-jade website](https://img.shields.io/badge/jooby-jade-brightgreen.svg)](http://jooby.org/doc/jade) # jade @@ -16,7 +16,7 @@ org.jooby jooby-jade - 1.6.4 + 1.6.5 ``` diff --git a/modules/jooby-jade/pom.xml b/modules/jooby-jade/pom.xml index f73582d801..77ea2eec22 100644 --- a/modules/jooby-jade/pom.xml +++ b/modules/jooby-jade/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-jdbc/README.md b/modules/jooby-jdbc/README.md index e1e23bcdfb..f0cb30c884 100644 --- a/modules/jooby-jdbc/README.md +++ b/modules/jooby-jdbc/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jdbc/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jdbc/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jdbc.svg)](https://javadoc.io/doc/org.jooby/jooby-jdbc/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jdbc/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jdbc/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jdbc.svg)](https://javadoc.io/doc/org.jooby/jooby-jdbc/1.6.5) [![jooby-jdbc website](https://img.shields.io/badge/jooby-jdbc-brightgreen.svg)](http://jooby.org/doc/jdbc) # jdbc @@ -15,7 +15,7 @@ Production-ready jdbc data source, powered by the [HikariCP](https://github.com/ org.jooby jooby-jdbc - 1.6.4 + 1.6.5 ``` diff --git a/modules/jooby-jdbc/pom.xml b/modules/jooby-jdbc/pom.xml index aecdacf985..084566411c 100644 --- a/modules/jooby-jdbc/pom.xml +++ b/modules/jooby-jdbc/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-jdbi/README.md b/modules/jooby-jdbi/README.md index 7abd68c4de..38622c09db 100644 --- a/modules/jooby-jdbi/README.md +++ b/modules/jooby-jdbi/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jdbi/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jdbi/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jdbi.svg)](https://javadoc.io/doc/org.jooby/jooby-jdbi/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jdbi/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jdbi/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jdbi.svg)](https://javadoc.io/doc/org.jooby/jooby-jdbi/1.6.5) [![jooby-jdbi website](https://img.shields.io/badge/jooby-jdbi-brightgreen.svg)](http://jooby.org/doc/jdbi) # jdbi @@ -21,7 +21,7 @@ org.jooby jooby-jdbi - 1.6.4 + 1.6.5 ``` diff --git a/modules/jooby-jdbi/pom.xml b/modules/jooby-jdbi/pom.xml index 9fba532f19..3bcb6d3479 100644 --- a/modules/jooby-jdbi/pom.xml +++ b/modules/jooby-jdbi/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-jdbi3/README.md b/modules/jooby-jdbi3/README.md index ed9a45beeb..95446dea04 100644 --- a/modules/jooby-jdbi3/README.md +++ b/modules/jooby-jdbi3/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jdbi3/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jdbi3/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jdbi3.svg)](https://javadoc.io/doc/org.jooby/jooby-jdbi3/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jdbi3/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jdbi3/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jdbi3.svg)](https://javadoc.io/doc/org.jooby/jooby-jdbi3/1.6.5) [![jooby-jdbi3 website](https://img.shields.io/badge/jooby-jdbi3-brightgreen.svg)](http://jooby.org/doc/jdbi3) # jdbi @@ -17,7 +17,7 @@ org.jooby jooby-jdbi3 - 1.6.4 + 1.6.5 ``` diff --git a/modules/jooby-jdbi3/pom.xml b/modules/jooby-jdbi3/pom.xml index ab0e9b39af..43352ef62b 100644 --- a/modules/jooby-jdbi3/pom.xml +++ b/modules/jooby-jdbi3/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-jedis/README.md b/modules/jooby-jedis/README.md index 83dc90fe67..5962a9a150 100644 --- a/modules/jooby-jedis/README.md +++ b/modules/jooby-jedis/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jedis/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jedis/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jedis.svg)](https://javadoc.io/doc/org.jooby/jooby-jedis/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jedis/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jedis/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jedis.svg)](https://javadoc.io/doc/org.jooby/jooby-jedis/1.6.5) [![jooby-jedis website](https://img.shields.io/badge/jooby-jedis-brightgreen.svg)](http://jooby.org/doc/jedis) # jedis @@ -11,7 +11,7 @@ org.jooby jooby-jedis - 1.6.4 + 1.6.5 ``` @@ -99,7 +99,7 @@ For more information about [Jedis](https://github.com/xetorthio/jedis) checkout org.jooby jooby-jedis - 1.6.4 + 1.6.5 ``` diff --git a/modules/jooby-jedis/pom.xml b/modules/jooby-jedis/pom.xml index 55529c3dac..b73e3ec084 100644 --- a/modules/jooby-jedis/pom.xml +++ b/modules/jooby-jedis/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-jetty/README.md b/modules/jooby-jetty/README.md index 75cb4f4e52..38e4e1ffe8 100644 --- a/modules/jooby-jetty/README.md +++ b/modules/jooby-jetty/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jetty/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jetty/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jetty.svg)](https://javadoc.io/doc/org.jooby/jooby-jetty/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jetty/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jetty/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jetty.svg)](https://javadoc.io/doc/org.jooby/jooby-jetty/1.6.5) [![jooby-jetty website](https://img.shields.io/badge/jooby-jetty-brightgreen.svg)](http://jooby.org/doc/jetty) # jetty @@ -15,7 +15,7 @@ org.jooby jooby-jetty - 1.6.4 + 1.6.5 ``` diff --git a/modules/jooby-jetty/pom.xml b/modules/jooby-jetty/pom.xml index 0e6aeff04a..0cf888f7bf 100644 --- a/modules/jooby-jetty/pom.xml +++ b/modules/jooby-jetty/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-jongo/README.md b/modules/jooby-jongo/README.md index 0cc6ebf9a7..a7740d8698 100644 --- a/modules/jooby-jongo/README.md +++ b/modules/jooby-jongo/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jongo/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jongo/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jongo.svg)](https://javadoc.io/doc/org.jooby/jooby-jongo/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jongo/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jongo/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jongo.svg)](https://javadoc.io/doc/org.jooby/jooby-jongo/1.6.5) [![jooby-jongo website](https://img.shields.io/badge/jooby-jongo-brightgreen.svg)](http://jooby.org/doc/jongo) # jongo @@ -17,7 +17,7 @@ org.jooby jooby-jongo - 1.6.4 + 1.6.5 ``` diff --git a/modules/jooby-jongo/pom.xml b/modules/jooby-jongo/pom.xml index eedaaf890c..9a2c6d699b 100644 --- a/modules/jooby-jongo/pom.xml +++ b/modules/jooby-jongo/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-jooq/README.md b/modules/jooby-jooq/README.md index 686b86b1d0..231f7a8e03 100644 --- a/modules/jooby-jooq/README.md +++ b/modules/jooby-jooq/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jooq/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jooq/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jooq.svg)](https://javadoc.io/doc/org.jooby/jooby-jooq/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jooq/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jooq/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jooq.svg)](https://javadoc.io/doc/org.jooby/jooby-jooq/1.6.5) [![jooby-jooq website](https://img.shields.io/badge/jooby-jooq-brightgreen.svg)](http://jooby.org/doc/jooq) # jOOQ @@ -17,7 +17,7 @@ org.jooby jooby-jooq - 1.6.4 + 1.6.5 ``` diff --git a/modules/jooby-jooq/pom.xml b/modules/jooby-jooq/pom.xml index e14f6241fd..57824a730a 100644 --- a/modules/jooby-jooq/pom.xml +++ b/modules/jooby-jooq/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-lang-kotlin/README.md b/modules/jooby-lang-kotlin/README.md index 91b2dd68e1..43e82a4ec4 100644 --- a/modules/jooby-lang-kotlin/README.md +++ b/modules/jooby-lang-kotlin/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-lang-kotlin/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-lang-kotlin/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-lang-kotlin.svg)](https://javadoc.io/doc/org.jooby/jooby-lang-kotlin/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-lang-kotlin/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-lang-kotlin/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-lang-kotlin.svg)](https://javadoc.io/doc/org.jooby/jooby-lang-kotlin/1.6.5) [![jooby-lang-kotlin website](https://img.shields.io/badge/jooby-lang-kotlin-brightgreen.svg)](http://jooby.org/doc/lang-kotlin) # kotlin @@ -11,7 +11,7 @@ A tiny module that makes a Jooby application more Kotlin idiomatic. org.jooby jooby-lang-kotlin - 1.6.4 + 1.6.5 ``` diff --git a/modules/jooby-lang-kotlin/pom.xml b/modules/jooby-lang-kotlin/pom.xml index 617f27852c..55860d7710 100644 --- a/modules/jooby-lang-kotlin/pom.xml +++ b/modules/jooby-lang-kotlin/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-livereload/README.md b/modules/jooby-livereload/README.md index b32410526d..fc8a1850cd 100644 --- a/modules/jooby-livereload/README.md +++ b/modules/jooby-livereload/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-livereload/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-livereload/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-livereload.svg)](https://javadoc.io/doc/org.jooby/jooby-livereload/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-livereload/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-livereload/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-livereload.svg)](https://javadoc.io/doc/org.jooby/jooby-livereload/1.6.5) [![jooby-livereload website](https://img.shields.io/badge/jooby-livereload-brightgreen.svg)](http://jooby.org/doc/livereload) # liveReload @@ -18,7 +18,7 @@ Even cooler, when you change a CSS file or an image, the browser is updated inst org.jooby jooby-livereload - 1.6.4 + 1.6.5 ``` diff --git a/modules/jooby-livereload/pom.xml b/modules/jooby-livereload/pom.xml index a9abd60c8d..ccf64181c9 100644 --- a/modules/jooby-livereload/pom.xml +++ b/modules/jooby-livereload/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 jooby-livereload jooby-livereload diff --git a/modules/jooby-maven-plugin/README.md b/modules/jooby-maven-plugin/README.md index cc98fe4c88..26b70cc810 100644 --- a/modules/jooby-maven-plugin/README.md +++ b/modules/jooby-maven-plugin/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-maven-plugin/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-maven-plugin/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-maven-plugin.svg)](https://javadoc.io/doc/org.jooby/jooby-maven-plugin/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-maven-plugin/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-maven-plugin/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-maven-plugin.svg)](https://javadoc.io/doc/org.jooby/jooby-maven-plugin/1.6.5) [![jooby-maven-plugin website](https://img.shields.io/badge/jooby-maven-plugin-brightgreen.svg)](http://jooby.org/doc/maven-plugin) # maven @@ -43,7 +43,7 @@ It's worth to mention that dynamic reload of classes is done via [JBoss Modules] org.jooby jooby-maven-plugin - 1.6.4 + 1.6.5 ${application.class} @@ -117,7 +117,7 @@ List of commands to execute before starting the ```application```. Useful for [n org.jooby jooby-maven-plugin - 1.6.4 + 1.6.5 ${application.class} @@ -138,7 +138,7 @@ Set one or more ```JVM args```: org.jooby jooby-maven-plugin - 1.6.4 + 1.6.5 ${application.class} true diff --git a/modules/jooby-maven-plugin/pom.xml b/modules/jooby-maven-plugin/pom.xml index 65f2a751ee..ea6da78e02 100644 --- a/modules/jooby-maven-plugin/pom.xml +++ b/modules/jooby-maven-plugin/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-metrics/README.md b/modules/jooby-metrics/README.md index 9773a6c3a7..53350b3308 100644 --- a/modules/jooby-metrics/README.md +++ b/modules/jooby-metrics/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-metrics/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-metrics/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-metrics.svg)](https://javadoc.io/doc/org.jooby/jooby-metrics/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-metrics/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-metrics/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-metrics.svg)](https://javadoc.io/doc/org.jooby/jooby-metrics/1.6.5) [![jooby-metrics website](https://img.shields.io/badge/jooby-metrics-brightgreen.svg)](http://jooby.org/doc/metrics) # metrics @@ -11,7 +11,7 @@ org.jooby jooby-metrics - 1.6.4 + 1.6.5 ``` diff --git a/modules/jooby-metrics/pom.xml b/modules/jooby-metrics/pom.xml index 04e9bf641d..bdfd6e802a 100644 --- a/modules/jooby-metrics/pom.xml +++ b/modules/jooby-metrics/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-micrometer/README.md b/modules/jooby-micrometer/README.md index 2612297012..f383f5263c 100644 --- a/modules/jooby-micrometer/README.md +++ b/modules/jooby-micrometer/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-micrometer/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-micrometer/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-micrometer.svg)](https://javadoc.io/doc/org.jooby/jooby-micrometer/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-micrometer/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-micrometer/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-micrometer.svg)](https://javadoc.io/doc/org.jooby/jooby-micrometer/1.6.5) [![jooby-micrometer website](https://img.shields.io/badge/jooby-micrometer-brightgreen.svg)](http://jooby.org/doc/micrometer) # micrometer @@ -11,7 +11,7 @@ org.jooby jooby-micrometer - 1.6.4 + 1.6.5 ``` diff --git a/modules/jooby-micrometer/pom.xml b/modules/jooby-micrometer/pom.xml index 1b1b417d8e..7803d2be2e 100644 --- a/modules/jooby-micrometer/pom.xml +++ b/modules/jooby-micrometer/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-mongodb-rx/README.md b/modules/jooby-mongodb-rx/README.md index 9533bda863..b1097141c7 100644 --- a/modules/jooby-mongodb-rx/README.md +++ b/modules/jooby-mongodb-rx/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-mongodb-rx/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-mongodb-rx/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-mongodb-rx.svg)](https://javadoc.io/doc/org.jooby/jooby-mongodb-rx/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-mongodb-rx/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-mongodb-rx/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-mongodb-rx.svg)](https://javadoc.io/doc/org.jooby/jooby-mongodb-rx/1.6.5) [![jooby-mongodb-rx website](https://img.shields.io/badge/jooby-mongodb-rx-brightgreen.svg)](http://jooby.org/doc/mongodb-rx) # mongodb-rx @@ -16,7 +16,7 @@ A MongoDB based driver providing support for React org.jooby jooby-mongodb-rx - 1.6.4 + 1.6.5 ``` diff --git a/modules/jooby-mongodb-rx/pom.xml b/modules/jooby-mongodb-rx/pom.xml index 0d336e6991..8e24bce31b 100644 --- a/modules/jooby-mongodb-rx/pom.xml +++ b/modules/jooby-mongodb-rx/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-mongodb/README.md b/modules/jooby-mongodb/README.md index 3e92341c4e..5302bebb78 100644 --- a/modules/jooby-mongodb/README.md +++ b/modules/jooby-mongodb/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-mongodb/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-mongodb/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-mongodb.svg)](https://javadoc.io/doc/org.jooby/jooby-mongodb/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-mongodb/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-mongodb/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-mongodb.svg)](https://javadoc.io/doc/org.jooby/jooby-mongodb/1.6.5) [![jooby-mongodb website](https://img.shields.io/badge/jooby-mongodb-brightgreen.svg)](http://jooby.org/doc/mongodb) # mongodb driver @@ -17,7 +17,7 @@ org.jooby jooby-mongodb - 1.6.4 + 1.6.5 ``` @@ -117,7 +117,7 @@ Use [named](/apidocs/org/jooby/mongodb/Mongodb.html#-named) when you need two or org.jooby jooby-mongodb - 1.6.4 + 1.6.5 ``` diff --git a/modules/jooby-mongodb/pom.xml b/modules/jooby-mongodb/pom.xml index 76191319a0..3631face83 100644 --- a/modules/jooby-mongodb/pom.xml +++ b/modules/jooby-mongodb/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-morphia/README.md b/modules/jooby-morphia/README.md index 1ba60c26d4..7d89cb63d0 100644 --- a/modules/jooby-morphia/README.md +++ b/modules/jooby-morphia/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-morphia/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-morphia/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-morphia.svg)](https://javadoc.io/doc/org.jooby/jooby-morphia/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-morphia/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-morphia/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-morphia.svg)](https://javadoc.io/doc/org.jooby/jooby-morphia/1.6.5) [![jooby-morphia website](https://img.shields.io/badge/jooby-morphia-brightgreen.svg)](http://jooby.org/doc/morphia) # morphia @@ -16,7 +16,7 @@ Extends the [mongodb](https://github.com/jooby-project/jooby/tree/master/jooby-m org.jooby jooby-morphia - 1.6.4 + 1.6.5 ``` diff --git a/modules/jooby-morphia/pom.xml b/modules/jooby-morphia/pom.xml index c66785f4c7..03cdf3780b 100644 --- a/modules/jooby-morphia/pom.xml +++ b/modules/jooby-morphia/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-neo4j/README.md b/modules/jooby-neo4j/README.md index 2d3c87cd12..352d9d94b0 100644 --- a/modules/jooby-neo4j/README.md +++ b/modules/jooby-neo4j/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-neo4j/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-neo4j/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-neo4j.svg)](https://javadoc.io/doc/org.jooby/jooby-neo4j/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-neo4j/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-neo4j/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-neo4j.svg)](https://javadoc.io/doc/org.jooby/jooby-neo4j/1.6.5) [![jooby-neo4j website](https://img.shields.io/badge/jooby-neo4j-brightgreen.svg)](http://jooby.org/doc/neo4j) # neo4j @@ -13,7 +13,7 @@ This module give you access to neo4j and org.jooby jooby-neo4j - 1.6.4 + 1.6.5 ``` @@ -176,7 +176,7 @@ A [Session.Store](/apidocs/org/jooby/neo4j/Neo4jSessionStore) powered by org.jooby jooby-neo4j - 1.6.4 + 1.6.5 ``` diff --git a/modules/jooby-neo4j/pom.xml b/modules/jooby-neo4j/pom.xml index 96f73938a5..0a2456674f 100644 --- a/modules/jooby-neo4j/pom.xml +++ b/modules/jooby-neo4j/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-netty/README.md b/modules/jooby-netty/README.md index c8f78ae964..750f6c2edb 100644 --- a/modules/jooby-netty/README.md +++ b/modules/jooby-netty/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-netty/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-netty/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-netty.svg)](https://javadoc.io/doc/org.jooby/jooby-netty/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-netty/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-netty/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-netty.svg)](https://javadoc.io/doc/org.jooby/jooby-netty/1.6.5) [![jooby-netty website](https://img.shields.io/badge/jooby-netty-brightgreen.svg)](http://jooby.org/doc/netty) # netty @@ -15,7 +15,7 @@ org.jooby jooby-netty - 1.6.4 + 1.6.5 ``` diff --git a/modules/jooby-netty/pom.xml b/modules/jooby-netty/pom.xml index 56efd04461..9a2df6145a 100644 --- a/modules/jooby-netty/pom.xml +++ b/modules/jooby-netty/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-pac4j/README.md b/modules/jooby-pac4j/README.md index bdfd9fcd07..86400e4697 100644 --- a/modules/jooby-pac4j/README.md +++ b/modules/jooby-pac4j/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-pac4j/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-pac4j/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-pac4j.svg)](https://javadoc.io/doc/org.jooby/jooby-pac4j/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-pac4j/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-pac4j/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-pac4j.svg)](https://javadoc.io/doc/org.jooby/jooby-pac4j/1.6.5) [![jooby-pac4j website](https://img.shields.io/badge/jooby-pac4j-brightgreen.svg)](http://jooby.org/doc/pac4j) # pac4j @@ -22,7 +22,7 @@ Authentication module via: [Pac4j 1.x](https://github.com/pac4j/pac4j). org.jooby jooby-pac4j - 1.6.4 + 1.6.5 ``` diff --git a/modules/jooby-pac4j/pom.xml b/modules/jooby-pac4j/pom.xml index 2ad14390d6..bc8b76a6c3 100644 --- a/modules/jooby-pac4j/pom.xml +++ b/modules/jooby-pac4j/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-pac4j2/README.md b/modules/jooby-pac4j2/README.md index 2efb7a4512..2e9b5f8b3b 100644 --- a/modules/jooby-pac4j2/README.md +++ b/modules/jooby-pac4j2/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-pac4j2/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-pac4j2/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-pac4j2.svg)](https://javadoc.io/doc/org.jooby/jooby-pac4j2/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-pac4j2/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-pac4j2/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-pac4j2.svg)](https://javadoc.io/doc/org.jooby/jooby-pac4j2/1.6.5) [![jooby-pac4j2 website](https://img.shields.io/badge/jooby-pac4j2-brightgreen.svg)](http://jooby.org/doc/pac4j2) # pac4j module @@ -19,7 +19,7 @@ Authentication module via: Pac4j 2.x org.jooby jooby-pac4j2 - 1.6.4 + 1.6.5 ``` diff --git a/modules/jooby-pac4j2/pom.xml b/modules/jooby-pac4j2/pom.xml index 4bd83ed04b..9539b84381 100644 --- a/modules/jooby-pac4j2/pom.xml +++ b/modules/jooby-pac4j2/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-pebble/README.md b/modules/jooby-pebble/README.md index 835c6edb0b..b4001e2aef 100644 --- a/modules/jooby-pebble/README.md +++ b/modules/jooby-pebble/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-pebble/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-pebble/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-pebble.svg)](https://javadoc.io/doc/org.jooby/jooby-pebble/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-pebble/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-pebble/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-pebble.svg)](https://javadoc.io/doc/org.jooby/jooby-pebble/1.6.5) [![jooby-pebble website](https://img.shields.io/badge/jooby-pebble-brightgreen.svg)](http://jooby.org/doc/pebble) # pebble @@ -16,7 +16,7 @@ org.jooby jooby-pebble - 1.6.4 + 1.6.5 ``` diff --git a/modules/jooby-pebble/pom.xml b/modules/jooby-pebble/pom.xml index 24f21f3f85..4bc58c1030 100644 --- a/modules/jooby-pebble/pom.xml +++ b/modules/jooby-pebble/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-quartz/README.md b/modules/jooby-quartz/README.md index 3ca3925ffa..b3c12cedcd 100644 --- a/modules/jooby-quartz/README.md +++ b/modules/jooby-quartz/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-quartz/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-quartz/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-quartz.svg)](https://javadoc.io/doc/org.jooby/jooby-quartz/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-quartz/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-quartz/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-quartz.svg)](https://javadoc.io/doc/org.jooby/jooby-quartz/1.6.5) [![jooby-quartz website](https://img.shields.io/badge/jooby-quartz-brightgreen.svg)](http://jooby.org/doc/quartz) # quartz @@ -11,7 +11,7 @@ Cron triggers, job scheduling and async processing via [Quartz](http://quartz-sc org.jooby jooby-quartz - 1.6.4 + 1.6.5 ``` diff --git a/modules/jooby-quartz/pom.xml b/modules/jooby-quartz/pom.xml index 8743e34b6b..9129a7ed43 100644 --- a/modules/jooby-quartz/pom.xml +++ b/modules/jooby-quartz/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-querydsl/README.md b/modules/jooby-querydsl/README.md index 1d76e306d4..eed4db542c 100644 --- a/modules/jooby-querydsl/README.md +++ b/modules/jooby-querydsl/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-querydsl/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-querydsl/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-querydsl.svg)](https://javadoc.io/doc/org.jooby/jooby-querydsl/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-querydsl/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-querydsl/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-querydsl.svg)](https://javadoc.io/doc/org.jooby/jooby-querydsl/1.6.5) [![jooby-querydsl website](https://img.shields.io/badge/jooby-querydsl-brightgreen.svg)](http://jooby.org/doc/querydsl) # queryDSL @@ -17,7 +17,7 @@ SQL abstraction provided by QueryDSL using org.jooby jooby-querydsl - 1.6.4 + 1.6.5 ``` diff --git a/modules/jooby-querydsl/pom.xml b/modules/jooby-querydsl/pom.xml index cdbbfb8636..c646d9110a 100644 --- a/modules/jooby-querydsl/pom.xml +++ b/modules/jooby-querydsl/pom.xml @@ -4,7 +4,7 @@ modules org.jooby - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-reactor/README.md b/modules/jooby-reactor/README.md index f51be748a1..8dade8d2b0 100644 --- a/modules/jooby-reactor/README.md +++ b/modules/jooby-reactor/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-reactor/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-reactor/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-reactor.svg)](https://javadoc.io/doc/org.jooby/jooby-reactor/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-reactor/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-reactor/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-reactor.svg)](https://javadoc.io/doc/org.jooby/jooby-reactor/1.6.5) [![jooby-reactor website](https://img.shields.io/badge/jooby-reactor-brightgreen.svg)](http://jooby.org/doc/reactor) # reactor @@ -11,7 +11,7 @@ org.jooby jooby-reactor - 1.6.4 + 1.6.5 ``` diff --git a/modules/jooby-reactor/pom.xml b/modules/jooby-reactor/pom.xml index bd1ba9e3f7..62ca038ebf 100644 --- a/modules/jooby-reactor/pom.xml +++ b/modules/jooby-reactor/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-requery/README.md b/modules/jooby-requery/README.md index c592d9c6b7..3c192191db 100644 --- a/modules/jooby-requery/README.md +++ b/modules/jooby-requery/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-requery/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-requery/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-requery.svg)](https://javadoc.io/doc/org.jooby/jooby-requery/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-requery/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-requery/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-requery.svg)](https://javadoc.io/doc/org.jooby/jooby-requery/1.6.5) [![jooby-requery website](https://img.shields.io/badge/jooby-requery-brightgreen.svg)](http://jooby.org/doc/requery) # requery @@ -15,7 +15,7 @@ Safe, clean and efficient database access via Reactive Ext org.jooby jooby-rxjava - 1.6.4 + 1.6.5 ``` diff --git a/modules/jooby-rxjava/pom.xml b/modules/jooby-rxjava/pom.xml index dcd9fc198f..6b6f8a06d5 100644 --- a/modules/jooby-rxjava/pom.xml +++ b/modules/jooby-rxjava/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-scanner/README.md b/modules/jooby-scanner/README.md index 99725f8fe2..d70e91a186 100644 --- a/modules/jooby-scanner/README.md +++ b/modules/jooby-scanner/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-scanner/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-scanner/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-scanner.svg)](https://javadoc.io/doc/org.jooby/jooby-scanner/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-scanner/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-scanner/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-scanner.svg)](https://javadoc.io/doc/org.jooby/jooby-scanner/1.6.5) [![jooby-scanner website](https://img.shields.io/badge/jooby-scanner-brightgreen.svg)](http://jooby.org/doc/scanner) # scanner @@ -13,7 +13,7 @@ This module provides `class-path` scanning services for `MVC routes`, `services` org.jooby jooby-scanner - 1.6.4 + 1.6.5 ``` diff --git a/modules/jooby-scanner/pom.xml b/modules/jooby-scanner/pom.xml index 3e13c36517..cdf97e53cc 100644 --- a/modules/jooby-scanner/pom.xml +++ b/modules/jooby-scanner/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-servlet/README.md b/modules/jooby-servlet/README.md index 1acb7b4266..47c92bf15d 100644 --- a/modules/jooby-servlet/README.md +++ b/modules/jooby-servlet/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-servlet/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-servlet/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-servlet.svg)](https://javadoc.io/doc/org.jooby/jooby-servlet/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-servlet/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-servlet/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-servlet.svg)](https://javadoc.io/doc/org.jooby/jooby-servlet/1.6.5) [![jooby-servlet website](https://img.shields.io/badge/jooby-servlet-brightgreen.svg)](http://jooby.org/doc/servlet) # servlets diff --git a/modules/jooby-servlet/pom.xml b/modules/jooby-servlet/pom.xml index 09981be746..b81c9c9221 100644 --- a/modules/jooby-servlet/pom.xml +++ b/modules/jooby-servlet/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-sitemap/README.md b/modules/jooby-sitemap/README.md index ba12dc25d6..cdfdf0df99 100644 --- a/modules/jooby-sitemap/README.md +++ b/modules/jooby-sitemap/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-sitemap/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-sitemap/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-sitemap.svg)](https://javadoc.io/doc/org.jooby/jooby-sitemap/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-sitemap/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-sitemap/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-sitemap.svg)](https://javadoc.io/doc/org.jooby/jooby-sitemap/1.6.5) [![jooby-sitemap website](https://img.shields.io/badge/jooby-sitemap-brightgreen.svg)](http://jooby.org/doc/sitemap) # sitemap @@ -15,7 +15,7 @@ Generate sitemap.xml files org.jooby jooby-sitemap - 1.6.4 + 1.6.5 ``` diff --git a/modules/jooby-sitemap/pom.xml b/modules/jooby-sitemap/pom.xml index 38f365634c..118e6858e5 100644 --- a/modules/jooby-sitemap/pom.xml +++ b/modules/jooby-sitemap/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-spymemcached/README.md b/modules/jooby-spymemcached/README.md index bee8012d80..4c17c4d45d 100644 --- a/modules/jooby-spymemcached/README.md +++ b/modules/jooby-spymemcached/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-spymemcached/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-spymemcached/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-spymemcached.svg)](https://javadoc.io/doc/org.jooby/jooby-spymemcached/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-spymemcached/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-spymemcached/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-spymemcached.svg)](https://javadoc.io/doc/org.jooby/jooby-spymemcached/1.6.5) [![jooby-spymemcached website](https://img.shields.io/badge/jooby-spymemcached-brightgreen.svg)](http://jooby.org/doc/spymemcached) # spymemcached @@ -15,7 +15,7 @@ Provides memcached access via [SpyMemcached](https://github.com/dustin/java-memc org.jooby jooby-spymemcached - 1.6.4 + 1.6.5 ``` @@ -65,7 +65,7 @@ or programmatically: org.jooby jooby-spymemcached - 1.6.4 + 1.6.5 ``` diff --git a/modules/jooby-spymemcached/pom.xml b/modules/jooby-spymemcached/pom.xml index 970c9becf8..9c12d1cc98 100644 --- a/modules/jooby-spymemcached/pom.xml +++ b/modules/jooby-spymemcached/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-thymeleaf/README.md b/modules/jooby-thymeleaf/README.md index 0cdb9fd684..47b30a9d64 100644 --- a/modules/jooby-thymeleaf/README.md +++ b/modules/jooby-thymeleaf/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-thymeleaf/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-thymeleaf/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-thymeleaf.svg)](https://javadoc.io/doc/org.jooby/jooby-thymeleaf/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-thymeleaf/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-thymeleaf/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-thymeleaf.svg)](https://javadoc.io/doc/org.jooby/jooby-thymeleaf/1.6.5) [![jooby-thymeleaf website](https://img.shields.io/badge/jooby-thymeleaf-brightgreen.svg)](http://jooby.org/doc/thymeleaf) # thymeleaf @@ -11,7 +11,7 @@ org.jooby jooby-thymeleaf - 1.6.4 + 1.6.5 ``` diff --git a/modules/jooby-thymeleaf/pom.xml b/modules/jooby-thymeleaf/pom.xml index 6bdd855ae5..a6bbe699a7 100644 --- a/modules/jooby-thymeleaf/pom.xml +++ b/modules/jooby-thymeleaf/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-unbescape/README.md b/modules/jooby-unbescape/README.md index cec70d1b64..123c8aa1c7 100644 --- a/modules/jooby-unbescape/README.md +++ b/modules/jooby-unbescape/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-unbescape/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-unbescape/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-unbescape.svg)](https://javadoc.io/doc/org.jooby/jooby-unbescape/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-unbescape/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-unbescape/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-unbescape.svg)](https://javadoc.io/doc/org.jooby/jooby-unbescape/1.6.5) [![jooby-unbescape website](https://img.shields.io/badge/jooby-unbescape-brightgreen.svg)](http://jooby.org/doc/unbescape) # unbescape @@ -11,7 +11,7 @@ org.jooby jooby-unbescape - 1.6.4 + 1.6.5 ``` diff --git a/modules/jooby-unbescape/pom.xml b/modules/jooby-unbescape/pom.xml index 89aa90a93a..88820db078 100644 --- a/modules/jooby-unbescape/pom.xml +++ b/modules/jooby-unbescape/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-undertow/README.md b/modules/jooby-undertow/README.md index 9b14d303e3..e57782be55 100644 --- a/modules/jooby-undertow/README.md +++ b/modules/jooby-undertow/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-undertow/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-undertow/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-undertow.svg)](https://javadoc.io/doc/org.jooby/jooby-undertow/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-undertow/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-undertow/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-undertow.svg)](https://javadoc.io/doc/org.jooby/jooby-undertow/1.6.5) [![jooby-undertow website](https://img.shields.io/badge/jooby-undertow-brightgreen.svg)](http://jooby.org/doc/undertow) # undertow @@ -15,7 +15,7 @@ org.jooby jooby-undertow - 1.6.4 + 1.6.5 ``` diff --git a/modules/jooby-undertow/pom.xml b/modules/jooby-undertow/pom.xml index 5b634fbdc1..07c3f59659 100644 --- a/modules/jooby-undertow/pom.xml +++ b/modules/jooby-undertow/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-whoops/README.md b/modules/jooby-whoops/README.md index 3cce33104c..4a0a6e767f 100644 --- a/modules/jooby-whoops/README.md +++ b/modules/jooby-whoops/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-whoops/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-whoops/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-whoops.svg)](https://javadoc.io/doc/org.jooby/jooby-whoops/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-whoops/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-whoops/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-whoops.svg)](https://javadoc.io/doc/org.jooby/jooby-whoops/1.6.5) [![jooby-whoops website](https://img.shields.io/badge/jooby-whoops-brightgreen.svg)](http://jooby.org/doc/whoops) # whoops @@ -15,7 +15,7 @@ Pretty error page that helps you debug your web application. org.jooby jooby-whoops - 1.6.4 + 1.6.5 ``` diff --git a/modules/jooby-whoops/pom.xml b/modules/jooby-whoops/pom.xml index 96218974a7..077c0a9030 100644 --- a/modules/jooby-whoops/pom.xml +++ b/modules/jooby-whoops/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/jooby-yasson/README.md b/modules/jooby-yasson/README.md index 673b1b45a1..5b7e5c09d9 100644 --- a/modules/jooby-yasson/README.md +++ b/modules/jooby-yasson/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-yasson/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-yasson/1.6.4) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-yasson.svg)](https://javadoc.io/doc/org.jooby/jooby-yasson/1.6.4) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-yasson/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-yasson/1.6.5) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-yasson.svg)](https://javadoc.io/doc/org.jooby/jooby-yasson/1.6.5) [![jooby-yasson website](https://img.shields.io/badge/jooby-yasson-brightgreen.svg)](http://jooby.org/doc/yasson) # yasson @@ -17,7 +17,7 @@ JSON support via [yasson](https://github.com/eclipse-ee4j/yasson) library. org.jooby jooby-yasson - 1.6.4 + 1.6.5 ``` diff --git a/modules/jooby-yasson/pom.xml b/modules/jooby-yasson/pom.xml index 0349fd8d73..634b828976 100644 --- a/modules/jooby-yasson/pom.xml +++ b/modules/jooby-yasson/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5-SNAPSHOT + 1.6.5 4.0.0 diff --git a/modules/pom.xml b/modules/pom.xml index 11405a910f..15b7f8d754 100644 --- a/modules/pom.xml +++ b/modules/pom.xml @@ -6,7 +6,7 @@ org.jooby jooby-project - 1.6.5-SNAPSHOT + 1.6.5 modules diff --git a/pom.xml b/pom.xml index a7dd193c54..e21a816740 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ 4.0.0 org.jooby jooby-project - 1.6.5-SNAPSHOT + 1.6.5 pom jooby-project From c559d2013e647dd74048f860d918cd0f86cb5937 Mon Sep 17 00:00:00 2001 From: Edgar Espina Date: Tue, 26 Nov 2019 01:12:26 -0300 Subject: [PATCH 82/93] prepare for next development cycle --- jooby/pom.xml | 2 +- modules/coverage-report/pom.xml | 2 +- modules/jooby-akka/pom.xml | 2 +- modules/jooby-apitool/pom.xml | 2 +- modules/jooby-archetype/pom.xml | 2 +- modules/jooby-assets-autoprefixer/pom.xml | 2 +- modules/jooby-assets-babel/pom.xml | 2 +- modules/jooby-assets-clean-css/pom.xml | 2 +- modules/jooby-assets-closure-compiler/pom.xml | 2 +- modules/jooby-assets-csslint/pom.xml | 2 +- modules/jooby-assets-j2v8/pom.xml | 2 +- modules/jooby-assets-jscs/pom.xml | 2 +- modules/jooby-assets-jshint/pom.xml | 2 +- modules/jooby-assets-less/pom.xml | 2 +- modules/jooby-assets-less4j/pom.xml | 2 +- modules/jooby-assets-ng-annotate/pom.xml | 2 +- modules/jooby-assets-nodejs/pom.xml | 2 +- modules/jooby-assets-requirejs/pom.xml | 2 +- modules/jooby-assets-rollup/pom.xml | 2 +- modules/jooby-assets-sass/pom.xml | 2 +- modules/jooby-assets-svg-sprites/pom.xml | 2 +- modules/jooby-assets-svg-symbol/pom.xml | 2 +- modules/jooby-assets-uglify/pom.xml | 2 +- modules/jooby-assets-yui-compressor/pom.xml | 2 +- modules/jooby-assets/pom.xml | 2 +- modules/jooby-aws/pom.xml | 2 +- modules/jooby-banner/pom.xml | 2 +- modules/jooby-caffeine/pom.xml | 2 +- modules/jooby-camel/pom.xml | 2 +- modules/jooby-cassandra/pom.xml | 2 +- modules/jooby-commons-email/pom.xml | 2 +- modules/jooby-consul/pom.xml | 2 +- modules/jooby-couchbase/pom.xml | 2 +- modules/jooby-crash/pom.xml | 2 +- modules/jooby-csl/pom.xml | 2 +- modules/jooby-dist/pom.xml | 2 +- modules/jooby-ebean/pom.xml | 2 +- modules/jooby-ehcache/pom.xml | 2 +- modules/jooby-elasticsearch/pom.xml | 2 +- modules/jooby-eventbus/pom.xml | 2 +- modules/jooby-executor/pom.xml | 2 +- modules/jooby-exposed/pom.xml | 2 +- modules/jooby-filewatcher/pom.xml | 2 +- modules/jooby-flyway/pom.xml | 2 +- modules/jooby-frontend/pom.xml | 2 +- modules/jooby-ftl/pom.xml | 2 +- modules/jooby-gradle-plugin/pom.xml | 2 +- modules/jooby-gson/pom.xml | 2 +- modules/jooby-guava-cache/pom.xml | 2 +- modules/jooby-hazelcast/pom.xml | 2 +- modules/jooby-hbm/pom.xml | 2 +- modules/jooby-hbs/pom.xml | 2 +- modules/jooby-hbv/pom.xml | 2 +- modules/jooby-jackson/pom.xml | 2 +- modules/jooby-jade/pom.xml | 2 +- modules/jooby-jdbc/pom.xml | 2 +- modules/jooby-jdbi/pom.xml | 2 +- modules/jooby-jdbi3/pom.xml | 2 +- modules/jooby-jedis/pom.xml | 2 +- modules/jooby-jetty/pom.xml | 2 +- modules/jooby-jongo/pom.xml | 2 +- modules/jooby-jooq/pom.xml | 2 +- modules/jooby-lang-kotlin/pom.xml | 2 +- modules/jooby-livereload/pom.xml | 2 +- modules/jooby-maven-plugin/pom.xml | 2 +- modules/jooby-metrics/pom.xml | 2 +- modules/jooby-micrometer/pom.xml | 2 +- modules/jooby-mongodb-rx/pom.xml | 2 +- modules/jooby-mongodb/pom.xml | 2 +- modules/jooby-morphia/pom.xml | 2 +- modules/jooby-neo4j/pom.xml | 2 +- modules/jooby-netty/pom.xml | 2 +- modules/jooby-pac4j/pom.xml | 2 +- modules/jooby-pac4j2/pom.xml | 2 +- modules/jooby-pebble/pom.xml | 2 +- modules/jooby-quartz/pom.xml | 2 +- modules/jooby-querydsl/pom.xml | 2 +- modules/jooby-reactor/pom.xml | 2 +- modules/jooby-requery/pom.xml | 2 +- modules/jooby-rocker/pom.xml | 2 +- modules/jooby-run/pom.xml | 2 +- modules/jooby-rxjava-jdbc/pom.xml | 2 +- modules/jooby-rxjava/pom.xml | 2 +- modules/jooby-scanner/pom.xml | 2 +- modules/jooby-servlet/pom.xml | 2 +- modules/jooby-sitemap/pom.xml | 2 +- modules/jooby-spymemcached/pom.xml | 2 +- modules/jooby-thymeleaf/pom.xml | 2 +- modules/jooby-unbescape/pom.xml | 2 +- modules/jooby-undertow/pom.xml | 2 +- modules/jooby-whoops/pom.xml | 2 +- modules/jooby-yasson/pom.xml | 2 +- modules/pom.xml | 2 +- pom.xml | 2 +- 94 files changed, 94 insertions(+), 94 deletions(-) diff --git a/jooby/pom.xml b/jooby/pom.xml index d4444bc104..4b8d88b213 100644 --- a/jooby/pom.xml +++ b/jooby/pom.xml @@ -6,7 +6,7 @@ org.jooby jooby-project - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/coverage-report/pom.xml b/modules/coverage-report/pom.xml index 41a3389bb2..173ecbcc30 100644 --- a/modules/coverage-report/pom.xml +++ b/modules/coverage-report/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-akka/pom.xml b/modules/jooby-akka/pom.xml index 58c62fa01a..c3cdcea7e9 100644 --- a/modules/jooby-akka/pom.xml +++ b/modules/jooby-akka/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-apitool/pom.xml b/modules/jooby-apitool/pom.xml index e2a110f26c..690dc54f5a 100644 --- a/modules/jooby-apitool/pom.xml +++ b/modules/jooby-apitool/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-archetype/pom.xml b/modules/jooby-archetype/pom.xml index e37bf3701f..965af71c1d 100644 --- a/modules/jooby-archetype/pom.xml +++ b/modules/jooby-archetype/pom.xml @@ -7,7 +7,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT jooby-archetype diff --git a/modules/jooby-assets-autoprefixer/pom.xml b/modules/jooby-assets-autoprefixer/pom.xml index 0e62d2b8a0..ebce1d4a08 100644 --- a/modules/jooby-assets-autoprefixer/pom.xml +++ b/modules/jooby-assets-autoprefixer/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-babel/pom.xml b/modules/jooby-assets-babel/pom.xml index aef10b0334..6c63b4df72 100644 --- a/modules/jooby-assets-babel/pom.xml +++ b/modules/jooby-assets-babel/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-clean-css/pom.xml b/modules/jooby-assets-clean-css/pom.xml index ff73e158dd..c0661aa7f6 100644 --- a/modules/jooby-assets-clean-css/pom.xml +++ b/modules/jooby-assets-clean-css/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-closure-compiler/pom.xml b/modules/jooby-assets-closure-compiler/pom.xml index 32a858bb00..ccd5695f11 100644 --- a/modules/jooby-assets-closure-compiler/pom.xml +++ b/modules/jooby-assets-closure-compiler/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-csslint/pom.xml b/modules/jooby-assets-csslint/pom.xml index 9aad1bb923..6461b933ba 100644 --- a/modules/jooby-assets-csslint/pom.xml +++ b/modules/jooby-assets-csslint/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-j2v8/pom.xml b/modules/jooby-assets-j2v8/pom.xml index 33ade9f80b..a6e0381ae3 100644 --- a/modules/jooby-assets-j2v8/pom.xml +++ b/modules/jooby-assets-j2v8/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-jscs/pom.xml b/modules/jooby-assets-jscs/pom.xml index e991973265..90ed18e29e 100644 --- a/modules/jooby-assets-jscs/pom.xml +++ b/modules/jooby-assets-jscs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-jshint/pom.xml b/modules/jooby-assets-jshint/pom.xml index 4f12ec5353..6bc8b74bcc 100644 --- a/modules/jooby-assets-jshint/pom.xml +++ b/modules/jooby-assets-jshint/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-less/pom.xml b/modules/jooby-assets-less/pom.xml index aff4cc16d2..af16916b1d 100644 --- a/modules/jooby-assets-less/pom.xml +++ b/modules/jooby-assets-less/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-less4j/pom.xml b/modules/jooby-assets-less4j/pom.xml index 4afc722979..68fc47d77b 100644 --- a/modules/jooby-assets-less4j/pom.xml +++ b/modules/jooby-assets-less4j/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-ng-annotate/pom.xml b/modules/jooby-assets-ng-annotate/pom.xml index d9a3b9f25c..ef5ddd6f1b 100644 --- a/modules/jooby-assets-ng-annotate/pom.xml +++ b/modules/jooby-assets-ng-annotate/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-nodejs/pom.xml b/modules/jooby-assets-nodejs/pom.xml index 074c0c7c66..3a64a38141 100644 --- a/modules/jooby-assets-nodejs/pom.xml +++ b/modules/jooby-assets-nodejs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-requirejs/pom.xml b/modules/jooby-assets-requirejs/pom.xml index 2152aad888..0089e180d3 100644 --- a/modules/jooby-assets-requirejs/pom.xml +++ b/modules/jooby-assets-requirejs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-rollup/pom.xml b/modules/jooby-assets-rollup/pom.xml index b669cce29d..7a1067770f 100644 --- a/modules/jooby-assets-rollup/pom.xml +++ b/modules/jooby-assets-rollup/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-sass/pom.xml b/modules/jooby-assets-sass/pom.xml index 3b929193d7..6bc3ea85d5 100644 --- a/modules/jooby-assets-sass/pom.xml +++ b/modules/jooby-assets-sass/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-svg-sprites/pom.xml b/modules/jooby-assets-svg-sprites/pom.xml index 5f92eb2716..fcf7a77603 100644 --- a/modules/jooby-assets-svg-sprites/pom.xml +++ b/modules/jooby-assets-svg-sprites/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-svg-symbol/pom.xml b/modules/jooby-assets-svg-symbol/pom.xml index 5141e903a8..f79d41290c 100644 --- a/modules/jooby-assets-svg-symbol/pom.xml +++ b/modules/jooby-assets-svg-symbol/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-uglify/pom.xml b/modules/jooby-assets-uglify/pom.xml index d8f3f8fa18..3ecbe34039 100644 --- a/modules/jooby-assets-uglify/pom.xml +++ b/modules/jooby-assets-uglify/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-yui-compressor/pom.xml b/modules/jooby-assets-yui-compressor/pom.xml index 0234686a23..a7eb6ccae1 100644 --- a/modules/jooby-assets-yui-compressor/pom.xml +++ b/modules/jooby-assets-yui-compressor/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets/pom.xml b/modules/jooby-assets/pom.xml index 5c04ed5dd3..e127b8e367 100644 --- a/modules/jooby-assets/pom.xml +++ b/modules/jooby-assets/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-aws/pom.xml b/modules/jooby-aws/pom.xml index 51fcdc118a..a78c05b1f8 100644 --- a/modules/jooby-aws/pom.xml +++ b/modules/jooby-aws/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-banner/pom.xml b/modules/jooby-banner/pom.xml index 6eec1bde26..9e254f01cf 100644 --- a/modules/jooby-banner/pom.xml +++ b/modules/jooby-banner/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-caffeine/pom.xml b/modules/jooby-caffeine/pom.xml index 00e88735b0..2a0a54d6b3 100644 --- a/modules/jooby-caffeine/pom.xml +++ b/modules/jooby-caffeine/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-camel/pom.xml b/modules/jooby-camel/pom.xml index 7678832c03..ce449aca59 100644 --- a/modules/jooby-camel/pom.xml +++ b/modules/jooby-camel/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-cassandra/pom.xml b/modules/jooby-cassandra/pom.xml index 8a4bcc80ec..a95c998025 100644 --- a/modules/jooby-cassandra/pom.xml +++ b/modules/jooby-cassandra/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-commons-email/pom.xml b/modules/jooby-commons-email/pom.xml index bcbdb99694..4c0b118079 100644 --- a/modules/jooby-commons-email/pom.xml +++ b/modules/jooby-commons-email/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-consul/pom.xml b/modules/jooby-consul/pom.xml index 2c4c869888..5879847222 100644 --- a/modules/jooby-consul/pom.xml +++ b/modules/jooby-consul/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-couchbase/pom.xml b/modules/jooby-couchbase/pom.xml index c9e76588e2..155a59eaef 100644 --- a/modules/jooby-couchbase/pom.xml +++ b/modules/jooby-couchbase/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-crash/pom.xml b/modules/jooby-crash/pom.xml index f734f105b3..f4ea29ed6f 100644 --- a/modules/jooby-crash/pom.xml +++ b/modules/jooby-crash/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-csl/pom.xml b/modules/jooby-csl/pom.xml index 0281a1a0af..59bd2180e4 100644 --- a/modules/jooby-csl/pom.xml +++ b/modules/jooby-csl/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-dist/pom.xml b/modules/jooby-dist/pom.xml index d7a5a485ba..9a233a76de 100644 --- a/modules/jooby-dist/pom.xml +++ b/modules/jooby-dist/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-ebean/pom.xml b/modules/jooby-ebean/pom.xml index 00dfe4ed5c..c333769ea2 100644 --- a/modules/jooby-ebean/pom.xml +++ b/modules/jooby-ebean/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-ehcache/pom.xml b/modules/jooby-ehcache/pom.xml index 5933e23573..22d7f2c214 100644 --- a/modules/jooby-ehcache/pom.xml +++ b/modules/jooby-ehcache/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-elasticsearch/pom.xml b/modules/jooby-elasticsearch/pom.xml index 1598aad4fc..d26fe0f160 100644 --- a/modules/jooby-elasticsearch/pom.xml +++ b/modules/jooby-elasticsearch/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-eventbus/pom.xml b/modules/jooby-eventbus/pom.xml index 6dde5c4d64..05e1595a4f 100644 --- a/modules/jooby-eventbus/pom.xml +++ b/modules/jooby-eventbus/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-executor/pom.xml b/modules/jooby-executor/pom.xml index 62ec7b807d..fc62163257 100644 --- a/modules/jooby-executor/pom.xml +++ b/modules/jooby-executor/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-exposed/pom.xml b/modules/jooby-exposed/pom.xml index 41e8c111a4..377129a596 100644 --- a/modules/jooby-exposed/pom.xml +++ b/modules/jooby-exposed/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-filewatcher/pom.xml b/modules/jooby-filewatcher/pom.xml index 76f196fbe5..d793dc8678 100644 --- a/modules/jooby-filewatcher/pom.xml +++ b/modules/jooby-filewatcher/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-flyway/pom.xml b/modules/jooby-flyway/pom.xml index 0072162aa5..e0207ec1a8 100644 --- a/modules/jooby-flyway/pom.xml +++ b/modules/jooby-flyway/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-frontend/pom.xml b/modules/jooby-frontend/pom.xml index 4173e837c1..c38bf7b5d5 100644 --- a/modules/jooby-frontend/pom.xml +++ b/modules/jooby-frontend/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-ftl/pom.xml b/modules/jooby-ftl/pom.xml index 5a6efd57b4..557b3f65f7 100644 --- a/modules/jooby-ftl/pom.xml +++ b/modules/jooby-ftl/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-gradle-plugin/pom.xml b/modules/jooby-gradle-plugin/pom.xml index ae4778360a..3af7d45b13 100644 --- a/modules/jooby-gradle-plugin/pom.xml +++ b/modules/jooby-gradle-plugin/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-gson/pom.xml b/modules/jooby-gson/pom.xml index 90778a4f03..727e187dd8 100644 --- a/modules/jooby-gson/pom.xml +++ b/modules/jooby-gson/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-guava-cache/pom.xml b/modules/jooby-guava-cache/pom.xml index 0827718a8b..b922b4f561 100644 --- a/modules/jooby-guava-cache/pom.xml +++ b/modules/jooby-guava-cache/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-hazelcast/pom.xml b/modules/jooby-hazelcast/pom.xml index e2b2714b54..e9483df792 100644 --- a/modules/jooby-hazelcast/pom.xml +++ b/modules/jooby-hazelcast/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-hbm/pom.xml b/modules/jooby-hbm/pom.xml index e2e6c44e1b..54230df51e 100644 --- a/modules/jooby-hbm/pom.xml +++ b/modules/jooby-hbm/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-hbs/pom.xml b/modules/jooby-hbs/pom.xml index e5a9827d8e..83b0420d41 100644 --- a/modules/jooby-hbs/pom.xml +++ b/modules/jooby-hbs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-hbv/pom.xml b/modules/jooby-hbv/pom.xml index 1165286a01..0d4285d932 100644 --- a/modules/jooby-hbv/pom.xml +++ b/modules/jooby-hbv/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-jackson/pom.xml b/modules/jooby-jackson/pom.xml index 9c094a0ad0..cb28bfa0d3 100644 --- a/modules/jooby-jackson/pom.xml +++ b/modules/jooby-jackson/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-jade/pom.xml b/modules/jooby-jade/pom.xml index 77ea2eec22..60562894eb 100644 --- a/modules/jooby-jade/pom.xml +++ b/modules/jooby-jade/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-jdbc/pom.xml b/modules/jooby-jdbc/pom.xml index 084566411c..1e34beb081 100644 --- a/modules/jooby-jdbc/pom.xml +++ b/modules/jooby-jdbc/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-jdbi/pom.xml b/modules/jooby-jdbi/pom.xml index 3bcb6d3479..0525369e3f 100644 --- a/modules/jooby-jdbi/pom.xml +++ b/modules/jooby-jdbi/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-jdbi3/pom.xml b/modules/jooby-jdbi3/pom.xml index 43352ef62b..3d0ea91a1f 100644 --- a/modules/jooby-jdbi3/pom.xml +++ b/modules/jooby-jdbi3/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-jedis/pom.xml b/modules/jooby-jedis/pom.xml index b73e3ec084..2a1574887b 100644 --- a/modules/jooby-jedis/pom.xml +++ b/modules/jooby-jedis/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-jetty/pom.xml b/modules/jooby-jetty/pom.xml index 0cf888f7bf..9bd05947ac 100644 --- a/modules/jooby-jetty/pom.xml +++ b/modules/jooby-jetty/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-jongo/pom.xml b/modules/jooby-jongo/pom.xml index 9a2c6d699b..8858593249 100644 --- a/modules/jooby-jongo/pom.xml +++ b/modules/jooby-jongo/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-jooq/pom.xml b/modules/jooby-jooq/pom.xml index 57824a730a..679c147efd 100644 --- a/modules/jooby-jooq/pom.xml +++ b/modules/jooby-jooq/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-lang-kotlin/pom.xml b/modules/jooby-lang-kotlin/pom.xml index 55860d7710..e2011058a4 100644 --- a/modules/jooby-lang-kotlin/pom.xml +++ b/modules/jooby-lang-kotlin/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-livereload/pom.xml b/modules/jooby-livereload/pom.xml index ccf64181c9..ef257896c9 100644 --- a/modules/jooby-livereload/pom.xml +++ b/modules/jooby-livereload/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT jooby-livereload jooby-livereload diff --git a/modules/jooby-maven-plugin/pom.xml b/modules/jooby-maven-plugin/pom.xml index ea6da78e02..ca194ba9a4 100644 --- a/modules/jooby-maven-plugin/pom.xml +++ b/modules/jooby-maven-plugin/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-metrics/pom.xml b/modules/jooby-metrics/pom.xml index bdfd6e802a..ccc26121f0 100644 --- a/modules/jooby-metrics/pom.xml +++ b/modules/jooby-metrics/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-micrometer/pom.xml b/modules/jooby-micrometer/pom.xml index 7803d2be2e..b98944bb13 100644 --- a/modules/jooby-micrometer/pom.xml +++ b/modules/jooby-micrometer/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-mongodb-rx/pom.xml b/modules/jooby-mongodb-rx/pom.xml index 8e24bce31b..b4321f6287 100644 --- a/modules/jooby-mongodb-rx/pom.xml +++ b/modules/jooby-mongodb-rx/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-mongodb/pom.xml b/modules/jooby-mongodb/pom.xml index 3631face83..717003b3de 100644 --- a/modules/jooby-mongodb/pom.xml +++ b/modules/jooby-mongodb/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-morphia/pom.xml b/modules/jooby-morphia/pom.xml index 03cdf3780b..33cf498af8 100644 --- a/modules/jooby-morphia/pom.xml +++ b/modules/jooby-morphia/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-neo4j/pom.xml b/modules/jooby-neo4j/pom.xml index 0a2456674f..4e59868096 100644 --- a/modules/jooby-neo4j/pom.xml +++ b/modules/jooby-neo4j/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-netty/pom.xml b/modules/jooby-netty/pom.xml index 9a2df6145a..590c33ff90 100644 --- a/modules/jooby-netty/pom.xml +++ b/modules/jooby-netty/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-pac4j/pom.xml b/modules/jooby-pac4j/pom.xml index bc8b76a6c3..dc1cc0e9ac 100644 --- a/modules/jooby-pac4j/pom.xml +++ b/modules/jooby-pac4j/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-pac4j2/pom.xml b/modules/jooby-pac4j2/pom.xml index 9539b84381..fda48db044 100644 --- a/modules/jooby-pac4j2/pom.xml +++ b/modules/jooby-pac4j2/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-pebble/pom.xml b/modules/jooby-pebble/pom.xml index 4bc58c1030..c3a2ff042f 100644 --- a/modules/jooby-pebble/pom.xml +++ b/modules/jooby-pebble/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-quartz/pom.xml b/modules/jooby-quartz/pom.xml index 9129a7ed43..cc84c016b3 100644 --- a/modules/jooby-quartz/pom.xml +++ b/modules/jooby-quartz/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-querydsl/pom.xml b/modules/jooby-querydsl/pom.xml index c646d9110a..7e21ecb946 100644 --- a/modules/jooby-querydsl/pom.xml +++ b/modules/jooby-querydsl/pom.xml @@ -4,7 +4,7 @@ modules org.jooby - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-reactor/pom.xml b/modules/jooby-reactor/pom.xml index 62ca038ebf..4a2e1fc0d9 100644 --- a/modules/jooby-reactor/pom.xml +++ b/modules/jooby-reactor/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-requery/pom.xml b/modules/jooby-requery/pom.xml index c4d08c7111..e9d805fd6d 100644 --- a/modules/jooby-requery/pom.xml +++ b/modules/jooby-requery/pom.xml @@ -4,7 +4,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT jooby-requery requery module diff --git a/modules/jooby-rocker/pom.xml b/modules/jooby-rocker/pom.xml index 3693646c0b..e9c10ea942 100644 --- a/modules/jooby-rocker/pom.xml +++ b/modules/jooby-rocker/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT jooby-rocker jooby-rocker diff --git a/modules/jooby-run/pom.xml b/modules/jooby-run/pom.xml index 2e1f851bac..7d78148ef7 100644 --- a/modules/jooby-run/pom.xml +++ b/modules/jooby-run/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-rxjava-jdbc/pom.xml b/modules/jooby-rxjava-jdbc/pom.xml index 346fc5e982..dc0f4eb55b 100644 --- a/modules/jooby-rxjava-jdbc/pom.xml +++ b/modules/jooby-rxjava-jdbc/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-rxjava/pom.xml b/modules/jooby-rxjava/pom.xml index 6b6f8a06d5..3a8c796940 100644 --- a/modules/jooby-rxjava/pom.xml +++ b/modules/jooby-rxjava/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-scanner/pom.xml b/modules/jooby-scanner/pom.xml index cdf97e53cc..98b4c8d6ff 100644 --- a/modules/jooby-scanner/pom.xml +++ b/modules/jooby-scanner/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-servlet/pom.xml b/modules/jooby-servlet/pom.xml index b81c9c9221..2c04640c32 100644 --- a/modules/jooby-servlet/pom.xml +++ b/modules/jooby-servlet/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-sitemap/pom.xml b/modules/jooby-sitemap/pom.xml index 118e6858e5..8b2fc1324a 100644 --- a/modules/jooby-sitemap/pom.xml +++ b/modules/jooby-sitemap/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-spymemcached/pom.xml b/modules/jooby-spymemcached/pom.xml index 9c12d1cc98..f87018feed 100644 --- a/modules/jooby-spymemcached/pom.xml +++ b/modules/jooby-spymemcached/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-thymeleaf/pom.xml b/modules/jooby-thymeleaf/pom.xml index a6bbe699a7..1a58158e82 100644 --- a/modules/jooby-thymeleaf/pom.xml +++ b/modules/jooby-thymeleaf/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-unbescape/pom.xml b/modules/jooby-unbescape/pom.xml index 88820db078..b1e24c99fa 100644 --- a/modules/jooby-unbescape/pom.xml +++ b/modules/jooby-unbescape/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-undertow/pom.xml b/modules/jooby-undertow/pom.xml index 07c3f59659..ed4caac7a9 100644 --- a/modules/jooby-undertow/pom.xml +++ b/modules/jooby-undertow/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-whoops/pom.xml b/modules/jooby-whoops/pom.xml index 077c0a9030..55b3474ae8 100644 --- a/modules/jooby-whoops/pom.xml +++ b/modules/jooby-whoops/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/jooby-yasson/pom.xml b/modules/jooby-yasson/pom.xml index 634b828976..e568598f0e 100644 --- a/modules/jooby-yasson/pom.xml +++ b/modules/jooby-yasson/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.5 + 1.6.6-SNAPSHOT 4.0.0 diff --git a/modules/pom.xml b/modules/pom.xml index 15b7f8d754..6996c1ee3e 100644 --- a/modules/pom.xml +++ b/modules/pom.xml @@ -6,7 +6,7 @@ org.jooby jooby-project - 1.6.5 + 1.6.6-SNAPSHOT modules diff --git a/pom.xml b/pom.xml index e21a816740..e2a00ce900 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ 4.0.0 org.jooby jooby-project - 1.6.5 + 1.6.6-SNAPSHOT pom jooby-project From 5f5ea37a2f5e6a461cd26bdaca1ea1ee98371575 Mon Sep 17 00:00:00 2001 From: Alexander Reelsen Date: Tue, 3 Dec 2019 11:45:27 +0100 Subject: [PATCH 83/93] Upgrade to Elasticsearch 7.5.0 --- modules/jooby-bom/pom.xml | 2 +- pom.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/jooby-bom/pom.xml b/modules/jooby-bom/pom.xml index bfdbc70bf4..32678788ab 100644 --- a/modules/jooby-bom/pom.xml +++ b/modules/jooby-bom/pom.xml @@ -40,7 +40,7 @@ 11.11.2 11.18.2 2.10.5 - 7.2.0 + 7.5.0 5.1.3 2.3.28 1.6 diff --git a/pom.xml b/pom.xml index e2a00ce900..049b995914 100644 --- a/pom.xml +++ b/pom.xml @@ -3181,7 +3181,7 @@ org.eclipse.jdt.apt.processorOptions/defaultOverwrite=true 11.11.2 11.18.2 2.10.5 - 7.2.0 + 7.5.0 5.1.3 2.3.28 1.6 From 95a933281569fdc508ce022c950199f22e22495b Mon Sep 17 00:00:00 2001 From: Edgar Espina Date: Thu, 12 Dec 2019 15:07:14 -0300 Subject: [PATCH 84/93] [jooby 1.x - hibernate]: classcast exception when connection can't be acquire fix #1473 --- .../jooby/internal/hbm/OpenSessionInView.java | 22 +++++++++---- .../jooby/internal/hbm/RootUnitOfWork.java | 31 ++++++++++--------- 2 files changed, 33 insertions(+), 20 deletions(-) diff --git a/modules/jooby-hbm/src/main/java/org/jooby/internal/hbm/OpenSessionInView.java b/modules/jooby-hbm/src/main/java/org/jooby/internal/hbm/OpenSessionInView.java index 6a11d8bf3a..06cbd68c71 100644 --- a/modules/jooby-hbm/src/main/java/org/jooby/internal/hbm/OpenSessionInView.java +++ b/modules/jooby-hbm/src/main/java/org/jooby/internal/hbm/OpenSessionInView.java @@ -215,15 +215,25 @@ public class OpenSessionInView implements Filter { @Override public void handle(final Request req, final Response rsp, final Chain chain) throws Throwable { RootUnitOfWork uow = (RootUnitOfWork) req.require(UnitOfWork.class); - // start transaction - uow.begin(); - rsp.after(after(uow)); + try { + // start transaction + uow.begin(); + + rsp.after(after(uow)); - rsp.complete(complete(uow)); + rsp.complete(complete(uow)); - // move next - chain.next(req, rsp); + // move next + chain.next(req, rsp); + } catch (Throwable x) { + try { + uow.setRollbackOnly().end(); + } catch (Throwable suppressed) { + x.addSuppressed(suppressed); + } + throw x; + } } private static Route.Complete complete(final RootUnitOfWork uow) { diff --git a/modules/jooby-hbm/src/main/java/org/jooby/internal/hbm/RootUnitOfWork.java b/modules/jooby-hbm/src/main/java/org/jooby/internal/hbm/RootUnitOfWork.java index bc0eca95d0..c14837913a 100644 --- a/modules/jooby-hbm/src/main/java/org/jooby/internal/hbm/RootUnitOfWork.java +++ b/modules/jooby-hbm/src/main/java/org/jooby/internal/hbm/RootUnitOfWork.java @@ -243,15 +243,15 @@ public UnitOfWork commit() { return this; } if (!readOnly) { - log.debug("flusing session: {}", oid(session)); + log.debug("flushing session: {}", oid(session)); session.flush(); } else { - log.debug("flusing ignored on read-only session: {}", oid(session)); + log.debug("flushing ignored on read-only session: {}", oid(session)); } active(session, trx -> { - log.debug("commiting transaction: {}(trx@{})", oid(session), oid(trx)); + log.debug("committing transaction: {}(trx@{})", oid(session), oid(trx)); trx.commit(); - }, trx -> log.warn("unable to commit inactive transaction: {}(trx@{})", oid(session), oid(trx))); + }, trx -> log.debug("unable to commit inactive transaction: {}(trx@{})", oid(session), oid(trx))); return this; } @@ -277,7 +277,7 @@ public UnitOfWork rollback() { active(session, trx -> { log.debug("rollback transaction: {}(trx@{})", oid(session), oid(trx)); trx.rollback(); - }, trx -> log.warn("unable to rollback inactive transaction: {}(trx@{})", oid(session), oid(trx))); + }, trx -> log.debug("unable to rollback inactive transaction: {}(trx@{})", oid(session), oid(trx))); return this; } @@ -303,16 +303,19 @@ public void end() { commit(); } } finally { - if (readOnly) { - setConnectionReadOnly(false); - } + try { + if (readOnly) { + setConnectionReadOnly(false); + } - String sessionId = oid(session); - log.debug("closing session: {}", sessionId); - Try.run(session::close) - .onFailure(x -> log.error("session.close() resulted in exception: {}", sessionId, x)) - .onSuccess(() -> log.debug("session closed: {}", sessionId)); - unbind(session.getSessionFactory()); + String sessionId = oid(session); + log.debug("closing session: {}", sessionId); + Try.run(session::close) + .onFailure(x -> log.error("session.close() resulted in exception: {}", sessionId, x)) + .onSuccess(() -> log.debug("session closed: {}", sessionId)); + } finally { + unbind(session.getSessionFactory()); + } } } From dfb873ba3ab3f0c37246aa7f6213945ec9966c8a Mon Sep 17 00:00:00 2001 From: Edgar Espina Date: Thu, 12 Dec 2019 16:11:08 -0300 Subject: [PATCH 85/93] v1.6.6 --- README.md | 4 ++-- jooby/pom.xml | 2 +- modules/coverage-report/pom.xml | 2 +- modules/jooby-akka/README.md | 6 +++--- modules/jooby-akka/pom.xml | 2 +- modules/jooby-apitool/README.md | 8 ++++---- modules/jooby-apitool/pom.xml | 2 +- modules/jooby-archetype/pom.xml | 2 +- modules/jooby-assets-autoprefixer/README.md | 6 +++--- modules/jooby-assets-autoprefixer/pom.xml | 2 +- modules/jooby-assets-babel/README.md | 8 ++++---- modules/jooby-assets-babel/pom.xml | 2 +- modules/jooby-assets-clean-css/README.md | 6 +++--- modules/jooby-assets-clean-css/pom.xml | 2 +- modules/jooby-assets-closure-compiler/README.md | 6 +++--- modules/jooby-assets-closure-compiler/pom.xml | 2 +- modules/jooby-assets-csslint/README.md | 6 +++--- modules/jooby-assets-csslint/pom.xml | 2 +- modules/jooby-assets-j2v8/pom.xml | 2 +- modules/jooby-assets-jscs/README.md | 6 +++--- modules/jooby-assets-jscs/pom.xml | 2 +- modules/jooby-assets-jshint/README.md | 6 +++--- modules/jooby-assets-jshint/pom.xml | 2 +- modules/jooby-assets-less/README.md | 6 +++--- modules/jooby-assets-less/pom.xml | 2 +- modules/jooby-assets-less4j/README.md | 6 +++--- modules/jooby-assets-less4j/pom.xml | 2 +- modules/jooby-assets-ng-annotate/README.md | 6 +++--- modules/jooby-assets-ng-annotate/pom.xml | 2 +- modules/jooby-assets-nodejs/pom.xml | 2 +- modules/jooby-assets-requirejs/README.md | 6 +++--- modules/jooby-assets-requirejs/pom.xml | 2 +- modules/jooby-assets-rollup/README.md | 6 +++--- modules/jooby-assets-rollup/pom.xml | 2 +- modules/jooby-assets-sass/README.md | 6 +++--- modules/jooby-assets-sass/pom.xml | 2 +- modules/jooby-assets-svg-sprites/README.md | 6 +++--- modules/jooby-assets-svg-sprites/pom.xml | 2 +- modules/jooby-assets-svg-symbol/README.md | 6 +++--- modules/jooby-assets-svg-symbol/pom.xml | 2 +- modules/jooby-assets-uglify/README.md | 6 +++--- modules/jooby-assets-uglify/pom.xml | 2 +- modules/jooby-assets-yui-compressor/README.md | 6 +++--- modules/jooby-assets-yui-compressor/pom.xml | 2 +- modules/jooby-assets/README.md | 6 +++--- modules/jooby-assets/pom.xml | 2 +- modules/jooby-aws/README.md | 6 +++--- modules/jooby-aws/pom.xml | 2 +- modules/jooby-banner/README.md | 6 +++--- modules/jooby-banner/pom.xml | 2 +- modules/jooby-bom/pom.xml | 4 ++-- modules/jooby-caffeine/README.md | 6 +++--- modules/jooby-caffeine/pom.xml | 2 +- modules/jooby-camel/README.md | 6 +++--- modules/jooby-camel/pom.xml | 2 +- modules/jooby-cassandra/README.md | 8 ++++---- modules/jooby-cassandra/pom.xml | 2 +- modules/jooby-commons-email/README.md | 6 +++--- modules/jooby-commons-email/pom.xml | 2 +- modules/jooby-consul/README.md | 6 +++--- modules/jooby-consul/pom.xml | 2 +- modules/jooby-couchbase/README.md | 8 ++++---- modules/jooby-couchbase/pom.xml | 2 +- modules/jooby-crash/README.md | 6 +++--- modules/jooby-crash/pom.xml | 2 +- modules/jooby-csl/README.md | 6 +++--- modules/jooby-csl/pom.xml | 2 +- modules/jooby-dist/pom.xml | 2 +- modules/jooby-ebean/README.md | 6 +++--- modules/jooby-ebean/pom.xml | 2 +- modules/jooby-ehcache/README.md | 8 ++++---- modules/jooby-ehcache/pom.xml | 2 +- modules/jooby-elasticsearch/README.md | 6 +++--- modules/jooby-elasticsearch/pom.xml | 2 +- modules/jooby-eventbus/README.md | 6 +++--- modules/jooby-eventbus/pom.xml | 2 +- modules/jooby-executor/README.md | 6 +++--- modules/jooby-executor/pom.xml | 2 +- modules/jooby-exposed/README.md | 4 ++-- modules/jooby-exposed/pom.xml | 2 +- modules/jooby-filewatcher/README.md | 6 +++--- modules/jooby-filewatcher/pom.xml | 2 +- modules/jooby-flyway/README.md | 6 +++--- modules/jooby-flyway/pom.xml | 2 +- modules/jooby-frontend/README.md | 6 +++--- modules/jooby-frontend/pom.xml | 2 +- modules/jooby-ftl/README.md | 6 +++--- modules/jooby-ftl/pom.xml | 2 +- modules/jooby-gradle-plugin/README.md | 6 +++--- modules/jooby-gradle-plugin/pom.xml | 2 +- modules/jooby-gson/README.md | 6 +++--- modules/jooby-gson/pom.xml | 2 +- modules/jooby-guava-cache/README.md | 8 ++++---- modules/jooby-guava-cache/pom.xml | 2 +- modules/jooby-hazelcast/README.md | 8 ++++---- modules/jooby-hazelcast/pom.xml | 2 +- modules/jooby-hbm/README.md | 6 +++--- modules/jooby-hbm/pom.xml | 2 +- modules/jooby-hbs/README.md | 6 +++--- modules/jooby-hbs/pom.xml | 2 +- modules/jooby-hbv/README.md | 6 +++--- modules/jooby-hbv/pom.xml | 2 +- modules/jooby-jackson/README.md | 6 +++--- modules/jooby-jackson/pom.xml | 2 +- modules/jooby-jade/README.md | 6 +++--- modules/jooby-jade/pom.xml | 2 +- modules/jooby-jdbc/README.md | 6 +++--- modules/jooby-jdbc/pom.xml | 2 +- modules/jooby-jdbi/README.md | 6 +++--- modules/jooby-jdbi/pom.xml | 2 +- modules/jooby-jdbi3/README.md | 6 +++--- modules/jooby-jdbi3/pom.xml | 2 +- modules/jooby-jedis/README.md | 8 ++++---- modules/jooby-jedis/pom.xml | 2 +- modules/jooby-jetty/README.md | 6 +++--- modules/jooby-jetty/pom.xml | 2 +- modules/jooby-jongo/README.md | 6 +++--- modules/jooby-jongo/pom.xml | 2 +- modules/jooby-jooq/README.md | 6 +++--- modules/jooby-jooq/pom.xml | 2 +- modules/jooby-lang-kotlin/README.md | 6 +++--- modules/jooby-lang-kotlin/pom.xml | 2 +- modules/jooby-livereload/README.md | 6 +++--- modules/jooby-livereload/pom.xml | 2 +- modules/jooby-maven-plugin/README.md | 10 +++++----- modules/jooby-maven-plugin/pom.xml | 2 +- modules/jooby-metrics/README.md | 6 +++--- modules/jooby-metrics/pom.xml | 2 +- modules/jooby-micrometer/README.md | 6 +++--- modules/jooby-micrometer/pom.xml | 2 +- modules/jooby-mongodb-rx/README.md | 6 +++--- modules/jooby-mongodb-rx/pom.xml | 2 +- modules/jooby-mongodb/README.md | 8 ++++---- modules/jooby-mongodb/pom.xml | 2 +- modules/jooby-morphia/README.md | 6 +++--- modules/jooby-morphia/pom.xml | 2 +- modules/jooby-neo4j/README.md | 8 ++++---- modules/jooby-neo4j/pom.xml | 2 +- modules/jooby-netty/README.md | 6 +++--- modules/jooby-netty/pom.xml | 2 +- modules/jooby-pac4j/README.md | 6 +++--- modules/jooby-pac4j/pom.xml | 2 +- modules/jooby-pac4j2/README.md | 6 +++--- modules/jooby-pac4j2/pom.xml | 2 +- modules/jooby-pebble/README.md | 6 +++--- modules/jooby-pebble/pom.xml | 2 +- modules/jooby-quartz/README.md | 6 +++--- modules/jooby-quartz/pom.xml | 2 +- modules/jooby-querydsl/README.md | 6 +++--- modules/jooby-querydsl/pom.xml | 2 +- modules/jooby-reactor/README.md | 6 +++--- modules/jooby-reactor/pom.xml | 2 +- modules/jooby-requery/README.md | 6 +++--- modules/jooby-requery/pom.xml | 2 +- modules/jooby-rocker/README.md | 6 +++--- modules/jooby-rocker/pom.xml | 2 +- modules/jooby-run/pom.xml | 2 +- modules/jooby-rxjava-jdbc/README.md | 6 +++--- modules/jooby-rxjava-jdbc/pom.xml | 2 +- modules/jooby-rxjava/README.md | 6 +++--- modules/jooby-rxjava/pom.xml | 2 +- modules/jooby-scanner/README.md | 6 +++--- modules/jooby-scanner/pom.xml | 2 +- modules/jooby-servlet/README.md | 4 ++-- modules/jooby-servlet/pom.xml | 2 +- modules/jooby-sitemap/README.md | 6 +++--- modules/jooby-sitemap/pom.xml | 2 +- modules/jooby-spymemcached/README.md | 8 ++++---- modules/jooby-spymemcached/pom.xml | 2 +- modules/jooby-thymeleaf/README.md | 6 +++--- modules/jooby-thymeleaf/pom.xml | 2 +- modules/jooby-unbescape/README.md | 6 +++--- modules/jooby-unbescape/pom.xml | 2 +- modules/jooby-undertow/README.md | 6 +++--- modules/jooby-undertow/pom.xml | 2 +- modules/jooby-whoops/README.md | 6 +++--- modules/jooby-whoops/pom.xml | 2 +- modules/jooby-yasson/README.md | 6 +++--- modules/jooby-yasson/pom.xml | 2 +- modules/pom.xml | 2 +- pom.xml | 2 +- 181 files changed, 364 insertions(+), 364 deletions(-) diff --git a/README.md b/README.md index 067a02eb41..2b8eeac82d 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby.svg)](https://javadoc.io/doc/org.jooby/jooby/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby.svg)](https://javadoc.io/doc/org.jooby/jooby/1.6.6) [![Become a Patreon](https://img.shields.io/badge/patreon-donate-orange.svg)](https://patreon.com/edgarespina) [![Build Status](https://travis-ci.org/jooby-project/jooby.svg?branch=master)](https://travis-ci.org/jooby-project/jooby) [![coveralls.io](https://img.shields.io/coveralls/jooby-project/jooby.svg)](https://coveralls.io/r/jooby-project/jooby?branch=master) diff --git a/jooby/pom.xml b/jooby/pom.xml index 4b8d88b213..2d6c008483 100644 --- a/jooby/pom.xml +++ b/jooby/pom.xml @@ -6,7 +6,7 @@ org.jooby jooby-project - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/coverage-report/pom.xml b/modules/coverage-report/pom.xml index 173ecbcc30..68cbcd3d11 100644 --- a/modules/coverage-report/pom.xml +++ b/modules/coverage-report/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-akka/README.md b/modules/jooby-akka/README.md index 2ffaa1bf1b..bd6408137d 100644 --- a/modules/jooby-akka/README.md +++ b/modules/jooby-akka/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-akka/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-akka/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-akka.svg)](https://javadoc.io/doc/org.jooby/jooby-akka/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-akka/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-akka/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-akka.svg)](https://javadoc.io/doc/org.jooby/jooby-akka/1.6.6) [![jooby-akka website](https://img.shields.io/badge/jooby-akka-brightgreen.svg)](http://jooby.org/doc/akka) # akka @@ -15,7 +15,7 @@ Small module to build concurrent & distributed applications via [Akka](http://ak org.jooby jooby-akka - 1.6.5 + 1.6.6 ``` diff --git a/modules/jooby-akka/pom.xml b/modules/jooby-akka/pom.xml index c3cdcea7e9..fc8a547ba4 100644 --- a/modules/jooby-akka/pom.xml +++ b/modules/jooby-akka/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-apitool/README.md b/modules/jooby-apitool/README.md index 7d01c7c1ca..d5e3486d16 100644 --- a/modules/jooby-apitool/README.md +++ b/modules/jooby-apitool/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-apitool/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-apitool/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-apitool.svg)](https://javadoc.io/doc/org.jooby/jooby-apitool/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-apitool/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-apitool/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-apitool.svg)](https://javadoc.io/doc/org.jooby/jooby-apitool/1.6.6) [![jooby-apitool website](https://img.shields.io/badge/jooby-apitool-brightgreen.svg)](http://jooby.org/doc/apitool) # API tool @@ -23,7 +23,7 @@ This module generates live documentation from your HTTP API (source code). org.jooby jooby-apitool - 1.6.5 + 1.6.6 ``` @@ -187,7 +187,7 @@ Go to ```build.gradle``` and add these lines: ```gradke buildscript { dependencies { - classpath group: 'org.jooby', name: 'jooby-gradle-plugin', version: '1.6.5' + classpath group: 'org.jooby', name: 'jooby-gradle-plugin', version: '1.6.6' } } apply plugin: 'jooby' diff --git a/modules/jooby-apitool/pom.xml b/modules/jooby-apitool/pom.xml index 690dc54f5a..7fa78bf0b0 100644 --- a/modules/jooby-apitool/pom.xml +++ b/modules/jooby-apitool/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-archetype/pom.xml b/modules/jooby-archetype/pom.xml index 965af71c1d..f1aebd271f 100644 --- a/modules/jooby-archetype/pom.xml +++ b/modules/jooby-archetype/pom.xml @@ -7,7 +7,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 jooby-archetype diff --git a/modules/jooby-assets-autoprefixer/README.md b/modules/jooby-assets-autoprefixer/README.md index 8e4ed70a39..a3f243b38a 100644 --- a/modules/jooby-assets-autoprefixer/README.md +++ b/modules/jooby-assets-autoprefixer/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-autoprefixer/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-autoprefixer/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-autoprefixer.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-autoprefixer/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-autoprefixer/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-autoprefixer/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-autoprefixer.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-autoprefixer/1.6.6) [![jooby-assets-autoprefixer website](https://img.shields.io/badge/jooby-assets-autoprefixer-brightgreen.svg)](http://jooby.org/doc/assets-autoprefixer) # auto-prefixer @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-autoprefixer - 1.6.5 + 1.6.6 provided ``` diff --git a/modules/jooby-assets-autoprefixer/pom.xml b/modules/jooby-assets-autoprefixer/pom.xml index ebce1d4a08..1a5072ad58 100644 --- a/modules/jooby-assets-autoprefixer/pom.xml +++ b/modules/jooby-assets-autoprefixer/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-assets-babel/README.md b/modules/jooby-assets-babel/README.md index a01f66effa..e8f822972f 100644 --- a/modules/jooby-assets-babel/README.md +++ b/modules/jooby-assets-babel/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-babel/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-babel/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-babel.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-babel/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-babel/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-babel/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-babel.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-babel/1.6.6) [![jooby-assets-babel website](https://img.shields.io/badge/jooby-assets-babel-brightgreen.svg)](http://jooby.org/doc/assets-babel) # babel @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-babel - 1.6.5 + 1.6.6 provided ``` @@ -38,7 +38,7 @@ assets { org.jooby jooby-assets-babel - 1.6.5 + 1.6.6 provided ``` diff --git a/modules/jooby-assets-babel/pom.xml b/modules/jooby-assets-babel/pom.xml index 6c63b4df72..5b4925ff9d 100644 --- a/modules/jooby-assets-babel/pom.xml +++ b/modules/jooby-assets-babel/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-assets-clean-css/README.md b/modules/jooby-assets-clean-css/README.md index 47414dacdb..554007e223 100644 --- a/modules/jooby-assets-clean-css/README.md +++ b/modules/jooby-assets-clean-css/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-clean-css/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-clean-css/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-clean-css.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-clean-css/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-clean-css/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-clean-css/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-clean-css.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-clean-css/1.6.6) [![jooby-assets-clean-css website](https://img.shields.io/badge/jooby-assets-clean-css-brightgreen.svg)](http://jooby.org/doc/assets-clean-css) # clean-css @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-clean-css - 1.6.5 + 1.6.6 provided ``` diff --git a/modules/jooby-assets-clean-css/pom.xml b/modules/jooby-assets-clean-css/pom.xml index c0661aa7f6..dd62ba90c9 100644 --- a/modules/jooby-assets-clean-css/pom.xml +++ b/modules/jooby-assets-clean-css/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-assets-closure-compiler/README.md b/modules/jooby-assets-closure-compiler/README.md index ffb6dc2c4b..81098cc184 100644 --- a/modules/jooby-assets-closure-compiler/README.md +++ b/modules/jooby-assets-closure-compiler/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-closure-compiler/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-closure-compiler/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-closure-compiler.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-closure-compiler/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-closure-compiler/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-closure-compiler/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-closure-compiler.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-closure-compiler/1.6.6) [![jooby-assets-closure-compiler website](https://img.shields.io/badge/jooby-assets-closure-compiler-brightgreen.svg)](http://jooby.org/doc/assets-closure-compiler) # closure-compiler @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-closure-compiler - 1.6.5 + 1.6.6 provided ``` diff --git a/modules/jooby-assets-closure-compiler/pom.xml b/modules/jooby-assets-closure-compiler/pom.xml index ccd5695f11..f80c6cd81b 100644 --- a/modules/jooby-assets-closure-compiler/pom.xml +++ b/modules/jooby-assets-closure-compiler/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-assets-csslint/README.md b/modules/jooby-assets-csslint/README.md index ad13eebd91..2aed9b1614 100644 --- a/modules/jooby-assets-csslint/README.md +++ b/modules/jooby-assets-csslint/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-csslint/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-csslint/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-csslint.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-csslint/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-csslint/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-csslint/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-csslint.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-csslint/1.6.6) [![jooby-assets-csslint website](https://img.shields.io/badge/jooby-assets-csslint-brightgreen.svg)](http://jooby.org/doc/assets-csslint) # csslint @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-csslint - 1.6.5 + 1.6.6 provided ``` diff --git a/modules/jooby-assets-csslint/pom.xml b/modules/jooby-assets-csslint/pom.xml index 6461b933ba..9a24670e15 100644 --- a/modules/jooby-assets-csslint/pom.xml +++ b/modules/jooby-assets-csslint/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-assets-j2v8/pom.xml b/modules/jooby-assets-j2v8/pom.xml index a6e0381ae3..572262b103 100644 --- a/modules/jooby-assets-j2v8/pom.xml +++ b/modules/jooby-assets-j2v8/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-assets-jscs/README.md b/modules/jooby-assets-jscs/README.md index eedf98a2dd..1a6dccc3ff 100644 --- a/modules/jooby-assets-jscs/README.md +++ b/modules/jooby-assets-jscs/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-jscs/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-jscs/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-jscs.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-jscs/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-jscs/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-jscs/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-jscs.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-jscs/1.6.6) [![jooby-assets-jscs website](https://img.shields.io/badge/jooby-assets-jscs-brightgreen.svg)](http://jooby.org/doc/assets-jscs) # jscs @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-jscs - 1.6.5 + 1.6.6 provided ``` diff --git a/modules/jooby-assets-jscs/pom.xml b/modules/jooby-assets-jscs/pom.xml index 90ed18e29e..80a9f45177 100644 --- a/modules/jooby-assets-jscs/pom.xml +++ b/modules/jooby-assets-jscs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-assets-jshint/README.md b/modules/jooby-assets-jshint/README.md index b68c8ebbf6..619aff0373 100644 --- a/modules/jooby-assets-jshint/README.md +++ b/modules/jooby-assets-jshint/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-jshint/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-jshint/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-jshint.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-jshint/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-jshint/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-jshint/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-jshint.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-jshint/1.6.6) [![jooby-assets-jshint website](https://img.shields.io/badge/jooby-assets-jshint-brightgreen.svg)](http://jooby.org/doc/assets-jshint) # jshint @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-jshint - 1.6.5 + 1.6.6 provided ``` diff --git a/modules/jooby-assets-jshint/pom.xml b/modules/jooby-assets-jshint/pom.xml index 6bc8b74bcc..00c343588e 100644 --- a/modules/jooby-assets-jshint/pom.xml +++ b/modules/jooby-assets-jshint/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-assets-less/README.md b/modules/jooby-assets-less/README.md index 732922a8db..bfc1dd2e18 100644 --- a/modules/jooby-assets-less/README.md +++ b/modules/jooby-assets-less/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-less/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-less/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-less.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-less/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-less/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-less/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-less.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-less/1.6.6) [![jooby-assets-less website](https://img.shields.io/badge/jooby-assets-less-brightgreen.svg)](http://jooby.org/doc/assets-less) # less @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-less - 1.6.5 + 1.6.6 provided ``` diff --git a/modules/jooby-assets-less/pom.xml b/modules/jooby-assets-less/pom.xml index af16916b1d..7fce5012ac 100644 --- a/modules/jooby-assets-less/pom.xml +++ b/modules/jooby-assets-less/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-assets-less4j/README.md b/modules/jooby-assets-less4j/README.md index e3047a716e..9d3adda33f 100644 --- a/modules/jooby-assets-less4j/README.md +++ b/modules/jooby-assets-less4j/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-less4j/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-less4j/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-less4j.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-less4j/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-less4j/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-less4j/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-less4j.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-less4j/1.6.6) [![jooby-assets-less4j website](https://img.shields.io/badge/jooby-assets-less4j-brightgreen.svg)](http://jooby.org/doc/assets-less4j) # less4j @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-less4j - 1.6.5 + 1.6.6 provided ``` diff --git a/modules/jooby-assets-less4j/pom.xml b/modules/jooby-assets-less4j/pom.xml index 68fc47d77b..f133eda214 100644 --- a/modules/jooby-assets-less4j/pom.xml +++ b/modules/jooby-assets-less4j/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-assets-ng-annotate/README.md b/modules/jooby-assets-ng-annotate/README.md index 92a5ec2669..5df9a092dd 100644 --- a/modules/jooby-assets-ng-annotate/README.md +++ b/modules/jooby-assets-ng-annotate/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-ng-annotate/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-ng-annotate/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-ng-annotate.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-ng-annotate/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-ng-annotate/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-ng-annotate/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-ng-annotate.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-ng-annotate/1.6.6) [![jooby-assets-ng-annotate website](https://img.shields.io/badge/jooby-assets-ng-annotate-brightgreen.svg)](http://jooby.org/doc/assets-ng-annotate) # ng-annotate @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-ng-annotate - 1.6.5 + 1.6.6 provided ``` diff --git a/modules/jooby-assets-ng-annotate/pom.xml b/modules/jooby-assets-ng-annotate/pom.xml index ef5ddd6f1b..7078f13115 100644 --- a/modules/jooby-assets-ng-annotate/pom.xml +++ b/modules/jooby-assets-ng-annotate/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-assets-nodejs/pom.xml b/modules/jooby-assets-nodejs/pom.xml index 3a64a38141..5a388ad593 100644 --- a/modules/jooby-assets-nodejs/pom.xml +++ b/modules/jooby-assets-nodejs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-assets-requirejs/README.md b/modules/jooby-assets-requirejs/README.md index b55cee91ae..6e27f8a7a0 100644 --- a/modules/jooby-assets-requirejs/README.md +++ b/modules/jooby-assets-requirejs/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-requirejs/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-requirejs/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-requirejs.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-requirejs/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-requirejs/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-requirejs/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-requirejs.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-requirejs/1.6.6) [![jooby-assets-requirejs website](https://img.shields.io/badge/jooby-assets-requirejs-brightgreen.svg)](http://jooby.org/doc/assets-requirejs) # rjs @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-requirejs - 1.6.5 + 1.6.6 provided ``` diff --git a/modules/jooby-assets-requirejs/pom.xml b/modules/jooby-assets-requirejs/pom.xml index 0089e180d3..9496248910 100644 --- a/modules/jooby-assets-requirejs/pom.xml +++ b/modules/jooby-assets-requirejs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-assets-rollup/README.md b/modules/jooby-assets-rollup/README.md index 4543bd0193..76da6a1471 100644 --- a/modules/jooby-assets-rollup/README.md +++ b/modules/jooby-assets-rollup/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-rollup/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-rollup/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-rollup.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-rollup/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-rollup/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-rollup/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-rollup.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-rollup/1.6.6) [![jooby-assets-rollup website](https://img.shields.io/badge/jooby-assets-rollup-brightgreen.svg)](http://jooby.org/doc/assets-rollup) # rollup.js @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-rollup.js - 1.6.5 + 1.6.6 provided ``` diff --git a/modules/jooby-assets-rollup/pom.xml b/modules/jooby-assets-rollup/pom.xml index 7a1067770f..00bd87fdb6 100644 --- a/modules/jooby-assets-rollup/pom.xml +++ b/modules/jooby-assets-rollup/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-assets-sass/README.md b/modules/jooby-assets-sass/README.md index ecdc74eefe..109ef7257f 100644 --- a/modules/jooby-assets-sass/README.md +++ b/modules/jooby-assets-sass/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-sass/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-sass/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-sass.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-sass/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-sass/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-sass/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-sass.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-sass/1.6.6) [![jooby-assets-sass website](https://img.shields.io/badge/jooby-assets-sass-brightgreen.svg)](http://jooby.org/doc/assets-sass) # sass @@ -13,7 +13,7 @@ org.jooby jooby-assets-sass - 1.6.5 + 1.6.6 provided ``` diff --git a/modules/jooby-assets-sass/pom.xml b/modules/jooby-assets-sass/pom.xml index 6bc3ea85d5..3ad4e7a464 100644 --- a/modules/jooby-assets-sass/pom.xml +++ b/modules/jooby-assets-sass/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-assets-svg-sprites/README.md b/modules/jooby-assets-svg-sprites/README.md index 67ad7e013f..765ee9f46a 100644 --- a/modules/jooby-assets-svg-sprites/README.md +++ b/modules/jooby-assets-svg-sprites/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-svg-sprites/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-svg-sprites/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-svg-sprites.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-svg-sprites/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-svg-sprites/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-svg-sprites/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-svg-sprites.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-svg-sprites/1.6.6) [![jooby-assets-svg-sprites website](https://img.shields.io/badge/jooby-assets-svg-sprites-brightgreen.svg)](http://jooby.org/doc/assets-svg-sprites) # svg-sprites @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-svg-sprites - 1.6.5 + 1.6.6 provided ``` diff --git a/modules/jooby-assets-svg-sprites/pom.xml b/modules/jooby-assets-svg-sprites/pom.xml index fcf7a77603..de19f5b99d 100644 --- a/modules/jooby-assets-svg-sprites/pom.xml +++ b/modules/jooby-assets-svg-sprites/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-assets-svg-symbol/README.md b/modules/jooby-assets-svg-symbol/README.md index 5d19db6b94..434c580bbb 100644 --- a/modules/jooby-assets-svg-symbol/README.md +++ b/modules/jooby-assets-svg-symbol/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-svg-symbol/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-svg-symbol/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-svg-symbol.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-svg-symbol/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-svg-symbol/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-svg-symbol/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-svg-symbol.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-svg-symbol/1.6.6) [![jooby-assets-svg-symbol website](https://img.shields.io/badge/jooby-assets-svg-symbol-brightgreen.svg)](http://jooby.org/doc/assets-svg-symbol) # svg-symbol @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-svg-symbol - 1.6.5 + 1.6.6 provided ``` diff --git a/modules/jooby-assets-svg-symbol/pom.xml b/modules/jooby-assets-svg-symbol/pom.xml index f79d41290c..d7d3167759 100644 --- a/modules/jooby-assets-svg-symbol/pom.xml +++ b/modules/jooby-assets-svg-symbol/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-assets-uglify/README.md b/modules/jooby-assets-uglify/README.md index 67b6207ba7..f5309ee6e9 100644 --- a/modules/jooby-assets-uglify/README.md +++ b/modules/jooby-assets-uglify/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-uglify/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-uglify/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-uglify.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-uglify/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-uglify/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-uglify/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-uglify.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-uglify/1.6.6) [![jooby-assets-uglify website](https://img.shields.io/badge/jooby-assets-uglify-brightgreen.svg)](http://jooby.org/doc/assets-uglify) # uglify @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-uglify - 1.6.5 + 1.6.6 provided ``` diff --git a/modules/jooby-assets-uglify/pom.xml b/modules/jooby-assets-uglify/pom.xml index 3ecbe34039..2a9be5237f 100644 --- a/modules/jooby-assets-uglify/pom.xml +++ b/modules/jooby-assets-uglify/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-assets-yui-compressor/README.md b/modules/jooby-assets-yui-compressor/README.md index 48d3ba657b..df88377ce4 100644 --- a/modules/jooby-assets-yui-compressor/README.md +++ b/modules/jooby-assets-yui-compressor/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-yui-compressor/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-yui-compressor/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-yui-compressor.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-yui-compressor/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets-yui-compressor/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets-yui-compressor/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets-yui-compressor.svg)](https://javadoc.io/doc/org.jooby/jooby-assets-yui-compressor/1.6.6) [![jooby-assets-yui-compressor website](https://img.shields.io/badge/jooby-assets-yui-compressor-brightgreen.svg)](http://jooby.org/doc/assets-yui-compressor) # yui-css @@ -13,7 +13,7 @@ Make sure you've already set up the [assets module](https://github.com/jooby-pro org.jooby jooby-assets-yui-compressor - 1.6.5 + 1.6.6 provided ``` diff --git a/modules/jooby-assets-yui-compressor/pom.xml b/modules/jooby-assets-yui-compressor/pom.xml index a7eb6ccae1..c26e613a24 100644 --- a/modules/jooby-assets-yui-compressor/pom.xml +++ b/modules/jooby-assets-yui-compressor/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-assets/README.md b/modules/jooby-assets/README.md index 3d823217bb..24f51c1012 100644 --- a/modules/jooby-assets/README.md +++ b/modules/jooby-assets/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets.svg)](https://javadoc.io/doc/org.jooby/jooby-assets/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-assets/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-assets/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-assets.svg)](https://javadoc.io/doc/org.jooby/jooby-assets/1.6.6) [![jooby-assets website](https://img.shields.io/badge/jooby-assets-brightgreen.svg)](http://jooby.org/doc/assets) # assets @@ -13,7 +13,7 @@ A variety of processors are available: ([jshint](https://github.com/jooby-projec org.jooby jooby-assets - 1.6.5 + 1.6.6 ``` diff --git a/modules/jooby-assets/pom.xml b/modules/jooby-assets/pom.xml index e127b8e367..ab48a65ff9 100644 --- a/modules/jooby-assets/pom.xml +++ b/modules/jooby-assets/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-aws/README.md b/modules/jooby-aws/README.md index a7080680dc..233aaf858e 100644 --- a/modules/jooby-aws/README.md +++ b/modules/jooby-aws/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-aws/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-aws/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-aws.svg)](https://javadoc.io/doc/org.jooby/jooby-aws/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-aws/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-aws/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-aws.svg)](https://javadoc.io/doc/org.jooby/jooby-aws/1.6.6) [![jooby-aws website](https://img.shields.io/badge/jooby-aws-brightgreen.svg)](http://jooby.org/doc/aws) # aws @@ -15,7 +15,7 @@ Small utility module that exports ```AmazonWebServiceClient``` services. org.jooby jooby-aws - 1.6.5 + 1.6.6 ``` diff --git a/modules/jooby-aws/pom.xml b/modules/jooby-aws/pom.xml index a78c05b1f8..781adfe8a6 100644 --- a/modules/jooby-aws/pom.xml +++ b/modules/jooby-aws/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-banner/README.md b/modules/jooby-banner/README.md index 157879217f..7e983048e1 100644 --- a/modules/jooby-banner/README.md +++ b/modules/jooby-banner/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-banner/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-banner/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-banner.svg)](https://javadoc.io/doc/org.jooby/jooby-banner/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-banner/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-banner/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-banner.svg)](https://javadoc.io/doc/org.jooby/jooby-banner/1.6.6) [![jooby-banner website](https://img.shields.io/badge/jooby-banner-brightgreen.svg)](http://jooby.org/doc/banner) # banner @@ -11,7 +11,7 @@ Prints out an ASCII art banner on startup using org.jooby jooby-caffeine - 1.6.5 + 1.6.6 ``` diff --git a/modules/jooby-caffeine/pom.xml b/modules/jooby-caffeine/pom.xml index 2a0a54d6b3..71f80d2918 100644 --- a/modules/jooby-caffeine/pom.xml +++ b/modules/jooby-caffeine/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-camel/README.md b/modules/jooby-camel/README.md index a0387513ae..c9033a8097 100644 --- a/modules/jooby-camel/README.md +++ b/modules/jooby-camel/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-camel/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-camel/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-camel.svg)](https://javadoc.io/doc/org.jooby/jooby-camel/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-camel/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-camel/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-camel.svg)](https://javadoc.io/doc/org.jooby/jooby-camel/1.6.6) [![jooby-camel website](https://img.shields.io/badge/jooby-camel-brightgreen.svg)](http://jooby.org/doc/camel) # camel @@ -26,7 +26,7 @@ depend on [camel-guice](http://camel.apache.org/guice.html), but it provides sim org.jooby jooby-camel - 1.6.5 + 1.6.6 ``` diff --git a/modules/jooby-camel/pom.xml b/modules/jooby-camel/pom.xml index ce449aca59..17d409bdd1 100644 --- a/modules/jooby-camel/pom.xml +++ b/modules/jooby-camel/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-cassandra/README.md b/modules/jooby-cassandra/README.md index 6b15aa863a..ee8196af46 100644 --- a/modules/jooby-cassandra/README.md +++ b/modules/jooby-cassandra/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-cassandra/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-cassandra/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-cassandra.svg)](https://javadoc.io/doc/org.jooby/jooby-cassandra/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-cassandra/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-cassandra/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-cassandra.svg)](https://javadoc.io/doc/org.jooby/jooby-cassandra/1.6.6) [![jooby-cassandra website](https://img.shields.io/badge/jooby-cassandra-brightgreen.svg)](http://jooby.org/doc/cassandra) # cassandra @@ -13,7 +13,7 @@ This module offers cassandra database org.jooby jooby-cassandra - 1.6.5 + 1.6.6 ``` @@ -211,7 +211,7 @@ A [Session.Store](/apidocs/org/jooby/cassandra/CassandraSessionStore.html) power org.jooby jooby-cassandra - 1.6.5 + 1.6.6 ``` diff --git a/modules/jooby-cassandra/pom.xml b/modules/jooby-cassandra/pom.xml index a95c998025..e9d3ba5c34 100644 --- a/modules/jooby-cassandra/pom.xml +++ b/modules/jooby-cassandra/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-commons-email/README.md b/modules/jooby-commons-email/README.md index b377f040e7..813a95dbdd 100644 --- a/modules/jooby-commons-email/README.md +++ b/modules/jooby-commons-email/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-commons-email/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-commons-email/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-commons-email.svg)](https://javadoc.io/doc/org.jooby/jooby-commons-email/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-commons-email/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-commons-email/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-commons-email.svg)](https://javadoc.io/doc/org.jooby/jooby-commons-email/1.6.6) [![jooby-commons-email website](https://img.shields.io/badge/jooby-commons-email-brightgreen.svg)](http://jooby.org/doc/commons-email) # commons-email @@ -19,7 +19,7 @@ Small but helpful module that provides access to ```Email``` instances. org.jooby jooby-commons-email - 1.6.5 + 1.6.6 ``` diff --git a/modules/jooby-commons-email/pom.xml b/modules/jooby-commons-email/pom.xml index 4c0b118079..758e2c6cbd 100644 --- a/modules/jooby-commons-email/pom.xml +++ b/modules/jooby-commons-email/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-consul/README.md b/modules/jooby-consul/README.md index ed2b10d671..faf42ce768 100644 --- a/modules/jooby-consul/README.md +++ b/modules/jooby-consul/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-consul/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-consul/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-consul.svg)](https://javadoc.io/doc/org.jooby/jooby-consul/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-consul/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-consul/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-consul.svg)](https://javadoc.io/doc/org.jooby/jooby-consul/1.6.6) [![jooby-consul website](https://img.shields.io/badge/jooby-consul-brightgreen.svg)](http://jooby.org/doc/consul) # consul @@ -15,7 +15,7 @@ Also register the application as a service and setup a health check. org.jooby jooby-consul - 1.6.5 + 1.6.6 ``` diff --git a/modules/jooby-consul/pom.xml b/modules/jooby-consul/pom.xml index 5879847222..dadf99682a 100644 --- a/modules/jooby-consul/pom.xml +++ b/modules/jooby-consul/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-couchbase/README.md b/modules/jooby-couchbase/README.md index 64b22000de..0847d412e3 100644 --- a/modules/jooby-couchbase/README.md +++ b/modules/jooby-couchbase/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-couchbase/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-couchbase/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-couchbase.svg)](https://javadoc.io/doc/org.jooby/jooby-couchbase/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-couchbase/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-couchbase/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-couchbase.svg)](https://javadoc.io/doc/org.jooby/jooby-couchbase/1.6.6) [![jooby-couchbase website](https://img.shields.io/badge/jooby-couchbase-brightgreen.svg)](http://jooby.org/doc/couchbase) # couchbase @@ -13,7 +13,7 @@ This module provides couchbase access via org.jooby jooby-couchbase - 1.6.5 + 1.6.6 ``` @@ -307,7 +307,7 @@ A [Session.Store](/apidocs/org/jooby/couchbase/CouchbaseSessionStore) powered by org.jooby jooby-couchbase - 1.6.5 + 1.6.6 ``` diff --git a/modules/jooby-couchbase/pom.xml b/modules/jooby-couchbase/pom.xml index 155a59eaef..86ca86089a 100644 --- a/modules/jooby-couchbase/pom.xml +++ b/modules/jooby-couchbase/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-crash/README.md b/modules/jooby-crash/README.md index 9fc6ea6ad9..bd15da4fd4 100644 --- a/modules/jooby-crash/README.md +++ b/modules/jooby-crash/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-crash/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-crash/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-crash.svg)](https://javadoc.io/doc/org.jooby/jooby-crash/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-crash/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-crash/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-crash.svg)](https://javadoc.io/doc/org.jooby/jooby-crash/1.6.6) [![jooby-crash website](https://img.shields.io/badge/jooby-crash-brightgreen.svg)](http://jooby.org/doc/crash) # crash @@ -11,7 +11,7 @@ org.jooby jooby-crash - 1.6.5 + 1.6.6 ``` diff --git a/modules/jooby-crash/pom.xml b/modules/jooby-crash/pom.xml index f4ea29ed6f..cb80529268 100644 --- a/modules/jooby-crash/pom.xml +++ b/modules/jooby-crash/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-csl/README.md b/modules/jooby-csl/README.md index ab2f68a3df..dd348ac487 100644 --- a/modules/jooby-csl/README.md +++ b/modules/jooby-csl/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-csl/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-csl/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-csl.svg)](https://javadoc.io/doc/org.jooby/jooby-csl/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-csl/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-csl/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-csl.svg)](https://javadoc.io/doc/org.jooby/jooby-csl/1.6.6) [![jooby-csl website](https://img.shields.io/badge/jooby-csl-brightgreen.svg)](http://jooby.org/doc/csl) # csl @@ -11,7 +11,7 @@ org.jooby jooby-csl - 1.6.5 + 1.6.6 ``` diff --git a/modules/jooby-csl/pom.xml b/modules/jooby-csl/pom.xml index 59bd2180e4..87ed54cdd0 100644 --- a/modules/jooby-csl/pom.xml +++ b/modules/jooby-csl/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-dist/pom.xml b/modules/jooby-dist/pom.xml index 9a233a76de..f7cd396e90 100644 --- a/modules/jooby-dist/pom.xml +++ b/modules/jooby-dist/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-ebean/README.md b/modules/jooby-ebean/README.md index 3e8bfedad4..95b985a0df 100644 --- a/modules/jooby-ebean/README.md +++ b/modules/jooby-ebean/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-ebean/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-ebean/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-ebean.svg)](https://javadoc.io/doc/org.jooby/jooby-ebean/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-ebean/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-ebean/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-ebean.svg)](https://javadoc.io/doc/org.jooby/jooby-ebean/1.6.6) [![jooby-ebean website](https://img.shields.io/badge/jooby-ebean-brightgreen.svg)](http://jooby.org/doc/ebean) # ebean @@ -17,7 +17,7 @@ Object-Relational-Mapping via [Ebean ORM](http://ebean-orm.github.io). It config org.jooby jooby-ebean - 1.6.5 + 1.6.6 ``` diff --git a/modules/jooby-ebean/pom.xml b/modules/jooby-ebean/pom.xml index c333769ea2..8fd4c0b83f 100644 --- a/modules/jooby-ebean/pom.xml +++ b/modules/jooby-ebean/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-ehcache/README.md b/modules/jooby-ehcache/README.md index d35acba5d8..72d52aee40 100644 --- a/modules/jooby-ehcache/README.md +++ b/modules/jooby-ehcache/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-ehcache/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-ehcache/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-ehcache.svg)](https://javadoc.io/doc/org.jooby/jooby-ehcache/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-ehcache/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-ehcache/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-ehcache.svg)](https://javadoc.io/doc/org.jooby/jooby-ehcache/1.6.6) [![jooby-ehcache website](https://img.shields.io/badge/jooby-ehcache-brightgreen.svg)](http://jooby.org/doc/ehcache) # ehcache @@ -16,7 +16,7 @@ Provides advanced cache features via [Ehcache](http://ehcache.org) org.jooby jooby-ehcache - 1.6.5 + 1.6.6 ``` @@ -120,7 +120,7 @@ Please note the ```default``` cache works as a template and isn't a real/usable org.jooby jooby-ehcache - 1.6.5 + 1.6.6 ``` diff --git a/modules/jooby-ehcache/pom.xml b/modules/jooby-ehcache/pom.xml index 22d7f2c214..a115e0b628 100644 --- a/modules/jooby-ehcache/pom.xml +++ b/modules/jooby-ehcache/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-elasticsearch/README.md b/modules/jooby-elasticsearch/README.md index 79cdeddfa1..1c8113643a 100644 --- a/modules/jooby-elasticsearch/README.md +++ b/modules/jooby-elasticsearch/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-elasticsearch/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-elasticsearch/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-elasticsearch.svg)](https://javadoc.io/doc/org.jooby/jooby-elasticsearch/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-elasticsearch/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-elasticsearch/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-elasticsearch.svg)](https://javadoc.io/doc/org.jooby/jooby-elasticsearch/1.6.6) [![jooby-elasticsearch website](https://img.shields.io/badge/jooby-elasticsearch-brightgreen.svg)](http://jooby.org/doc/elasticsearch) # elasticsearch @@ -15,7 +15,7 @@ Open Source, Distributed, RESTful Search Engine via [Elastic Search](https://git org.jooby jooby-elasticsearch - 1.6.5 + 1.6.6 ``` diff --git a/modules/jooby-elasticsearch/pom.xml b/modules/jooby-elasticsearch/pom.xml index d26fe0f160..7b9d3c89a6 100644 --- a/modules/jooby-elasticsearch/pom.xml +++ b/modules/jooby-elasticsearch/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-eventbus/README.md b/modules/jooby-eventbus/README.md index 308c72ebb2..0e22f37f66 100644 --- a/modules/jooby-eventbus/README.md +++ b/modules/jooby-eventbus/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-eventbus/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-eventbus/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-eventbus.svg)](https://javadoc.io/doc/org.jooby/jooby-eventbus/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-eventbus/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-eventbus/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-eventbus.svg)](https://javadoc.io/doc/org.jooby/jooby-eventbus/1.6.6) [![jooby-eventbus website](https://img.shields.io/badge/jooby-eventbus-brightgreen.svg)](http://jooby.org/doc/eventbus) # EventBus @@ -15,7 +15,7 @@ org.jooby jooby-eventbus - 1.6.5 + 1.6.6 ``` diff --git a/modules/jooby-eventbus/pom.xml b/modules/jooby-eventbus/pom.xml index 05e1595a4f..9eb7b52d34 100644 --- a/modules/jooby-eventbus/pom.xml +++ b/modules/jooby-eventbus/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-executor/README.md b/modules/jooby-executor/README.md index a165bc515a..6fca36007d 100644 --- a/modules/jooby-executor/README.md +++ b/modules/jooby-executor/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-executor/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-executor/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-executor.svg)](https://javadoc.io/doc/org.jooby/jooby-executor/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-executor/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-executor/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-executor.svg)](https://javadoc.io/doc/org.jooby/jooby-executor/1.6.6) [![jooby-executor website](https://img.shields.io/badge/jooby-executor-brightgreen.svg)](http://jooby.org/doc/executor) # executor @@ -15,7 +15,7 @@ Manage the life cycle of {@link ExecutorService} and build async apps, schedule org.jooby jooby-executor - 1.6.5 + 1.6.6 ``` diff --git a/modules/jooby-executor/pom.xml b/modules/jooby-executor/pom.xml index fc62163257..995e140765 100644 --- a/modules/jooby-executor/pom.xml +++ b/modules/jooby-executor/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-exposed/README.md b/modules/jooby-exposed/README.md index 98a4a9f835..baaaf2ae79 100644 --- a/modules/jooby-exposed/README.md +++ b/modules/jooby-exposed/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-exposed/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-exposed/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-exposed.svg)](https://javadoc.io/doc/org.jooby/jooby-exposed/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-exposed/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-exposed/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-exposed.svg)](https://javadoc.io/doc/org.jooby/jooby-exposed/1.6.6) [![jooby-exposed website](https://img.shields.io/badge/jooby-exposed-brightgreen.svg)](http://jooby.org/doc/exposed) # exposed diff --git a/modules/jooby-exposed/pom.xml b/modules/jooby-exposed/pom.xml index 377129a596..bb02a66a83 100644 --- a/modules/jooby-exposed/pom.xml +++ b/modules/jooby-exposed/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-filewatcher/README.md b/modules/jooby-filewatcher/README.md index 39995ba35b..4c8c4d9915 100644 --- a/modules/jooby-filewatcher/README.md +++ b/modules/jooby-filewatcher/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-filewatcher/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-filewatcher/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-filewatcher.svg)](https://javadoc.io/doc/org.jooby/jooby-filewatcher/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-filewatcher/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-filewatcher/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-filewatcher.svg)](https://javadoc.io/doc/org.jooby/jooby-filewatcher/1.6.6) [![jooby-filewatcher website](https://img.shields.io/badge/jooby-filewatcher-brightgreen.svg)](http://jooby.org/doc/filewatcher) # file watcher @@ -11,7 +11,7 @@ Watches for file system changes or event. It uses a watch service to monitor a d org.jooby jooby-file watcher - 1.6.5 + 1.6.6 ``` diff --git a/modules/jooby-filewatcher/pom.xml b/modules/jooby-filewatcher/pom.xml index d793dc8678..ba70010408 100644 --- a/modules/jooby-filewatcher/pom.xml +++ b/modules/jooby-filewatcher/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-flyway/README.md b/modules/jooby-flyway/README.md index 25e4e82f99..0da3ff6e68 100644 --- a/modules/jooby-flyway/README.md +++ b/modules/jooby-flyway/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-flyway/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-flyway/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-flyway.svg)](https://javadoc.io/doc/org.jooby/jooby-flyway/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-flyway/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-flyway/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-flyway.svg)](https://javadoc.io/doc/org.jooby/jooby-flyway/1.6.6) [![jooby-flyway website](https://img.shields.io/badge/jooby-flyway-brightgreen.svg)](http://jooby.org/doc/flyway) # flyway @@ -15,7 +15,7 @@ This module run [Flyway](http://flywaydb.org) on startup and apply database migr org.jooby jooby-flyway - 1.6.5 + 1.6.6 ``` diff --git a/modules/jooby-flyway/pom.xml b/modules/jooby-flyway/pom.xml index e0207ec1a8..5c09d8980a 100644 --- a/modules/jooby-flyway/pom.xml +++ b/modules/jooby-flyway/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-frontend/README.md b/modules/jooby-frontend/README.md index 18ea0708c6..81eaf246a7 100644 --- a/modules/jooby-frontend/README.md +++ b/modules/jooby-frontend/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-frontend/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-frontend/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-frontend.svg)](https://javadoc.io/doc/org.jooby/jooby-frontend/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-frontend/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-frontend/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-frontend.svg)](https://javadoc.io/doc/org.jooby/jooby-frontend/1.6.6) [![jooby-frontend website](https://img.shields.io/badge/jooby-frontend-brightgreen.svg)](http://jooby.org/doc/frontend) # frontend @@ -12,7 +12,7 @@ runs npm, w org.jooby jooby-frontend - 1.6.5 + 1.6.6 ``` diff --git a/modules/jooby-frontend/pom.xml b/modules/jooby-frontend/pom.xml index c38bf7b5d5..b33c3595c9 100644 --- a/modules/jooby-frontend/pom.xml +++ b/modules/jooby-frontend/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-ftl/README.md b/modules/jooby-ftl/README.md index f7744ab641..99bd1dd0cb 100644 --- a/modules/jooby-ftl/README.md +++ b/modules/jooby-ftl/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-ftl/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-ftl/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-ftl.svg)](https://javadoc.io/doc/org.jooby/jooby-ftl/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-ftl/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-ftl/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-ftl.svg)](https://javadoc.io/doc/org.jooby/jooby-ftl/1.6.6) [![jooby-ftl website](https://img.shields.io/badge/jooby-ftl-brightgreen.svg)](http://jooby.org/doc/ftl) # freemarker @@ -16,7 +16,7 @@ org.jooby jooby-ftl - 1.6.5 + 1.6.6 ``` diff --git a/modules/jooby-ftl/pom.xml b/modules/jooby-ftl/pom.xml index 557b3f65f7..69593a47f8 100644 --- a/modules/jooby-ftl/pom.xml +++ b/modules/jooby-ftl/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-gradle-plugin/README.md b/modules/jooby-gradle-plugin/README.md index 0d351c10da..cd3d512c18 100644 --- a/modules/jooby-gradle-plugin/README.md +++ b/modules/jooby-gradle-plugin/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-gradle-plugin/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-gradle-plugin/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-gradle-plugin.svg)](https://javadoc.io/doc/org.jooby/jooby-gradle-plugin/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-gradle-plugin/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-gradle-plugin/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-gradle-plugin.svg)](https://javadoc.io/doc/org.jooby/jooby-gradle-plugin/1.6.6) [![jooby-gradle-plugin website](https://img.shields.io/badge/jooby-gradle-plugin-brightgreen.svg)](http://jooby.org/doc/gradle-plugin) # gradle plugin @@ -21,7 +21,7 @@ buildscript { dependencies { /** joobyRun */ - classpath group: 'org.jooby', name: 'jooby-gradle-plugin', version: '1.6.5' + classpath group: 'org.jooby', name: 'jooby-gradle-plugin', version: '1.6.6' } } diff --git a/modules/jooby-gradle-plugin/pom.xml b/modules/jooby-gradle-plugin/pom.xml index 3af7d45b13..58c957c556 100644 --- a/modules/jooby-gradle-plugin/pom.xml +++ b/modules/jooby-gradle-plugin/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-gson/README.md b/modules/jooby-gson/README.md index 0515ca4a78..b7a9facfeb 100644 --- a/modules/jooby-gson/README.md +++ b/modules/jooby-gson/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-gson/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-gson/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-gson.svg)](https://javadoc.io/doc/org.jooby/jooby-gson/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-gson/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-gson/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-gson.svg)](https://javadoc.io/doc/org.jooby/jooby-gson/1.6.6) [![jooby-gson website](https://img.shields.io/badge/jooby-gson-brightgreen.svg)](http://jooby.org/doc/gson) # gson @@ -17,7 +17,7 @@ JSON support via [Gson](https://github.com/google/gson) library. org.jooby jooby-gson - 1.6.5 + 1.6.6 ``` diff --git a/modules/jooby-gson/pom.xml b/modules/jooby-gson/pom.xml index 727e187dd8..877e51833a 100644 --- a/modules/jooby-gson/pom.xml +++ b/modules/jooby-gson/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-guava-cache/README.md b/modules/jooby-guava-cache/README.md index fa530c8ddd..31b6c74066 100644 --- a/modules/jooby-guava-cache/README.md +++ b/modules/jooby-guava-cache/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-guava-cache/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-guava-cache/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-guava-cache.svg)](https://javadoc.io/doc/org.jooby/jooby-guava-cache/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-guava-cache/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-guava-cache/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-guava-cache.svg)](https://javadoc.io/doc/org.jooby/jooby-guava-cache/1.6.6) [![jooby-guava-cache website](https://img.shields.io/badge/jooby-guava-cache-brightgreen.svg)](http://jooby.org/doc/guava-cache) # guava-cache @@ -15,7 +15,7 @@ Provides cache solution and session storage via: Hibernate ORM org.jooby jooby-hbm - 1.6.5 + 1.6.6 ``` diff --git a/modules/jooby-hbm/pom.xml b/modules/jooby-hbm/pom.xml index 54230df51e..92b59660b6 100644 --- a/modules/jooby-hbm/pom.xml +++ b/modules/jooby-hbm/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-hbs/README.md b/modules/jooby-hbs/README.md index 834ff09657..e074764b5a 100644 --- a/modules/jooby-hbs/README.md +++ b/modules/jooby-hbs/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-hbs/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-hbs/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-hbs.svg)](https://javadoc.io/doc/org.jooby/jooby-hbs/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-hbs/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-hbs/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-hbs.svg)](https://javadoc.io/doc/org.jooby/jooby-hbs/1.6.6) [![jooby-hbs website](https://img.shields.io/badge/jooby-hbs-brightgreen.svg)](http://jooby.org/doc/hbs) # handlebars @@ -16,7 +16,7 @@ Logic-less and semantic templates via [Handlebars.java](https://github.com/jknac org.jooby jooby-hbs - 1.6.5 + 1.6.6 ``` diff --git a/modules/jooby-hbs/pom.xml b/modules/jooby-hbs/pom.xml index 83b0420d41..3e6a8e2811 100644 --- a/modules/jooby-hbs/pom.xml +++ b/modules/jooby-hbs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-hbv/README.md b/modules/jooby-hbv/README.md index 59081252d6..5dfe82fe18 100644 --- a/modules/jooby-hbv/README.md +++ b/modules/jooby-hbv/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-hbv/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-hbv/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-hbv.svg)](https://javadoc.io/doc/org.jooby/jooby-hbv/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-hbv/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-hbv/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-hbv.svg)](https://javadoc.io/doc/org.jooby/jooby-hbv/1.6.6) [![jooby-hbv website](https://img.shields.io/badge/jooby-hbv-brightgreen.svg)](http://jooby.org/doc/hbv) # hibernate validator @@ -17,7 +17,7 @@ Bean validation via [Hibernate Validator](hibernate.org/validator). org.jooby jooby-hbv - 1.6.5 + 1.6.6 ``` diff --git a/modules/jooby-hbv/pom.xml b/modules/jooby-hbv/pom.xml index 0d4285d932..4b1755281b 100644 --- a/modules/jooby-hbv/pom.xml +++ b/modules/jooby-hbv/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-jackson/README.md b/modules/jooby-jackson/README.md index aacdfa695b..c153491db4 100644 --- a/modules/jooby-jackson/README.md +++ b/modules/jooby-jackson/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jackson/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jackson/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jackson.svg)](https://javadoc.io/doc/org.jooby/jooby-jackson/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jackson/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jackson/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jackson.svg)](https://javadoc.io/doc/org.jooby/jooby-jackson/1.6.6) [![jooby-jackson website](https://img.shields.io/badge/jooby-jackson-brightgreen.svg)](http://jooby.org/doc/jackson) # jackson @@ -17,7 +17,7 @@ JSON support from the excellent [Jackson](https://github.com/FasterXML/jackson) org.jooby jooby-jackson - 1.6.5 + 1.6.6 ``` diff --git a/modules/jooby-jackson/pom.xml b/modules/jooby-jackson/pom.xml index cb28bfa0d3..91e1715c60 100644 --- a/modules/jooby-jackson/pom.xml +++ b/modules/jooby-jackson/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-jade/README.md b/modules/jooby-jade/README.md index ecfaec4c84..f209cf397d 100644 --- a/modules/jooby-jade/README.md +++ b/modules/jooby-jade/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jade/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jade/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jade.svg)](https://javadoc.io/doc/org.jooby/jooby-jade/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jade/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jade/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jade.svg)](https://javadoc.io/doc/org.jooby/jooby-jade/1.6.6) [![jooby-jade website](https://img.shields.io/badge/jooby-jade-brightgreen.svg)](http://jooby.org/doc/jade) # jade @@ -16,7 +16,7 @@ org.jooby jooby-jade - 1.6.5 + 1.6.6 ``` diff --git a/modules/jooby-jade/pom.xml b/modules/jooby-jade/pom.xml index 60562894eb..c4799e8a29 100644 --- a/modules/jooby-jade/pom.xml +++ b/modules/jooby-jade/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-jdbc/README.md b/modules/jooby-jdbc/README.md index f0cb30c884..f06b2e3543 100644 --- a/modules/jooby-jdbc/README.md +++ b/modules/jooby-jdbc/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jdbc/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jdbc/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jdbc.svg)](https://javadoc.io/doc/org.jooby/jooby-jdbc/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jdbc/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jdbc/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jdbc.svg)](https://javadoc.io/doc/org.jooby/jooby-jdbc/1.6.6) [![jooby-jdbc website](https://img.shields.io/badge/jooby-jdbc-brightgreen.svg)](http://jooby.org/doc/jdbc) # jdbc @@ -15,7 +15,7 @@ Production-ready jdbc data source, powered by the [HikariCP](https://github.com/ org.jooby jooby-jdbc - 1.6.5 + 1.6.6 ``` diff --git a/modules/jooby-jdbc/pom.xml b/modules/jooby-jdbc/pom.xml index 1e34beb081..9428bd9f6a 100644 --- a/modules/jooby-jdbc/pom.xml +++ b/modules/jooby-jdbc/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-jdbi/README.md b/modules/jooby-jdbi/README.md index 38622c09db..027f3084c7 100644 --- a/modules/jooby-jdbi/README.md +++ b/modules/jooby-jdbi/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jdbi/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jdbi/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jdbi.svg)](https://javadoc.io/doc/org.jooby/jooby-jdbi/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jdbi/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jdbi/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jdbi.svg)](https://javadoc.io/doc/org.jooby/jooby-jdbi/1.6.6) [![jooby-jdbi website](https://img.shields.io/badge/jooby-jdbi-brightgreen.svg)](http://jooby.org/doc/jdbi) # jdbi @@ -21,7 +21,7 @@ org.jooby jooby-jdbi - 1.6.5 + 1.6.6 ``` diff --git a/modules/jooby-jdbi/pom.xml b/modules/jooby-jdbi/pom.xml index 0525369e3f..efcbdcf93d 100644 --- a/modules/jooby-jdbi/pom.xml +++ b/modules/jooby-jdbi/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-jdbi3/README.md b/modules/jooby-jdbi3/README.md index 95446dea04..e45619dfa4 100644 --- a/modules/jooby-jdbi3/README.md +++ b/modules/jooby-jdbi3/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jdbi3/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jdbi3/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jdbi3.svg)](https://javadoc.io/doc/org.jooby/jooby-jdbi3/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jdbi3/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jdbi3/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jdbi3.svg)](https://javadoc.io/doc/org.jooby/jooby-jdbi3/1.6.6) [![jooby-jdbi3 website](https://img.shields.io/badge/jooby-jdbi3-brightgreen.svg)](http://jooby.org/doc/jdbi3) # jdbi @@ -17,7 +17,7 @@ org.jooby jooby-jdbi3 - 1.6.5 + 1.6.6 ``` diff --git a/modules/jooby-jdbi3/pom.xml b/modules/jooby-jdbi3/pom.xml index 3d0ea91a1f..b1f4ef1826 100644 --- a/modules/jooby-jdbi3/pom.xml +++ b/modules/jooby-jdbi3/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-jedis/README.md b/modules/jooby-jedis/README.md index 5962a9a150..0e5a828fc7 100644 --- a/modules/jooby-jedis/README.md +++ b/modules/jooby-jedis/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jedis/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jedis/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jedis.svg)](https://javadoc.io/doc/org.jooby/jooby-jedis/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jedis/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jedis/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jedis.svg)](https://javadoc.io/doc/org.jooby/jooby-jedis/1.6.6) [![jooby-jedis website](https://img.shields.io/badge/jooby-jedis-brightgreen.svg)](http://jooby.org/doc/jedis) # jedis @@ -11,7 +11,7 @@ org.jooby jooby-jedis - 1.6.5 + 1.6.6 ``` @@ -99,7 +99,7 @@ For more information about [Jedis](https://github.com/xetorthio/jedis) checkout org.jooby jooby-jedis - 1.6.5 + 1.6.6 ``` diff --git a/modules/jooby-jedis/pom.xml b/modules/jooby-jedis/pom.xml index 2a1574887b..e4413b69b1 100644 --- a/modules/jooby-jedis/pom.xml +++ b/modules/jooby-jedis/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-jetty/README.md b/modules/jooby-jetty/README.md index 38e4e1ffe8..d522fb745c 100644 --- a/modules/jooby-jetty/README.md +++ b/modules/jooby-jetty/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jetty/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jetty/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jetty.svg)](https://javadoc.io/doc/org.jooby/jooby-jetty/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jetty/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jetty/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jetty.svg)](https://javadoc.io/doc/org.jooby/jooby-jetty/1.6.6) [![jooby-jetty website](https://img.shields.io/badge/jooby-jetty-brightgreen.svg)](http://jooby.org/doc/jetty) # jetty @@ -15,7 +15,7 @@ org.jooby jooby-jetty - 1.6.5 + 1.6.6 ``` diff --git a/modules/jooby-jetty/pom.xml b/modules/jooby-jetty/pom.xml index 9bd05947ac..9ed20ef207 100644 --- a/modules/jooby-jetty/pom.xml +++ b/modules/jooby-jetty/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-jongo/README.md b/modules/jooby-jongo/README.md index a7740d8698..2c45a0891b 100644 --- a/modules/jooby-jongo/README.md +++ b/modules/jooby-jongo/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jongo/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jongo/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jongo.svg)](https://javadoc.io/doc/org.jooby/jooby-jongo/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jongo/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jongo/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jongo.svg)](https://javadoc.io/doc/org.jooby/jooby-jongo/1.6.6) [![jooby-jongo website](https://img.shields.io/badge/jooby-jongo-brightgreen.svg)](http://jooby.org/doc/jongo) # jongo @@ -17,7 +17,7 @@ org.jooby jooby-jongo - 1.6.5 + 1.6.6 ``` diff --git a/modules/jooby-jongo/pom.xml b/modules/jooby-jongo/pom.xml index 8858593249..4e5bf30266 100644 --- a/modules/jooby-jongo/pom.xml +++ b/modules/jooby-jongo/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-jooq/README.md b/modules/jooby-jooq/README.md index 231f7a8e03..a9219410cf 100644 --- a/modules/jooby-jooq/README.md +++ b/modules/jooby-jooq/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jooq/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jooq/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jooq.svg)](https://javadoc.io/doc/org.jooby/jooby-jooq/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-jooq/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-jooq/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-jooq.svg)](https://javadoc.io/doc/org.jooby/jooby-jooq/1.6.6) [![jooby-jooq website](https://img.shields.io/badge/jooby-jooq-brightgreen.svg)](http://jooby.org/doc/jooq) # jOOQ @@ -17,7 +17,7 @@ org.jooby jooby-jooq - 1.6.5 + 1.6.6 ``` diff --git a/modules/jooby-jooq/pom.xml b/modules/jooby-jooq/pom.xml index 679c147efd..741d00bae9 100644 --- a/modules/jooby-jooq/pom.xml +++ b/modules/jooby-jooq/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-lang-kotlin/README.md b/modules/jooby-lang-kotlin/README.md index 43e82a4ec4..c1cbc68ae8 100644 --- a/modules/jooby-lang-kotlin/README.md +++ b/modules/jooby-lang-kotlin/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-lang-kotlin/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-lang-kotlin/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-lang-kotlin.svg)](https://javadoc.io/doc/org.jooby/jooby-lang-kotlin/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-lang-kotlin/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-lang-kotlin/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-lang-kotlin.svg)](https://javadoc.io/doc/org.jooby/jooby-lang-kotlin/1.6.6) [![jooby-lang-kotlin website](https://img.shields.io/badge/jooby-lang-kotlin-brightgreen.svg)](http://jooby.org/doc/lang-kotlin) # kotlin @@ -11,7 +11,7 @@ A tiny module that makes a Jooby application more Kotlin idiomatic. org.jooby jooby-lang-kotlin - 1.6.5 + 1.6.6 ``` diff --git a/modules/jooby-lang-kotlin/pom.xml b/modules/jooby-lang-kotlin/pom.xml index e2011058a4..2e2d54e214 100644 --- a/modules/jooby-lang-kotlin/pom.xml +++ b/modules/jooby-lang-kotlin/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-livereload/README.md b/modules/jooby-livereload/README.md index fc8a1850cd..30de9a580b 100644 --- a/modules/jooby-livereload/README.md +++ b/modules/jooby-livereload/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-livereload/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-livereload/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-livereload.svg)](https://javadoc.io/doc/org.jooby/jooby-livereload/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-livereload/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-livereload/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-livereload.svg)](https://javadoc.io/doc/org.jooby/jooby-livereload/1.6.6) [![jooby-livereload website](https://img.shields.io/badge/jooby-livereload-brightgreen.svg)](http://jooby.org/doc/livereload) # liveReload @@ -18,7 +18,7 @@ Even cooler, when you change a CSS file or an image, the browser is updated inst org.jooby jooby-livereload - 1.6.5 + 1.6.6 ``` diff --git a/modules/jooby-livereload/pom.xml b/modules/jooby-livereload/pom.xml index ef257896c9..21262018a7 100644 --- a/modules/jooby-livereload/pom.xml +++ b/modules/jooby-livereload/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 jooby-livereload jooby-livereload diff --git a/modules/jooby-maven-plugin/README.md b/modules/jooby-maven-plugin/README.md index 26b70cc810..85c19f609a 100644 --- a/modules/jooby-maven-plugin/README.md +++ b/modules/jooby-maven-plugin/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-maven-plugin/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-maven-plugin/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-maven-plugin.svg)](https://javadoc.io/doc/org.jooby/jooby-maven-plugin/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-maven-plugin/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-maven-plugin/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-maven-plugin.svg)](https://javadoc.io/doc/org.jooby/jooby-maven-plugin/1.6.6) [![jooby-maven-plugin website](https://img.shields.io/badge/jooby-maven-plugin-brightgreen.svg)](http://jooby.org/doc/maven-plugin) # maven @@ -43,7 +43,7 @@ It's worth to mention that dynamic reload of classes is done via [JBoss Modules] org.jooby jooby-maven-plugin - 1.6.5 + 1.6.6 ${application.class} @@ -117,7 +117,7 @@ List of commands to execute before starting the ```application```. Useful for [n org.jooby jooby-maven-plugin - 1.6.5 + 1.6.6 ${application.class} @@ -138,7 +138,7 @@ Set one or more ```JVM args```: org.jooby jooby-maven-plugin - 1.6.5 + 1.6.6 ${application.class} true diff --git a/modules/jooby-maven-plugin/pom.xml b/modules/jooby-maven-plugin/pom.xml index ca194ba9a4..db87b2dbef 100644 --- a/modules/jooby-maven-plugin/pom.xml +++ b/modules/jooby-maven-plugin/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-metrics/README.md b/modules/jooby-metrics/README.md index 53350b3308..292f9cce80 100644 --- a/modules/jooby-metrics/README.md +++ b/modules/jooby-metrics/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-metrics/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-metrics/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-metrics.svg)](https://javadoc.io/doc/org.jooby/jooby-metrics/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-metrics/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-metrics/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-metrics.svg)](https://javadoc.io/doc/org.jooby/jooby-metrics/1.6.6) [![jooby-metrics website](https://img.shields.io/badge/jooby-metrics-brightgreen.svg)](http://jooby.org/doc/metrics) # metrics @@ -11,7 +11,7 @@ org.jooby jooby-metrics - 1.6.5 + 1.6.6 ``` diff --git a/modules/jooby-metrics/pom.xml b/modules/jooby-metrics/pom.xml index ccc26121f0..0f45b0cc84 100644 --- a/modules/jooby-metrics/pom.xml +++ b/modules/jooby-metrics/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-micrometer/README.md b/modules/jooby-micrometer/README.md index f383f5263c..e92ad2d180 100644 --- a/modules/jooby-micrometer/README.md +++ b/modules/jooby-micrometer/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-micrometer/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-micrometer/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-micrometer.svg)](https://javadoc.io/doc/org.jooby/jooby-micrometer/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-micrometer/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-micrometer/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-micrometer.svg)](https://javadoc.io/doc/org.jooby/jooby-micrometer/1.6.6) [![jooby-micrometer website](https://img.shields.io/badge/jooby-micrometer-brightgreen.svg)](http://jooby.org/doc/micrometer) # micrometer @@ -11,7 +11,7 @@ org.jooby jooby-micrometer - 1.6.5 + 1.6.6 ``` diff --git a/modules/jooby-micrometer/pom.xml b/modules/jooby-micrometer/pom.xml index b98944bb13..bf565ef0f6 100644 --- a/modules/jooby-micrometer/pom.xml +++ b/modules/jooby-micrometer/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-mongodb-rx/README.md b/modules/jooby-mongodb-rx/README.md index b1097141c7..8bc159c481 100644 --- a/modules/jooby-mongodb-rx/README.md +++ b/modules/jooby-mongodb-rx/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-mongodb-rx/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-mongodb-rx/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-mongodb-rx.svg)](https://javadoc.io/doc/org.jooby/jooby-mongodb-rx/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-mongodb-rx/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-mongodb-rx/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-mongodb-rx.svg)](https://javadoc.io/doc/org.jooby/jooby-mongodb-rx/1.6.6) [![jooby-mongodb-rx website](https://img.shields.io/badge/jooby-mongodb-rx-brightgreen.svg)](http://jooby.org/doc/mongodb-rx) # mongodb-rx @@ -16,7 +16,7 @@ A MongoDB based driver providing support for React org.jooby jooby-mongodb-rx - 1.6.5 + 1.6.6 ``` diff --git a/modules/jooby-mongodb-rx/pom.xml b/modules/jooby-mongodb-rx/pom.xml index b4321f6287..41d1b55a21 100644 --- a/modules/jooby-mongodb-rx/pom.xml +++ b/modules/jooby-mongodb-rx/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-mongodb/README.md b/modules/jooby-mongodb/README.md index 5302bebb78..8f728ca4f8 100644 --- a/modules/jooby-mongodb/README.md +++ b/modules/jooby-mongodb/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-mongodb/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-mongodb/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-mongodb.svg)](https://javadoc.io/doc/org.jooby/jooby-mongodb/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-mongodb/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-mongodb/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-mongodb.svg)](https://javadoc.io/doc/org.jooby/jooby-mongodb/1.6.6) [![jooby-mongodb website](https://img.shields.io/badge/jooby-mongodb-brightgreen.svg)](http://jooby.org/doc/mongodb) # mongodb driver @@ -17,7 +17,7 @@ org.jooby jooby-mongodb - 1.6.5 + 1.6.6 ``` @@ -117,7 +117,7 @@ Use [named](/apidocs/org/jooby/mongodb/Mongodb.html#-named) when you need two or org.jooby jooby-mongodb - 1.6.5 + 1.6.6 ``` diff --git a/modules/jooby-mongodb/pom.xml b/modules/jooby-mongodb/pom.xml index 717003b3de..c1430f78e6 100644 --- a/modules/jooby-mongodb/pom.xml +++ b/modules/jooby-mongodb/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-morphia/README.md b/modules/jooby-morphia/README.md index 7d89cb63d0..9849397a14 100644 --- a/modules/jooby-morphia/README.md +++ b/modules/jooby-morphia/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-morphia/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-morphia/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-morphia.svg)](https://javadoc.io/doc/org.jooby/jooby-morphia/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-morphia/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-morphia/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-morphia.svg)](https://javadoc.io/doc/org.jooby/jooby-morphia/1.6.6) [![jooby-morphia website](https://img.shields.io/badge/jooby-morphia-brightgreen.svg)](http://jooby.org/doc/morphia) # morphia @@ -16,7 +16,7 @@ Extends the [mongodb](https://github.com/jooby-project/jooby/tree/master/jooby-m org.jooby jooby-morphia - 1.6.5 + 1.6.6 ``` diff --git a/modules/jooby-morphia/pom.xml b/modules/jooby-morphia/pom.xml index 33cf498af8..e97a2f37f3 100644 --- a/modules/jooby-morphia/pom.xml +++ b/modules/jooby-morphia/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-neo4j/README.md b/modules/jooby-neo4j/README.md index 352d9d94b0..c4d01ee49d 100644 --- a/modules/jooby-neo4j/README.md +++ b/modules/jooby-neo4j/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-neo4j/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-neo4j/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-neo4j.svg)](https://javadoc.io/doc/org.jooby/jooby-neo4j/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-neo4j/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-neo4j/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-neo4j.svg)](https://javadoc.io/doc/org.jooby/jooby-neo4j/1.6.6) [![jooby-neo4j website](https://img.shields.io/badge/jooby-neo4j-brightgreen.svg)](http://jooby.org/doc/neo4j) # neo4j @@ -13,7 +13,7 @@ This module give you access to neo4j and org.jooby jooby-neo4j - 1.6.5 + 1.6.6 ``` @@ -176,7 +176,7 @@ A [Session.Store](/apidocs/org/jooby/neo4j/Neo4jSessionStore) powered by org.jooby jooby-neo4j - 1.6.5 + 1.6.6 ``` diff --git a/modules/jooby-neo4j/pom.xml b/modules/jooby-neo4j/pom.xml index 4e59868096..fd8d06531a 100644 --- a/modules/jooby-neo4j/pom.xml +++ b/modules/jooby-neo4j/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-netty/README.md b/modules/jooby-netty/README.md index 750f6c2edb..6ae7eec12b 100644 --- a/modules/jooby-netty/README.md +++ b/modules/jooby-netty/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-netty/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-netty/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-netty.svg)](https://javadoc.io/doc/org.jooby/jooby-netty/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-netty/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-netty/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-netty.svg)](https://javadoc.io/doc/org.jooby/jooby-netty/1.6.6) [![jooby-netty website](https://img.shields.io/badge/jooby-netty-brightgreen.svg)](http://jooby.org/doc/netty) # netty @@ -15,7 +15,7 @@ org.jooby jooby-netty - 1.6.5 + 1.6.6 ``` diff --git a/modules/jooby-netty/pom.xml b/modules/jooby-netty/pom.xml index 590c33ff90..e7fa29537f 100644 --- a/modules/jooby-netty/pom.xml +++ b/modules/jooby-netty/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-pac4j/README.md b/modules/jooby-pac4j/README.md index 86400e4697..19f4f1ab1d 100644 --- a/modules/jooby-pac4j/README.md +++ b/modules/jooby-pac4j/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-pac4j/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-pac4j/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-pac4j.svg)](https://javadoc.io/doc/org.jooby/jooby-pac4j/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-pac4j/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-pac4j/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-pac4j.svg)](https://javadoc.io/doc/org.jooby/jooby-pac4j/1.6.6) [![jooby-pac4j website](https://img.shields.io/badge/jooby-pac4j-brightgreen.svg)](http://jooby.org/doc/pac4j) # pac4j @@ -22,7 +22,7 @@ Authentication module via: [Pac4j 1.x](https://github.com/pac4j/pac4j). org.jooby jooby-pac4j - 1.6.5 + 1.6.6 ``` diff --git a/modules/jooby-pac4j/pom.xml b/modules/jooby-pac4j/pom.xml index dc1cc0e9ac..71a47f885d 100644 --- a/modules/jooby-pac4j/pom.xml +++ b/modules/jooby-pac4j/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-pac4j2/README.md b/modules/jooby-pac4j2/README.md index 2e9b5f8b3b..975bd84ea5 100644 --- a/modules/jooby-pac4j2/README.md +++ b/modules/jooby-pac4j2/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-pac4j2/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-pac4j2/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-pac4j2.svg)](https://javadoc.io/doc/org.jooby/jooby-pac4j2/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-pac4j2/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-pac4j2/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-pac4j2.svg)](https://javadoc.io/doc/org.jooby/jooby-pac4j2/1.6.6) [![jooby-pac4j2 website](https://img.shields.io/badge/jooby-pac4j2-brightgreen.svg)](http://jooby.org/doc/pac4j2) # pac4j module @@ -19,7 +19,7 @@ Authentication module via: Pac4j 2.x org.jooby jooby-pac4j2 - 1.6.5 + 1.6.6 ``` diff --git a/modules/jooby-pac4j2/pom.xml b/modules/jooby-pac4j2/pom.xml index fda48db044..707fa163f6 100644 --- a/modules/jooby-pac4j2/pom.xml +++ b/modules/jooby-pac4j2/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-pebble/README.md b/modules/jooby-pebble/README.md index b4001e2aef..35dfb2b599 100644 --- a/modules/jooby-pebble/README.md +++ b/modules/jooby-pebble/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-pebble/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-pebble/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-pebble.svg)](https://javadoc.io/doc/org.jooby/jooby-pebble/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-pebble/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-pebble/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-pebble.svg)](https://javadoc.io/doc/org.jooby/jooby-pebble/1.6.6) [![jooby-pebble website](https://img.shields.io/badge/jooby-pebble-brightgreen.svg)](http://jooby.org/doc/pebble) # pebble @@ -16,7 +16,7 @@ org.jooby jooby-pebble - 1.6.5 + 1.6.6 ``` diff --git a/modules/jooby-pebble/pom.xml b/modules/jooby-pebble/pom.xml index c3a2ff042f..b38b3cbab4 100644 --- a/modules/jooby-pebble/pom.xml +++ b/modules/jooby-pebble/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-quartz/README.md b/modules/jooby-quartz/README.md index b3c12cedcd..3b90f75dcb 100644 --- a/modules/jooby-quartz/README.md +++ b/modules/jooby-quartz/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-quartz/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-quartz/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-quartz.svg)](https://javadoc.io/doc/org.jooby/jooby-quartz/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-quartz/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-quartz/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-quartz.svg)](https://javadoc.io/doc/org.jooby/jooby-quartz/1.6.6) [![jooby-quartz website](https://img.shields.io/badge/jooby-quartz-brightgreen.svg)](http://jooby.org/doc/quartz) # quartz @@ -11,7 +11,7 @@ Cron triggers, job scheduling and async processing via [Quartz](http://quartz-sc org.jooby jooby-quartz - 1.6.5 + 1.6.6 ``` diff --git a/modules/jooby-quartz/pom.xml b/modules/jooby-quartz/pom.xml index cc84c016b3..5f462a92df 100644 --- a/modules/jooby-quartz/pom.xml +++ b/modules/jooby-quartz/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-querydsl/README.md b/modules/jooby-querydsl/README.md index eed4db542c..50a01e9b76 100644 --- a/modules/jooby-querydsl/README.md +++ b/modules/jooby-querydsl/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-querydsl/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-querydsl/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-querydsl.svg)](https://javadoc.io/doc/org.jooby/jooby-querydsl/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-querydsl/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-querydsl/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-querydsl.svg)](https://javadoc.io/doc/org.jooby/jooby-querydsl/1.6.6) [![jooby-querydsl website](https://img.shields.io/badge/jooby-querydsl-brightgreen.svg)](http://jooby.org/doc/querydsl) # queryDSL @@ -17,7 +17,7 @@ SQL abstraction provided by QueryDSL using org.jooby jooby-querydsl - 1.6.5 + 1.6.6 ``` diff --git a/modules/jooby-querydsl/pom.xml b/modules/jooby-querydsl/pom.xml index 7e21ecb946..cbe183114f 100644 --- a/modules/jooby-querydsl/pom.xml +++ b/modules/jooby-querydsl/pom.xml @@ -4,7 +4,7 @@ modules org.jooby - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-reactor/README.md b/modules/jooby-reactor/README.md index 8dade8d2b0..4552bcd46c 100644 --- a/modules/jooby-reactor/README.md +++ b/modules/jooby-reactor/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-reactor/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-reactor/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-reactor.svg)](https://javadoc.io/doc/org.jooby/jooby-reactor/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-reactor/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-reactor/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-reactor.svg)](https://javadoc.io/doc/org.jooby/jooby-reactor/1.6.6) [![jooby-reactor website](https://img.shields.io/badge/jooby-reactor-brightgreen.svg)](http://jooby.org/doc/reactor) # reactor @@ -11,7 +11,7 @@ org.jooby jooby-reactor - 1.6.5 + 1.6.6 ``` diff --git a/modules/jooby-reactor/pom.xml b/modules/jooby-reactor/pom.xml index 4a2e1fc0d9..c6838b8dbd 100644 --- a/modules/jooby-reactor/pom.xml +++ b/modules/jooby-reactor/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-requery/README.md b/modules/jooby-requery/README.md index 3c192191db..6a3c9da432 100644 --- a/modules/jooby-requery/README.md +++ b/modules/jooby-requery/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-requery/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-requery/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-requery.svg)](https://javadoc.io/doc/org.jooby/jooby-requery/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-requery/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-requery/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-requery.svg)](https://javadoc.io/doc/org.jooby/jooby-requery/1.6.6) [![jooby-requery website](https://img.shields.io/badge/jooby-requery-brightgreen.svg)](http://jooby.org/doc/requery) # requery @@ -15,7 +15,7 @@ Safe, clean and efficient database access via Reactive Ext org.jooby jooby-rxjava - 1.6.5 + 1.6.6 ``` diff --git a/modules/jooby-rxjava/pom.xml b/modules/jooby-rxjava/pom.xml index 3a8c796940..d5a3a72d00 100644 --- a/modules/jooby-rxjava/pom.xml +++ b/modules/jooby-rxjava/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-scanner/README.md b/modules/jooby-scanner/README.md index d70e91a186..f149cdfbfb 100644 --- a/modules/jooby-scanner/README.md +++ b/modules/jooby-scanner/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-scanner/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-scanner/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-scanner.svg)](https://javadoc.io/doc/org.jooby/jooby-scanner/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-scanner/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-scanner/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-scanner.svg)](https://javadoc.io/doc/org.jooby/jooby-scanner/1.6.6) [![jooby-scanner website](https://img.shields.io/badge/jooby-scanner-brightgreen.svg)](http://jooby.org/doc/scanner) # scanner @@ -13,7 +13,7 @@ This module provides `class-path` scanning services for `MVC routes`, `services` org.jooby jooby-scanner - 1.6.5 + 1.6.6 ``` diff --git a/modules/jooby-scanner/pom.xml b/modules/jooby-scanner/pom.xml index 98b4c8d6ff..1b9957506b 100644 --- a/modules/jooby-scanner/pom.xml +++ b/modules/jooby-scanner/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-servlet/README.md b/modules/jooby-servlet/README.md index 47c92bf15d..f910d06aee 100644 --- a/modules/jooby-servlet/README.md +++ b/modules/jooby-servlet/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-servlet/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-servlet/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-servlet.svg)](https://javadoc.io/doc/org.jooby/jooby-servlet/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-servlet/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-servlet/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-servlet.svg)](https://javadoc.io/doc/org.jooby/jooby-servlet/1.6.6) [![jooby-servlet website](https://img.shields.io/badge/jooby-servlet-brightgreen.svg)](http://jooby.org/doc/servlet) # servlets diff --git a/modules/jooby-servlet/pom.xml b/modules/jooby-servlet/pom.xml index 2c04640c32..5f209951b9 100644 --- a/modules/jooby-servlet/pom.xml +++ b/modules/jooby-servlet/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-sitemap/README.md b/modules/jooby-sitemap/README.md index cdfdf0df99..a41fb19a8c 100644 --- a/modules/jooby-sitemap/README.md +++ b/modules/jooby-sitemap/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-sitemap/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-sitemap/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-sitemap.svg)](https://javadoc.io/doc/org.jooby/jooby-sitemap/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-sitemap/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-sitemap/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-sitemap.svg)](https://javadoc.io/doc/org.jooby/jooby-sitemap/1.6.6) [![jooby-sitemap website](https://img.shields.io/badge/jooby-sitemap-brightgreen.svg)](http://jooby.org/doc/sitemap) # sitemap @@ -15,7 +15,7 @@ Generate sitemap.xml files org.jooby jooby-sitemap - 1.6.5 + 1.6.6 ``` diff --git a/modules/jooby-sitemap/pom.xml b/modules/jooby-sitemap/pom.xml index 8b2fc1324a..a7fca850a5 100644 --- a/modules/jooby-sitemap/pom.xml +++ b/modules/jooby-sitemap/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-spymemcached/README.md b/modules/jooby-spymemcached/README.md index 4c17c4d45d..bd7cd829e2 100644 --- a/modules/jooby-spymemcached/README.md +++ b/modules/jooby-spymemcached/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-spymemcached/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-spymemcached/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-spymemcached.svg)](https://javadoc.io/doc/org.jooby/jooby-spymemcached/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-spymemcached/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-spymemcached/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-spymemcached.svg)](https://javadoc.io/doc/org.jooby/jooby-spymemcached/1.6.6) [![jooby-spymemcached website](https://img.shields.io/badge/jooby-spymemcached-brightgreen.svg)](http://jooby.org/doc/spymemcached) # spymemcached @@ -15,7 +15,7 @@ Provides memcached access via [SpyMemcached](https://github.com/dustin/java-memc org.jooby jooby-spymemcached - 1.6.5 + 1.6.6 ``` @@ -65,7 +65,7 @@ or programmatically: org.jooby jooby-spymemcached - 1.6.5 + 1.6.6 ``` diff --git a/modules/jooby-spymemcached/pom.xml b/modules/jooby-spymemcached/pom.xml index f87018feed..cfa67b4e47 100644 --- a/modules/jooby-spymemcached/pom.xml +++ b/modules/jooby-spymemcached/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-thymeleaf/README.md b/modules/jooby-thymeleaf/README.md index 47b30a9d64..af62c4ea11 100644 --- a/modules/jooby-thymeleaf/README.md +++ b/modules/jooby-thymeleaf/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-thymeleaf/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-thymeleaf/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-thymeleaf.svg)](https://javadoc.io/doc/org.jooby/jooby-thymeleaf/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-thymeleaf/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-thymeleaf/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-thymeleaf.svg)](https://javadoc.io/doc/org.jooby/jooby-thymeleaf/1.6.6) [![jooby-thymeleaf website](https://img.shields.io/badge/jooby-thymeleaf-brightgreen.svg)](http://jooby.org/doc/thymeleaf) # thymeleaf @@ -11,7 +11,7 @@ org.jooby jooby-thymeleaf - 1.6.5 + 1.6.6 ``` diff --git a/modules/jooby-thymeleaf/pom.xml b/modules/jooby-thymeleaf/pom.xml index 1a58158e82..d25ed84266 100644 --- a/modules/jooby-thymeleaf/pom.xml +++ b/modules/jooby-thymeleaf/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-unbescape/README.md b/modules/jooby-unbescape/README.md index 123c8aa1c7..5f8da4709b 100644 --- a/modules/jooby-unbescape/README.md +++ b/modules/jooby-unbescape/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-unbescape/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-unbescape/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-unbescape.svg)](https://javadoc.io/doc/org.jooby/jooby-unbescape/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-unbescape/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-unbescape/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-unbescape.svg)](https://javadoc.io/doc/org.jooby/jooby-unbescape/1.6.6) [![jooby-unbescape website](https://img.shields.io/badge/jooby-unbescape-brightgreen.svg)](http://jooby.org/doc/unbescape) # unbescape @@ -11,7 +11,7 @@ org.jooby jooby-unbescape - 1.6.5 + 1.6.6 ``` diff --git a/modules/jooby-unbescape/pom.xml b/modules/jooby-unbescape/pom.xml index b1e24c99fa..99008df85c 100644 --- a/modules/jooby-unbescape/pom.xml +++ b/modules/jooby-unbescape/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-undertow/README.md b/modules/jooby-undertow/README.md index e57782be55..4381490a61 100644 --- a/modules/jooby-undertow/README.md +++ b/modules/jooby-undertow/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-undertow/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-undertow/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-undertow.svg)](https://javadoc.io/doc/org.jooby/jooby-undertow/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-undertow/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-undertow/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-undertow.svg)](https://javadoc.io/doc/org.jooby/jooby-undertow/1.6.6) [![jooby-undertow website](https://img.shields.io/badge/jooby-undertow-brightgreen.svg)](http://jooby.org/doc/undertow) # undertow @@ -15,7 +15,7 @@ org.jooby jooby-undertow - 1.6.5 + 1.6.6 ``` diff --git a/modules/jooby-undertow/pom.xml b/modules/jooby-undertow/pom.xml index ed4caac7a9..9eee948d56 100644 --- a/modules/jooby-undertow/pom.xml +++ b/modules/jooby-undertow/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-whoops/README.md b/modules/jooby-whoops/README.md index 4a0a6e767f..69ca0eef4a 100644 --- a/modules/jooby-whoops/README.md +++ b/modules/jooby-whoops/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-whoops/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-whoops/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-whoops.svg)](https://javadoc.io/doc/org.jooby/jooby-whoops/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-whoops/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-whoops/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-whoops.svg)](https://javadoc.io/doc/org.jooby/jooby-whoops/1.6.6) [![jooby-whoops website](https://img.shields.io/badge/jooby-whoops-brightgreen.svg)](http://jooby.org/doc/whoops) # whoops @@ -15,7 +15,7 @@ Pretty error page that helps you debug your web application. org.jooby jooby-whoops - 1.6.5 + 1.6.6 ``` diff --git a/modules/jooby-whoops/pom.xml b/modules/jooby-whoops/pom.xml index 55b3474ae8..5d055a1da5 100644 --- a/modules/jooby-whoops/pom.xml +++ b/modules/jooby-whoops/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/jooby-yasson/README.md b/modules/jooby-yasson/README.md index 5b7e5c09d9..41cc52faf4 100644 --- a/modules/jooby-yasson/README.md +++ b/modules/jooby-yasson/README.md @@ -1,5 +1,5 @@ -[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-yasson/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-yasson/1.6.5) -[![javadoc](https://javadoc.io/badge/org.jooby/jooby-yasson.svg)](https://javadoc.io/doc/org.jooby/jooby-yasson/1.6.5) +[![Maven](https://img.shields.io/maven-metadata/v/http/central.maven.org/maven2/org/jooby/jooby-yasson/maven-metadata.xml.svg)](http://mvnrepository.com/artifact/org.jooby/jooby-yasson/1.6.6) +[![javadoc](https://javadoc.io/badge/org.jooby/jooby-yasson.svg)](https://javadoc.io/doc/org.jooby/jooby-yasson/1.6.6) [![jooby-yasson website](https://img.shields.io/badge/jooby-yasson-brightgreen.svg)](http://jooby.org/doc/yasson) # yasson @@ -17,7 +17,7 @@ JSON support via [yasson](https://github.com/eclipse-ee4j/yasson) library. org.jooby jooby-yasson - 1.6.5 + 1.6.6 ``` diff --git a/modules/jooby-yasson/pom.xml b/modules/jooby-yasson/pom.xml index e568598f0e..04311e9afc 100644 --- a/modules/jooby-yasson/pom.xml +++ b/modules/jooby-yasson/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6-SNAPSHOT + 1.6.6 4.0.0 diff --git a/modules/pom.xml b/modules/pom.xml index 6996c1ee3e..7369c2a193 100644 --- a/modules/pom.xml +++ b/modules/pom.xml @@ -6,7 +6,7 @@ org.jooby jooby-project - 1.6.6-SNAPSHOT + 1.6.6 modules diff --git a/pom.xml b/pom.xml index e2a00ce900..1bd44a0671 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ 4.0.0 org.jooby jooby-project - 1.6.6-SNAPSHOT + 1.6.6 pom jooby-project From c1e72d7888e30a71bd28c176b1326b0906e8c440 Mon Sep 17 00:00:00 2001 From: Edgar Espina Date: Thu, 12 Dec 2019 16:12:10 -0300 Subject: [PATCH 86/93] prepare for next development cycle --- jooby/pom.xml | 2 +- modules/coverage-report/pom.xml | 2 +- modules/jooby-akka/pom.xml | 2 +- modules/jooby-apitool/pom.xml | 2 +- modules/jooby-archetype/pom.xml | 2 +- modules/jooby-assets-autoprefixer/pom.xml | 2 +- modules/jooby-assets-babel/pom.xml | 2 +- modules/jooby-assets-clean-css/pom.xml | 2 +- modules/jooby-assets-closure-compiler/pom.xml | 2 +- modules/jooby-assets-csslint/pom.xml | 2 +- modules/jooby-assets-j2v8/pom.xml | 2 +- modules/jooby-assets-jscs/pom.xml | 2 +- modules/jooby-assets-jshint/pom.xml | 2 +- modules/jooby-assets-less/pom.xml | 2 +- modules/jooby-assets-less4j/pom.xml | 2 +- modules/jooby-assets-ng-annotate/pom.xml | 2 +- modules/jooby-assets-nodejs/pom.xml | 2 +- modules/jooby-assets-requirejs/pom.xml | 2 +- modules/jooby-assets-rollup/pom.xml | 2 +- modules/jooby-assets-sass/pom.xml | 2 +- modules/jooby-assets-svg-sprites/pom.xml | 2 +- modules/jooby-assets-svg-symbol/pom.xml | 2 +- modules/jooby-assets-uglify/pom.xml | 2 +- modules/jooby-assets-yui-compressor/pom.xml | 2 +- modules/jooby-assets/pom.xml | 2 +- modules/jooby-aws/pom.xml | 2 +- modules/jooby-banner/pom.xml | 2 +- modules/jooby-caffeine/pom.xml | 2 +- modules/jooby-camel/pom.xml | 2 +- modules/jooby-cassandra/pom.xml | 2 +- modules/jooby-commons-email/pom.xml | 2 +- modules/jooby-consul/pom.xml | 2 +- modules/jooby-couchbase/pom.xml | 2 +- modules/jooby-crash/pom.xml | 2 +- modules/jooby-csl/pom.xml | 2 +- modules/jooby-dist/pom.xml | 2 +- modules/jooby-ebean/pom.xml | 2 +- modules/jooby-ehcache/pom.xml | 2 +- modules/jooby-elasticsearch/pom.xml | 2 +- modules/jooby-eventbus/pom.xml | 2 +- modules/jooby-executor/pom.xml | 2 +- modules/jooby-exposed/pom.xml | 2 +- modules/jooby-filewatcher/pom.xml | 2 +- modules/jooby-flyway/pom.xml | 2 +- modules/jooby-frontend/pom.xml | 2 +- modules/jooby-ftl/pom.xml | 2 +- modules/jooby-gradle-plugin/pom.xml | 2 +- modules/jooby-gson/pom.xml | 2 +- modules/jooby-guava-cache/pom.xml | 2 +- modules/jooby-hazelcast/pom.xml | 2 +- modules/jooby-hbm/pom.xml | 2 +- modules/jooby-hbs/pom.xml | 2 +- modules/jooby-hbv/pom.xml | 2 +- modules/jooby-jackson/pom.xml | 2 +- modules/jooby-jade/pom.xml | 2 +- modules/jooby-jdbc/pom.xml | 2 +- modules/jooby-jdbi/pom.xml | 2 +- modules/jooby-jdbi3/pom.xml | 2 +- modules/jooby-jedis/pom.xml | 2 +- modules/jooby-jetty/pom.xml | 2 +- modules/jooby-jongo/pom.xml | 2 +- modules/jooby-jooq/pom.xml | 2 +- modules/jooby-lang-kotlin/pom.xml | 2 +- modules/jooby-livereload/pom.xml | 2 +- modules/jooby-maven-plugin/pom.xml | 2 +- modules/jooby-metrics/pom.xml | 2 +- modules/jooby-micrometer/pom.xml | 2 +- modules/jooby-mongodb-rx/pom.xml | 2 +- modules/jooby-mongodb/pom.xml | 2 +- modules/jooby-morphia/pom.xml | 2 +- modules/jooby-neo4j/pom.xml | 2 +- modules/jooby-netty/pom.xml | 2 +- modules/jooby-pac4j/pom.xml | 2 +- modules/jooby-pac4j2/pom.xml | 2 +- modules/jooby-pebble/pom.xml | 2 +- modules/jooby-quartz/pom.xml | 2 +- modules/jooby-querydsl/pom.xml | 2 +- modules/jooby-reactor/pom.xml | 2 +- modules/jooby-requery/pom.xml | 2 +- modules/jooby-rocker/pom.xml | 2 +- modules/jooby-run/pom.xml | 2 +- modules/jooby-rxjava-jdbc/pom.xml | 2 +- modules/jooby-rxjava/pom.xml | 2 +- modules/jooby-scanner/pom.xml | 2 +- modules/jooby-servlet/pom.xml | 2 +- modules/jooby-sitemap/pom.xml | 2 +- modules/jooby-spymemcached/pom.xml | 2 +- modules/jooby-thymeleaf/pom.xml | 2 +- modules/jooby-unbescape/pom.xml | 2 +- modules/jooby-undertow/pom.xml | 2 +- modules/jooby-whoops/pom.xml | 2 +- modules/jooby-yasson/pom.xml | 2 +- modules/pom.xml | 2 +- pom.xml | 2 +- 94 files changed, 94 insertions(+), 94 deletions(-) diff --git a/jooby/pom.xml b/jooby/pom.xml index 2d6c008483..d769fcb6b1 100644 --- a/jooby/pom.xml +++ b/jooby/pom.xml @@ -6,7 +6,7 @@ org.jooby jooby-project - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/coverage-report/pom.xml b/modules/coverage-report/pom.xml index 68cbcd3d11..262f9d15e3 100644 --- a/modules/coverage-report/pom.xml +++ b/modules/coverage-report/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-akka/pom.xml b/modules/jooby-akka/pom.xml index fc8a547ba4..99098b9b01 100644 --- a/modules/jooby-akka/pom.xml +++ b/modules/jooby-akka/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-apitool/pom.xml b/modules/jooby-apitool/pom.xml index 7fa78bf0b0..ca91b9e621 100644 --- a/modules/jooby-apitool/pom.xml +++ b/modules/jooby-apitool/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-archetype/pom.xml b/modules/jooby-archetype/pom.xml index f1aebd271f..4dff2a851b 100644 --- a/modules/jooby-archetype/pom.xml +++ b/modules/jooby-archetype/pom.xml @@ -7,7 +7,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT jooby-archetype diff --git a/modules/jooby-assets-autoprefixer/pom.xml b/modules/jooby-assets-autoprefixer/pom.xml index 1a5072ad58..a58f042c04 100644 --- a/modules/jooby-assets-autoprefixer/pom.xml +++ b/modules/jooby-assets-autoprefixer/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-babel/pom.xml b/modules/jooby-assets-babel/pom.xml index 5b4925ff9d..0372109a19 100644 --- a/modules/jooby-assets-babel/pom.xml +++ b/modules/jooby-assets-babel/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-clean-css/pom.xml b/modules/jooby-assets-clean-css/pom.xml index dd62ba90c9..6a1dc5f13d 100644 --- a/modules/jooby-assets-clean-css/pom.xml +++ b/modules/jooby-assets-clean-css/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-closure-compiler/pom.xml b/modules/jooby-assets-closure-compiler/pom.xml index f80c6cd81b..c48a4e28f9 100644 --- a/modules/jooby-assets-closure-compiler/pom.xml +++ b/modules/jooby-assets-closure-compiler/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-csslint/pom.xml b/modules/jooby-assets-csslint/pom.xml index 9a24670e15..beb810bbf4 100644 --- a/modules/jooby-assets-csslint/pom.xml +++ b/modules/jooby-assets-csslint/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-j2v8/pom.xml b/modules/jooby-assets-j2v8/pom.xml index 572262b103..ad2e28bfc3 100644 --- a/modules/jooby-assets-j2v8/pom.xml +++ b/modules/jooby-assets-j2v8/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-jscs/pom.xml b/modules/jooby-assets-jscs/pom.xml index 80a9f45177..9f2f196459 100644 --- a/modules/jooby-assets-jscs/pom.xml +++ b/modules/jooby-assets-jscs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-jshint/pom.xml b/modules/jooby-assets-jshint/pom.xml index 00c343588e..0dbbc139cb 100644 --- a/modules/jooby-assets-jshint/pom.xml +++ b/modules/jooby-assets-jshint/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-less/pom.xml b/modules/jooby-assets-less/pom.xml index 7fce5012ac..00f1824297 100644 --- a/modules/jooby-assets-less/pom.xml +++ b/modules/jooby-assets-less/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-less4j/pom.xml b/modules/jooby-assets-less4j/pom.xml index f133eda214..9a50c96c1a 100644 --- a/modules/jooby-assets-less4j/pom.xml +++ b/modules/jooby-assets-less4j/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-ng-annotate/pom.xml b/modules/jooby-assets-ng-annotate/pom.xml index 7078f13115..af169dd99f 100644 --- a/modules/jooby-assets-ng-annotate/pom.xml +++ b/modules/jooby-assets-ng-annotate/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-nodejs/pom.xml b/modules/jooby-assets-nodejs/pom.xml index 5a388ad593..778d627c6b 100644 --- a/modules/jooby-assets-nodejs/pom.xml +++ b/modules/jooby-assets-nodejs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-requirejs/pom.xml b/modules/jooby-assets-requirejs/pom.xml index 9496248910..6a77538515 100644 --- a/modules/jooby-assets-requirejs/pom.xml +++ b/modules/jooby-assets-requirejs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-rollup/pom.xml b/modules/jooby-assets-rollup/pom.xml index 00bd87fdb6..bc93e897d7 100644 --- a/modules/jooby-assets-rollup/pom.xml +++ b/modules/jooby-assets-rollup/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-sass/pom.xml b/modules/jooby-assets-sass/pom.xml index 3ad4e7a464..3f1601bfda 100644 --- a/modules/jooby-assets-sass/pom.xml +++ b/modules/jooby-assets-sass/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-svg-sprites/pom.xml b/modules/jooby-assets-svg-sprites/pom.xml index de19f5b99d..2533627571 100644 --- a/modules/jooby-assets-svg-sprites/pom.xml +++ b/modules/jooby-assets-svg-sprites/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-svg-symbol/pom.xml b/modules/jooby-assets-svg-symbol/pom.xml index d7d3167759..06b3b980d6 100644 --- a/modules/jooby-assets-svg-symbol/pom.xml +++ b/modules/jooby-assets-svg-symbol/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-uglify/pom.xml b/modules/jooby-assets-uglify/pom.xml index 2a9be5237f..85da8a2d47 100644 --- a/modules/jooby-assets-uglify/pom.xml +++ b/modules/jooby-assets-uglify/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets-yui-compressor/pom.xml b/modules/jooby-assets-yui-compressor/pom.xml index c26e613a24..4eb7a0fbb1 100644 --- a/modules/jooby-assets-yui-compressor/pom.xml +++ b/modules/jooby-assets-yui-compressor/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-assets/pom.xml b/modules/jooby-assets/pom.xml index ab48a65ff9..f5e5372e1a 100644 --- a/modules/jooby-assets/pom.xml +++ b/modules/jooby-assets/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-aws/pom.xml b/modules/jooby-aws/pom.xml index 781adfe8a6..27ff827585 100644 --- a/modules/jooby-aws/pom.xml +++ b/modules/jooby-aws/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-banner/pom.xml b/modules/jooby-banner/pom.xml index 8cf1d7e1e2..b1ebd17ee9 100644 --- a/modules/jooby-banner/pom.xml +++ b/modules/jooby-banner/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-caffeine/pom.xml b/modules/jooby-caffeine/pom.xml index 71f80d2918..bb0aeeaff3 100644 --- a/modules/jooby-caffeine/pom.xml +++ b/modules/jooby-caffeine/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-camel/pom.xml b/modules/jooby-camel/pom.xml index 17d409bdd1..724429d072 100644 --- a/modules/jooby-camel/pom.xml +++ b/modules/jooby-camel/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-cassandra/pom.xml b/modules/jooby-cassandra/pom.xml index e9d3ba5c34..c0ffc1f289 100644 --- a/modules/jooby-cassandra/pom.xml +++ b/modules/jooby-cassandra/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-commons-email/pom.xml b/modules/jooby-commons-email/pom.xml index 758e2c6cbd..d6caae7b5b 100644 --- a/modules/jooby-commons-email/pom.xml +++ b/modules/jooby-commons-email/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-consul/pom.xml b/modules/jooby-consul/pom.xml index dadf99682a..87eef29228 100644 --- a/modules/jooby-consul/pom.xml +++ b/modules/jooby-consul/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-couchbase/pom.xml b/modules/jooby-couchbase/pom.xml index 86ca86089a..0ad9b53fb5 100644 --- a/modules/jooby-couchbase/pom.xml +++ b/modules/jooby-couchbase/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-crash/pom.xml b/modules/jooby-crash/pom.xml index cb80529268..982ef65588 100644 --- a/modules/jooby-crash/pom.xml +++ b/modules/jooby-crash/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-csl/pom.xml b/modules/jooby-csl/pom.xml index 87ed54cdd0..8be89147ac 100644 --- a/modules/jooby-csl/pom.xml +++ b/modules/jooby-csl/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-dist/pom.xml b/modules/jooby-dist/pom.xml index f7cd396e90..6e08bbe015 100644 --- a/modules/jooby-dist/pom.xml +++ b/modules/jooby-dist/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-ebean/pom.xml b/modules/jooby-ebean/pom.xml index 8fd4c0b83f..9f9b3d0f84 100644 --- a/modules/jooby-ebean/pom.xml +++ b/modules/jooby-ebean/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-ehcache/pom.xml b/modules/jooby-ehcache/pom.xml index a115e0b628..dec42d5265 100644 --- a/modules/jooby-ehcache/pom.xml +++ b/modules/jooby-ehcache/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-elasticsearch/pom.xml b/modules/jooby-elasticsearch/pom.xml index 7b9d3c89a6..057e438d49 100644 --- a/modules/jooby-elasticsearch/pom.xml +++ b/modules/jooby-elasticsearch/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-eventbus/pom.xml b/modules/jooby-eventbus/pom.xml index 9eb7b52d34..a66d25d312 100644 --- a/modules/jooby-eventbus/pom.xml +++ b/modules/jooby-eventbus/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-executor/pom.xml b/modules/jooby-executor/pom.xml index 995e140765..84b99463c3 100644 --- a/modules/jooby-executor/pom.xml +++ b/modules/jooby-executor/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-exposed/pom.xml b/modules/jooby-exposed/pom.xml index bb02a66a83..8d63deadf6 100644 --- a/modules/jooby-exposed/pom.xml +++ b/modules/jooby-exposed/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-filewatcher/pom.xml b/modules/jooby-filewatcher/pom.xml index ba70010408..ac63acf98c 100644 --- a/modules/jooby-filewatcher/pom.xml +++ b/modules/jooby-filewatcher/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-flyway/pom.xml b/modules/jooby-flyway/pom.xml index 5c09d8980a..f353339bef 100644 --- a/modules/jooby-flyway/pom.xml +++ b/modules/jooby-flyway/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-frontend/pom.xml b/modules/jooby-frontend/pom.xml index b33c3595c9..5bce0c50a1 100644 --- a/modules/jooby-frontend/pom.xml +++ b/modules/jooby-frontend/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-ftl/pom.xml b/modules/jooby-ftl/pom.xml index 69593a47f8..dc527ccc44 100644 --- a/modules/jooby-ftl/pom.xml +++ b/modules/jooby-ftl/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-gradle-plugin/pom.xml b/modules/jooby-gradle-plugin/pom.xml index 58c957c556..617ea12046 100644 --- a/modules/jooby-gradle-plugin/pom.xml +++ b/modules/jooby-gradle-plugin/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-gson/pom.xml b/modules/jooby-gson/pom.xml index 877e51833a..9c6ce85d13 100644 --- a/modules/jooby-gson/pom.xml +++ b/modules/jooby-gson/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-guava-cache/pom.xml b/modules/jooby-guava-cache/pom.xml index 0be966eee2..e164487f91 100644 --- a/modules/jooby-guava-cache/pom.xml +++ b/modules/jooby-guava-cache/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-hazelcast/pom.xml b/modules/jooby-hazelcast/pom.xml index c52eea13f2..a16935763c 100644 --- a/modules/jooby-hazelcast/pom.xml +++ b/modules/jooby-hazelcast/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-hbm/pom.xml b/modules/jooby-hbm/pom.xml index 92b59660b6..1ebf615b62 100644 --- a/modules/jooby-hbm/pom.xml +++ b/modules/jooby-hbm/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-hbs/pom.xml b/modules/jooby-hbs/pom.xml index 3e6a8e2811..c1e32013aa 100644 --- a/modules/jooby-hbs/pom.xml +++ b/modules/jooby-hbs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-hbv/pom.xml b/modules/jooby-hbv/pom.xml index 4b1755281b..19df661450 100644 --- a/modules/jooby-hbv/pom.xml +++ b/modules/jooby-hbv/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-jackson/pom.xml b/modules/jooby-jackson/pom.xml index 91e1715c60..9891a32593 100644 --- a/modules/jooby-jackson/pom.xml +++ b/modules/jooby-jackson/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-jade/pom.xml b/modules/jooby-jade/pom.xml index c4799e8a29..372ad8069b 100644 --- a/modules/jooby-jade/pom.xml +++ b/modules/jooby-jade/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-jdbc/pom.xml b/modules/jooby-jdbc/pom.xml index 9428bd9f6a..07943e372f 100644 --- a/modules/jooby-jdbc/pom.xml +++ b/modules/jooby-jdbc/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-jdbi/pom.xml b/modules/jooby-jdbi/pom.xml index efcbdcf93d..45fd671de7 100644 --- a/modules/jooby-jdbi/pom.xml +++ b/modules/jooby-jdbi/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-jdbi3/pom.xml b/modules/jooby-jdbi3/pom.xml index b1f4ef1826..d0ced4969c 100644 --- a/modules/jooby-jdbi3/pom.xml +++ b/modules/jooby-jdbi3/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-jedis/pom.xml b/modules/jooby-jedis/pom.xml index e4413b69b1..a7701838eb 100644 --- a/modules/jooby-jedis/pom.xml +++ b/modules/jooby-jedis/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-jetty/pom.xml b/modules/jooby-jetty/pom.xml index 9ed20ef207..b3cb2ba7bc 100644 --- a/modules/jooby-jetty/pom.xml +++ b/modules/jooby-jetty/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-jongo/pom.xml b/modules/jooby-jongo/pom.xml index 4e5bf30266..ef0ec861c9 100644 --- a/modules/jooby-jongo/pom.xml +++ b/modules/jooby-jongo/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-jooq/pom.xml b/modules/jooby-jooq/pom.xml index 741d00bae9..eb8aa61200 100644 --- a/modules/jooby-jooq/pom.xml +++ b/modules/jooby-jooq/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-lang-kotlin/pom.xml b/modules/jooby-lang-kotlin/pom.xml index 2e2d54e214..0ea92d9b89 100644 --- a/modules/jooby-lang-kotlin/pom.xml +++ b/modules/jooby-lang-kotlin/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-livereload/pom.xml b/modules/jooby-livereload/pom.xml index 21262018a7..66576dea73 100644 --- a/modules/jooby-livereload/pom.xml +++ b/modules/jooby-livereload/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT jooby-livereload jooby-livereload diff --git a/modules/jooby-maven-plugin/pom.xml b/modules/jooby-maven-plugin/pom.xml index db87b2dbef..b058852677 100644 --- a/modules/jooby-maven-plugin/pom.xml +++ b/modules/jooby-maven-plugin/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-metrics/pom.xml b/modules/jooby-metrics/pom.xml index 0f45b0cc84..f58260774f 100644 --- a/modules/jooby-metrics/pom.xml +++ b/modules/jooby-metrics/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-micrometer/pom.xml b/modules/jooby-micrometer/pom.xml index bf565ef0f6..875614e3fe 100644 --- a/modules/jooby-micrometer/pom.xml +++ b/modules/jooby-micrometer/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-mongodb-rx/pom.xml b/modules/jooby-mongodb-rx/pom.xml index 41d1b55a21..e366f46674 100644 --- a/modules/jooby-mongodb-rx/pom.xml +++ b/modules/jooby-mongodb-rx/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-mongodb/pom.xml b/modules/jooby-mongodb/pom.xml index c1430f78e6..f2dff5f75b 100644 --- a/modules/jooby-mongodb/pom.xml +++ b/modules/jooby-mongodb/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-morphia/pom.xml b/modules/jooby-morphia/pom.xml index e97a2f37f3..56a5f68c55 100644 --- a/modules/jooby-morphia/pom.xml +++ b/modules/jooby-morphia/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-neo4j/pom.xml b/modules/jooby-neo4j/pom.xml index fd8d06531a..61e1ffee21 100644 --- a/modules/jooby-neo4j/pom.xml +++ b/modules/jooby-neo4j/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-netty/pom.xml b/modules/jooby-netty/pom.xml index e7fa29537f..bb17d3fd27 100644 --- a/modules/jooby-netty/pom.xml +++ b/modules/jooby-netty/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-pac4j/pom.xml b/modules/jooby-pac4j/pom.xml index 71a47f885d..67d42cdf35 100644 --- a/modules/jooby-pac4j/pom.xml +++ b/modules/jooby-pac4j/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-pac4j2/pom.xml b/modules/jooby-pac4j2/pom.xml index 707fa163f6..315f526e66 100644 --- a/modules/jooby-pac4j2/pom.xml +++ b/modules/jooby-pac4j2/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-pebble/pom.xml b/modules/jooby-pebble/pom.xml index b38b3cbab4..8d6e2b265b 100644 --- a/modules/jooby-pebble/pom.xml +++ b/modules/jooby-pebble/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-quartz/pom.xml b/modules/jooby-quartz/pom.xml index 5f462a92df..397d364ba6 100644 --- a/modules/jooby-quartz/pom.xml +++ b/modules/jooby-quartz/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-querydsl/pom.xml b/modules/jooby-querydsl/pom.xml index cbe183114f..ab4f7dac03 100644 --- a/modules/jooby-querydsl/pom.xml +++ b/modules/jooby-querydsl/pom.xml @@ -4,7 +4,7 @@ modules org.jooby - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-reactor/pom.xml b/modules/jooby-reactor/pom.xml index c6838b8dbd..bc3ee251cf 100644 --- a/modules/jooby-reactor/pom.xml +++ b/modules/jooby-reactor/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-requery/pom.xml b/modules/jooby-requery/pom.xml index 4e49bf4983..94e144e797 100644 --- a/modules/jooby-requery/pom.xml +++ b/modules/jooby-requery/pom.xml @@ -4,7 +4,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT jooby-requery requery module diff --git a/modules/jooby-rocker/pom.xml b/modules/jooby-rocker/pom.xml index 91d95e3d9e..e243d43fbb 100644 --- a/modules/jooby-rocker/pom.xml +++ b/modules/jooby-rocker/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT jooby-rocker jooby-rocker diff --git a/modules/jooby-run/pom.xml b/modules/jooby-run/pom.xml index cc164aa25d..c039323b15 100644 --- a/modules/jooby-run/pom.xml +++ b/modules/jooby-run/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-rxjava-jdbc/pom.xml b/modules/jooby-rxjava-jdbc/pom.xml index 93110671a6..5d039321d2 100644 --- a/modules/jooby-rxjava-jdbc/pom.xml +++ b/modules/jooby-rxjava-jdbc/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-rxjava/pom.xml b/modules/jooby-rxjava/pom.xml index d5a3a72d00..caed31897c 100644 --- a/modules/jooby-rxjava/pom.xml +++ b/modules/jooby-rxjava/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-scanner/pom.xml b/modules/jooby-scanner/pom.xml index 1b9957506b..d15584d72d 100644 --- a/modules/jooby-scanner/pom.xml +++ b/modules/jooby-scanner/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-servlet/pom.xml b/modules/jooby-servlet/pom.xml index 5f209951b9..8b844a39c7 100644 --- a/modules/jooby-servlet/pom.xml +++ b/modules/jooby-servlet/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-sitemap/pom.xml b/modules/jooby-sitemap/pom.xml index a7fca850a5..dbf0a55c46 100644 --- a/modules/jooby-sitemap/pom.xml +++ b/modules/jooby-sitemap/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-spymemcached/pom.xml b/modules/jooby-spymemcached/pom.xml index cfa67b4e47..963f2f0096 100644 --- a/modules/jooby-spymemcached/pom.xml +++ b/modules/jooby-spymemcached/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-thymeleaf/pom.xml b/modules/jooby-thymeleaf/pom.xml index d25ed84266..1621630920 100644 --- a/modules/jooby-thymeleaf/pom.xml +++ b/modules/jooby-thymeleaf/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-unbescape/pom.xml b/modules/jooby-unbescape/pom.xml index 99008df85c..50016c79be 100644 --- a/modules/jooby-unbescape/pom.xml +++ b/modules/jooby-unbescape/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-undertow/pom.xml b/modules/jooby-undertow/pom.xml index 9eee948d56..9658152b6a 100644 --- a/modules/jooby-undertow/pom.xml +++ b/modules/jooby-undertow/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-whoops/pom.xml b/modules/jooby-whoops/pom.xml index 5d055a1da5..796ac24cf6 100644 --- a/modules/jooby-whoops/pom.xml +++ b/modules/jooby-whoops/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/jooby-yasson/pom.xml b/modules/jooby-yasson/pom.xml index 04311e9afc..65cc39ddbf 100644 --- a/modules/jooby-yasson/pom.xml +++ b/modules/jooby-yasson/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.6 + 1.6.7-SNAPSHOT 4.0.0 diff --git a/modules/pom.xml b/modules/pom.xml index 7369c2a193..bd23680843 100644 --- a/modules/pom.xml +++ b/modules/pom.xml @@ -6,7 +6,7 @@ org.jooby jooby-project - 1.6.6 + 1.6.7-SNAPSHOT modules diff --git a/pom.xml b/pom.xml index 1bd44a0671..b21e6386a7 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ 4.0.0 org.jooby jooby-project - 1.6.6 + 1.6.7-SNAPSHOT pom jooby-project From 34f526028e6cd0652125baa33936ffb6a8a4a009 Mon Sep 17 00:00:00 2001 From: Edgar Espina Date: Sun, 10 May 2020 00:07:31 -0300 Subject: [PATCH 87/93] asset: path traversal fix #1639 --- jooby/src/main/java/org/jooby/Jooby.java | 6 +- jooby/src/main/java/org/jooby/Route.java | 1 + .../java/org/jooby/handlers/AssetHandler.java | 113 ++++++++++++++++-- .../java/org/jooby/internal/AssetSource.java | 44 +++++++ .../org/jooby/handlers/AssetHandlerTest.java | 43 ++++--- .../test/java/org/jooby/issues/Issue1639.java | 31 +++++ .../java/org/jooby/issues/Issue1639b.java | 33 +++++ .../java/org/jooby/issues/Issue1639c.java | 24 ++++ .../src/test/resources/WEB-INF/web2.xml | 8 ++ .../main/java/org/jooby/assets/Assets.java | 1 + 10 files changed, 272 insertions(+), 32 deletions(-) create mode 100644 jooby/src/main/java/org/jooby/internal/AssetSource.java create mode 100644 modules/coverage-report/src/test/java/org/jooby/issues/Issue1639.java create mode 100644 modules/coverage-report/src/test/java/org/jooby/issues/Issue1639b.java create mode 100644 modules/coverage-report/src/test/java/org/jooby/issues/Issue1639c.java create mode 100644 modules/coverage-report/src/test/resources/WEB-INF/web2.xml diff --git a/jooby/src/main/java/org/jooby/Jooby.java b/jooby/src/main/java/org/jooby/Jooby.java index 7f75ee7f77..a366b4194d 100644 --- a/jooby/src/main/java/org/jooby/Jooby.java +++ b/jooby/src/main/java/org/jooby/Jooby.java @@ -1363,7 +1363,11 @@ public Route.Definition use(final String path, final Route.OneArgHandler handler @Override public Route.Definition get(final String path, final Route.Handler handler) { - return appendDefinition(GET, path, handler); + if (handler instanceof AssetHandler) { + return assets(path, (AssetHandler) handler); + } else { + return appendDefinition(GET, path, handler); + } } @Override diff --git a/jooby/src/main/java/org/jooby/Route.java b/jooby/src/main/java/org/jooby/Route.java index 94172045d7..0e3ae2cdab 100644 --- a/jooby/src/main/java/org/jooby/Route.java +++ b/jooby/src/main/java/org/jooby/Route.java @@ -1636,6 +1636,7 @@ class AssetDefinition extends Definition { public AssetDefinition(final String method, final String pattern, final Route.Filter handler, boolean caseSensitiveRouting) { super(method, pattern, handler, caseSensitiveRouting); + filter().setRoute(this); } @Nonnull diff --git a/jooby/src/main/java/org/jooby/handlers/AssetHandler.java b/jooby/src/main/java/org/jooby/handlers/AssetHandler.java index 6345844646..d9217329ca 100644 --- a/jooby/src/main/java/org/jooby/handlers/AssetHandler.java +++ b/jooby/src/main/java/org/jooby/handlers/AssetHandler.java @@ -206,7 +206,6 @@ import com.google.common.base.Strings; import com.typesafe.config.ConfigFactory; import com.typesafe.config.ConfigValueFactory; -import static java.util.Objects.requireNonNull; import org.jooby.Asset; import org.jooby.Err; import org.jooby.Jooby; @@ -229,6 +228,8 @@ import java.util.Date; import java.util.Map; +import static java.util.Objects.requireNonNull; + /** * Serve static resources, via {@link Jooby#assets(String)} or variants. * @@ -287,6 +288,12 @@ private interface Loader { private int statusCode = 404; + private String location; + + private Path basedir; + + private ClassLoader classLoader; + /** *

* Creates a new {@link AssetHandler}. The handler accepts a location pattern, that serve for @@ -315,7 +322,9 @@ private interface Loader { * @param loader The one who load the static resources. */ public AssetHandler(final String pattern, final ClassLoader loader) { - init(Route.normalize(pattern), Paths.get("public"), loader); + this.location = Route.normalize(pattern); + this.basedir = Paths.get("public"); + this.classLoader = loader; } /** @@ -345,7 +354,9 @@ public AssetHandler(final String pattern, final ClassLoader loader) { * @param basedir Base directory. */ public AssetHandler(final Path basedir) { - init("/{0}", basedir, getClass().getClassLoader()); + this.location = "/{0}"; + this.basedir = basedir; + this.classLoader = getClass().getClassLoader(); } /** @@ -375,7 +386,9 @@ public AssetHandler(final Path basedir) { * @param pattern Pattern to locate static resources. */ public AssetHandler(final String pattern) { - init(Route.normalize(pattern), Paths.get("public"), getClass().getClassLoader()); + this.location = Route.normalize(pattern); + this.basedir = Paths.get("public"); + this.classLoader = getClass().getClassLoader(); } /** @@ -422,6 +435,45 @@ public AssetHandler maxAge(final long maxAge) { return this; } + /** + * Set the route definition and initialize the handler. + * + * @param route Route definition. + * @return This handler. + */ + public AssetHandler setRoute(final Route.AssetDefinition route) { + String prefix; + boolean rootLocation = location.equals("/") || location.equals("/{0}"); + if (rootLocation) { + String pattern = route.pattern(); + int i = pattern.indexOf("/*"); + if (i > 0) { + prefix = pattern.substring(0, i + 1); + } else { + prefix = pattern; + } + } else { + int i = location.indexOf("{"); + if (i > 0) { + prefix = location.substring(0, i); + } else { + /// TODO: review what we have here + prefix = location; + } + } + if (prefix.startsWith("/")) { + prefix = prefix.substring(1); + } + if (prefix.isEmpty() && rootLocation) { + throw new IllegalArgumentException( + "For security reasons root classpath access is not allowed. Map your static resources " + + "using a prefix like: assets(static/**); or use a location classpath prefix like: " + + "assets(/, /static/{0})"); + } + init(prefix, location, basedir, classLoader); + return this; + } + /** * Parse value as {@link Duration}. If the value is already a number then it uses as seconds. * Otherwise, it parse expressions like: 8m, 1h, 365d, etc... @@ -485,7 +537,6 @@ public void handle(final Request req, final Response rsp) throws Throwable { } private void doHandle(final Request req, final Response rsp, final Asset asset) throws Throwable { - // handle etag if (this.etag) { String etag = asset.etag(); @@ -551,12 +602,13 @@ protected URL resolve(final String path) throws Exception { return loader.getResource(path); } - private void init(final String pattern, final Path basedir, final ClassLoader loader) { + private void init(final String classPathPrefix, final String location, final Path basedir, + final ClassLoader loader) { requireNonNull(loader, "Resource loader is required."); - this.fn = pattern.equals("/") + this.fn = location.equals("/") ? (req, p) -> prefix.apply(p) - : (req, p) -> MessageFormat.format(prefix.apply(pattern), vars(req)); - this.loader = loader(basedir, loader); + : (req, p) -> MessageFormat.format(prefix.apply(location), vars(req)); + this.loader = loader(basedir, classpathLoader(classPathPrefix, classLoader)); } private static Object[] vars(final Request req) { @@ -564,8 +616,8 @@ private static Object[] vars(final Request req) { return vars.values().toArray(new Object[vars.size()]); } - private static Loader loader(final Path basedir, final ClassLoader classloader) { - if (Files.exists(basedir)) { + private static Loader loader(final Path basedir, Loader classpath) { + if (basedir != null && Files.exists(basedir)) { return name -> { Path path = basedir.resolve(name).normalize(); if (Files.exists(path) && path.startsWith(basedir)) { @@ -575,10 +627,45 @@ private static Loader loader(final Path basedir, final ClassLoader classloader) // shh } } - return classloader.getResource(name); + return classpath.getResource(name); }; } - return classloader::getResource; + return classpath; + } + + private static Loader classpathLoader(String prefix, ClassLoader classloader) { + return name -> { + String safePath = safePath(name); + if (safePath.startsWith(prefix)) { + URL resource = classloader.getResource(safePath); + return resource; + } + return null; + }; + } + + private static String safePath(String name) { + if (name.indexOf("./") > 0) { + Path path = toPath(name.split("/")).normalize(); + return toStringPath(path); + } + return name; + } + + private static String toStringPath(Path path) { + StringBuilder buffer = new StringBuilder(); + for (Path segment : path) { + buffer.append("/").append(segment); + } + return buffer.substring(1); + } + + private static Path toPath(String[] segments) { + Path path = Paths.get(segments[0]); + for (int i = 1; i < segments.length; i++) { + path = path.resolve(segments[i]); + } + return path; } private static Throwing.Function prefix() { diff --git a/jooby/src/main/java/org/jooby/internal/AssetSource.java b/jooby/src/main/java/org/jooby/internal/AssetSource.java new file mode 100644 index 0000000000..d6779e9c9d --- /dev/null +++ b/jooby/src/main/java/org/jooby/internal/AssetSource.java @@ -0,0 +1,44 @@ +package org.jooby.internal; + +import com.google.common.base.Strings; + +import java.net.MalformedURLException; +import java.net.URL; +import java.nio.file.Files; +import java.nio.file.Path; + +public interface AssetSource { + URL getResource(String name); + + static AssetSource fromClassPath(ClassLoader loader, String source) { + if (Strings.isNullOrEmpty(source) || "/".equals(source.trim())) { + throw new IllegalArgumentException( + "For security reasons root classpath access is not allowed: " + source); + } + return path -> { + URL resource = loader.getResource(path); + if (resource == null) { + return null; + } + String realPath = resource.getPath(); + if (realPath.startsWith(source)) { + return resource; + } + return null; + }; + } + + static AssetSource fromFileSystem(Path basedir) { + return name -> { + Path path = basedir.resolve(name).normalize(); + if (Files.exists(path) && path.startsWith(basedir)) { + try { + return path.toUri().toURL(); + } catch (MalformedURLException x) { + // shh + } + } + return null; + }; + } +} diff --git a/jooby/src/test/java/org/jooby/handlers/AssetHandlerTest.java b/jooby/src/test/java/org/jooby/handlers/AssetHandlerTest.java index 35343529d1..afe4e0c4c1 100644 --- a/jooby/src/test/java/org/jooby/handlers/AssetHandlerTest.java +++ b/jooby/src/test/java/org/jooby/handlers/AssetHandlerTest.java @@ -1,7 +1,12 @@ package org.jooby.handlers; -import static org.easymock.EasyMock.expect; -import static org.junit.Assert.assertNotNull; +import org.jooby.Route; +import org.jooby.test.MockUnit; +import org.jooby.test.MockUnit.Block; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.powermock.core.classloader.annotations.PrepareForTest; +import org.powermock.modules.junit4.PowerMockRunner; import java.io.File; import java.net.MalformedURLException; @@ -11,15 +16,11 @@ import java.nio.file.Path; import java.nio.file.Paths; -import org.jooby.test.MockUnit; -import org.jooby.test.MockUnit.Block; -import org.junit.Test; -import org.junit.runner.RunWith; -import org.powermock.core.classloader.annotations.PrepareForTest; -import org.powermock.modules.junit4.PowerMockRunner; +import static org.easymock.EasyMock.expect; +import static org.junit.Assert.assertNotNull; @RunWith(PowerMockRunner.class) -@PrepareForTest({AssetHandler.class, File.class, Paths.class, Files.class }) +@PrepareForTest({AssetHandler.class, File.class, Paths.class, Files.class}) public class AssetHandlerTest { @Test @@ -28,24 +29,30 @@ public void customClassloader() throws Exception { new MockUnit(ClassLoader.class) .expect(publicDir(uri, "JoobyTest.js")) .run(unit -> { - URL value = new AssetHandler("/", unit.get(ClassLoader.class)) + URL value = newHandler(unit, "/") .resolve("JoobyTest.js"); assertNotNull(value); }); } + private AssetHandler newHandler(MockUnit unit, String location) { + AssetHandler handler = new AssetHandler(location, unit.get(ClassLoader.class)); + new Route.AssetDefinition("GET", "/assets/**", handler, false); + return handler; + } + @Test public void shouldCallParentOnMissing() throws Exception { URI uri = Paths.get("src", "test", "resources", "org", "jooby").toUri(); new MockUnit(ClassLoader.class) - .expect(publicDir(uri, "index.js", false)) + .expect(publicDir(uri, "assets/index.js", false)) .expect(unit -> { ClassLoader loader = unit.get(ClassLoader.class); - expect(loader.getResource("index.js")).andReturn(uri.toURL()); + expect(loader.getResource("assets/index.js")).andReturn(uri.toURL()); }) .run(unit -> { - URL value = new AssetHandler("/", unit.get(ClassLoader.class)) - .resolve("index.js"); + URL value = newHandler(unit, "/") + .resolve("assets/index.js"); assertNotNull(value); }); } @@ -54,18 +61,18 @@ public void shouldCallParentOnMissing() throws Exception { public void ignoreMalformedURL() throws Exception { Path path = Paths.get("src", "test", "resources", "org", "jooby"); new MockUnit(ClassLoader.class, URI.class) - .expect(publicDir(null, "index.js")) + .expect(publicDir(null, "assets/index.js")) .expect(unit -> { URI uri = unit.get(URI.class); expect(uri.toURL()).andThrow(new MalformedURLException()); }) .expect(unit -> { ClassLoader loader = unit.get(ClassLoader.class); - expect(loader.getResource("index.js")).andReturn(path.toUri().toURL()); + expect(loader.getResource("assets/index.js")).andReturn(path.toUri().toURL()); }) .run(unit -> { - URL value = new AssetHandler("/", unit.get(ClassLoader.class)) - .resolve("index.js"); + URL value = newHandler(unit, "/") + .resolve("assets/index.js"); assertNotNull(value); }); } diff --git a/modules/coverage-report/src/test/java/org/jooby/issues/Issue1639.java b/modules/coverage-report/src/test/java/org/jooby/issues/Issue1639.java new file mode 100644 index 0000000000..12cd2b874b --- /dev/null +++ b/modules/coverage-report/src/test/java/org/jooby/issues/Issue1639.java @@ -0,0 +1,31 @@ +package org.jooby.issues; + +import org.jooby.test.ServerFeature; +import org.junit.Test; + +import java.nio.file.Files; +import java.nio.file.Path; +import java.nio.file.Paths; + +import static org.junit.Assert.assertTrue; + +public class Issue1639 extends ServerFeature { + + { + Path dir = Paths.get(System.getProperty("user.dir"), "src", "test", "resources", "assets"); + assertTrue(Files.exists(dir)); + assets("/static/**", dir); + } + + @Test + public void shouldNotFallbackToArbitraryClasspathResources() throws Exception { + request() + .get("/static/WEB-INF/web2.xml") + .expect(404); + + request() + .get("/static/../WEB-INF/web2.xml") + .expect(404); + } + +} diff --git a/modules/coverage-report/src/test/java/org/jooby/issues/Issue1639b.java b/modules/coverage-report/src/test/java/org/jooby/issues/Issue1639b.java new file mode 100644 index 0000000000..424a60c64f --- /dev/null +++ b/modules/coverage-report/src/test/java/org/jooby/issues/Issue1639b.java @@ -0,0 +1,33 @@ +package org.jooby.issues; + +import org.jooby.test.ServerFeature; +import org.junit.Test; + +import java.nio.file.Paths; + +public class Issue1639b extends ServerFeature { + + { + assets("/static/**/*.js", Paths.get("static")); + } + + @Test + public void shouldNotByPassPrefixValue() throws Exception { + request() + .get("/static/org/jooby/issues/Issue1639b.class.js") + .expect(404); + + request() + .get("/static/../org/jooby/issues/Issue1639b.class.js") + .expect(404); + + request() + .get("/static/..%252forg/jooby/issues/Issue1639b.class.js") + .expect(404); + + request() + .get("/static/org/jooby/issues/Issue1639b.class") + .expect(404); + } + +} diff --git a/modules/coverage-report/src/test/java/org/jooby/issues/Issue1639c.java b/modules/coverage-report/src/test/java/org/jooby/issues/Issue1639c.java new file mode 100644 index 0000000000..33e73a2051 --- /dev/null +++ b/modules/coverage-report/src/test/java/org/jooby/issues/Issue1639c.java @@ -0,0 +1,24 @@ +package org.jooby.issues; + +import org.jooby.test.ServerFeature; +import org.junit.Test; + +import java.nio.file.Paths; + +public class Issue1639c extends ServerFeature { + + { + assets("/static/**"); + } + + @Test + public void shouldNotByPassPrefixValue() throws Exception { + request() + .get("/static/..%252forg/jooby/issues/Issue1639c.class") + .expect(404); + request() + .get("/static/../org/jooby/issues/Issue1639c.class") + .expect(404); + } + +} diff --git a/modules/coverage-report/src/test/resources/WEB-INF/web2.xml b/modules/coverage-report/src/test/resources/WEB-INF/web2.xml new file mode 100644 index 0000000000..262735fa3b --- /dev/null +++ b/modules/coverage-report/src/test/resources/WEB-INF/web2.xml @@ -0,0 +1,8 @@ + + + diff --git a/modules/jooby-assets/src/main/java/org/jooby/assets/Assets.java b/modules/jooby-assets/src/main/java/org/jooby/assets/Assets.java index e2751833c4..e51b6a340a 100644 --- a/modules/jooby-assets/src/main/java/org/jooby/assets/Assets.java +++ b/modules/jooby-assets/src/main/java/org/jooby/assets/Assets.java @@ -209,6 +209,7 @@ import com.typesafe.config.ConfigFactory; import org.jooby.Env; import org.jooby.Jooby; +import org.jooby.Route; import org.jooby.Router; import org.jooby.handlers.AssetHandler; import org.jooby.internal.assets.AssetVars; From 9939f28218cf4bc686817f4e71d35ceaa4f7a891 Mon Sep 17 00:00:00 2001 From: Edgar Espina Date: Sun, 10 May 2020 21:15:17 -0300 Subject: [PATCH 88/93] v1.6.7 --- jooby/pom.xml | 2 +- .../java/org/jooby/internal/AssetSource.java | 203 ++++++++++++++++++ modules/coverage-report/pom.xml | 2 +- modules/jooby-akka/pom.xml | 2 +- modules/jooby-apitool/pom.xml | 2 +- modules/jooby-archetype/pom.xml | 2 +- modules/jooby-assets-autoprefixer/pom.xml | 2 +- modules/jooby-assets-babel/pom.xml | 2 +- modules/jooby-assets-clean-css/pom.xml | 2 +- modules/jooby-assets-closure-compiler/pom.xml | 2 +- modules/jooby-assets-csslint/pom.xml | 2 +- modules/jooby-assets-j2v8/pom.xml | 2 +- modules/jooby-assets-jscs/pom.xml | 2 +- modules/jooby-assets-jshint/pom.xml | 2 +- modules/jooby-assets-less/pom.xml | 2 +- modules/jooby-assets-less4j/pom.xml | 2 +- modules/jooby-assets-ng-annotate/pom.xml | 2 +- modules/jooby-assets-nodejs/pom.xml | 2 +- modules/jooby-assets-requirejs/pom.xml | 2 +- modules/jooby-assets-rollup/pom.xml | 2 +- modules/jooby-assets-sass/pom.xml | 2 +- modules/jooby-assets-svg-sprites/pom.xml | 2 +- modules/jooby-assets-svg-symbol/pom.xml | 2 +- modules/jooby-assets-uglify/pom.xml | 2 +- modules/jooby-assets-yui-compressor/pom.xml | 2 +- modules/jooby-assets/pom.xml | 2 +- modules/jooby-aws/pom.xml | 2 +- modules/jooby-banner/pom.xml | 2 +- modules/jooby-bom/pom.xml | 4 +- modules/jooby-caffeine/pom.xml | 2 +- modules/jooby-camel/pom.xml | 2 +- modules/jooby-cassandra/pom.xml | 2 +- modules/jooby-commons-email/pom.xml | 2 +- modules/jooby-consul/pom.xml | 2 +- modules/jooby-couchbase/pom.xml | 2 +- modules/jooby-crash/pom.xml | 2 +- modules/jooby-csl/pom.xml | 2 +- modules/jooby-dist/pom.xml | 2 +- modules/jooby-ebean/pom.xml | 2 +- modules/jooby-ehcache/pom.xml | 2 +- modules/jooby-elasticsearch/pom.xml | 2 +- modules/jooby-eventbus/pom.xml | 2 +- modules/jooby-executor/pom.xml | 2 +- modules/jooby-exposed/pom.xml | 2 +- modules/jooby-filewatcher/pom.xml | 2 +- modules/jooby-flyway/pom.xml | 2 +- modules/jooby-frontend/pom.xml | 2 +- modules/jooby-ftl/pom.xml | 2 +- modules/jooby-gradle-plugin/pom.xml | 2 +- modules/jooby-gson/pom.xml | 2 +- modules/jooby-guava-cache/pom.xml | 2 +- modules/jooby-hazelcast/pom.xml | 2 +- modules/jooby-hbm/pom.xml | 2 +- modules/jooby-hbs/pom.xml | 2 +- modules/jooby-hbv/pom.xml | 2 +- modules/jooby-jackson/pom.xml | 2 +- modules/jooby-jade/pom.xml | 2 +- modules/jooby-jdbc/pom.xml | 2 +- modules/jooby-jdbi/pom.xml | 2 +- modules/jooby-jdbi3/pom.xml | 2 +- modules/jooby-jedis/pom.xml | 2 +- modules/jooby-jetty/pom.xml | 2 +- modules/jooby-jongo/pom.xml | 2 +- modules/jooby-jooq/pom.xml | 2 +- modules/jooby-lang-kotlin/pom.xml | 2 +- modules/jooby-livereload/pom.xml | 2 +- modules/jooby-maven-plugin/pom.xml | 2 +- modules/jooby-metrics/pom.xml | 2 +- modules/jooby-micrometer/pom.xml | 2 +- modules/jooby-mongodb-rx/pom.xml | 2 +- modules/jooby-mongodb/pom.xml | 2 +- modules/jooby-morphia/pom.xml | 2 +- modules/jooby-neo4j/pom.xml | 2 +- modules/jooby-netty/pom.xml | 2 +- modules/jooby-pac4j/pom.xml | 2 +- modules/jooby-pac4j2/pom.xml | 2 +- modules/jooby-pebble/pom.xml | 2 +- modules/jooby-quartz/pom.xml | 2 +- modules/jooby-querydsl/pom.xml | 2 +- modules/jooby-reactor/pom.xml | 2 +- modules/jooby-requery/pom.xml | 2 +- modules/jooby-rocker/pom.xml | 2 +- modules/jooby-run/pom.xml | 2 +- modules/jooby-rxjava-jdbc/pom.xml | 2 +- modules/jooby-rxjava/pom.xml | 2 +- modules/jooby-scanner/pom.xml | 2 +- modules/jooby-servlet/pom.xml | 2 +- modules/jooby-sitemap/pom.xml | 2 +- modules/jooby-spymemcached/pom.xml | 2 +- modules/jooby-thymeleaf/pom.xml | 2 +- modules/jooby-unbescape/pom.xml | 2 +- modules/jooby-undertow/pom.xml | 2 +- modules/jooby-whoops/pom.xml | 2 +- modules/jooby-yasson/pom.xml | 2 +- modules/pom.xml | 2 +- pom.xml | 2 +- 96 files changed, 299 insertions(+), 96 deletions(-) diff --git a/jooby/pom.xml b/jooby/pom.xml index d769fcb6b1..8a0d3371f2 100644 --- a/jooby/pom.xml +++ b/jooby/pom.xml @@ -6,7 +6,7 @@ org.jooby jooby-project - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/jooby/src/main/java/org/jooby/internal/AssetSource.java b/jooby/src/main/java/org/jooby/internal/AssetSource.java index d6779e9c9d..0ec547ca5a 100644 --- a/jooby/src/main/java/org/jooby/internal/AssetSource.java +++ b/jooby/src/main/java/org/jooby/internal/AssetSource.java @@ -1,3 +1,206 @@ +/** + * Apache License + * Version 2.0, January 2004 + * http://www.apache.org/licenses/ + * + * TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + * + * 1. Definitions. + * + * "License" shall mean the terms and conditions for use, reproduction, + * and distribution as defined by Sections 1 through 9 of this document. + * + * "Licensor" shall mean the copyright owner or entity authorized by + * the copyright owner that is granting the License. + * + * "Legal Entity" shall mean the union of the acting entity and all + * other entities that control, are controlled by, or are under common + * control with that entity. For the purposes of this definition, + * "control" means (i) the power, direct or indirect, to cause the + * direction or management of such entity, whether by contract or + * otherwise, or (ii) ownership of fifty percent (50%) or more of the + * outstanding shares, or (iii) beneficial ownership of such entity. + * + * "You" (or "Your") shall mean an individual or Legal Entity + * exercising permissions granted by this License. + * + * "Source" form shall mean the preferred form for making modifications, + * including but not limited to software source code, documentation + * source, and configuration files. + * + * "Object" form shall mean any form resulting from mechanical + * transformation or translation of a Source form, including but + * not limited to compiled object code, generated documentation, + * and conversions to other media types. + * + * "Work" shall mean the work of authorship, whether in Source or + * Object form, made available under the License, as indicated by a + * copyright notice that is included in or attached to the work + * (an example is provided in the Appendix below). + * + * "Derivative Works" shall mean any work, whether in Source or Object + * form, that is based on (or derived from) the Work and for which the + * editorial revisions, annotations, elaborations, or other modifications + * represent, as a whole, an original work of authorship. For the purposes + * of this License, Derivative Works shall not include works that remain + * separable from, or merely link (or bind by name) to the interfaces of, + * the Work and Derivative Works thereof. + * + * "Contribution" shall mean any work of authorship, including + * the original version of the Work and any modifications or additions + * to that Work or Derivative Works thereof, that is intentionally + * submitted to Licensor for inclusion in the Work by the copyright owner + * or by an individual or Legal Entity authorized to submit on behalf of + * the copyright owner. For the purposes of this definition, "submitted" + * means any form of electronic, verbal, or written communication sent + * to the Licensor or its representatives, including but not limited to + * communication on electronic mailing lists, source code control systems, + * and issue tracking systems that are managed by, or on behalf of, the + * Licensor for the purpose of discussing and improving the Work, but + * excluding communication that is conspicuously marked or otherwise + * designated in writing by the copyright owner as "Not a Contribution." + * + * "Contributor" shall mean Licensor and any individual or Legal Entity + * on behalf of whom a Contribution has been received by Licensor and + * subsequently incorporated within the Work. + * + * 2. Grant of Copyright License. Subject to the terms and conditions of + * this License, each Contributor hereby grants to You a perpetual, + * worldwide, non-exclusive, no-charge, royalty-free, irrevocable + * copyright license to reproduce, prepare Derivative Works of, + * publicly display, publicly perform, sublicense, and distribute the + * Work and such Derivative Works in Source or Object form. + * + * 3. Grant of Patent License. Subject to the terms and conditions of + * this License, each Contributor hereby grants to You a perpetual, + * worldwide, non-exclusive, no-charge, royalty-free, irrevocable + * (except as stated in this section) patent license to make, have made, + * use, offer to sell, sell, import, and otherwise transfer the Work, + * where such license applies only to those patent claims licensable + * by such Contributor that are necessarily infringed by their + * Contribution(s) alone or by combination of their Contribution(s) + * with the Work to which such Contribution(s) was submitted. If You + * institute patent litigation against any entity (including a + * cross-claim or counterclaim in a lawsuit) alleging that the Work + * or a Contribution incorporated within the Work constitutes direct + * or contributory patent infringement, then any patent licenses + * granted to You under this License for that Work shall terminate + * as of the date such litigation is filed. + * + * 4. Redistribution. You may reproduce and distribute copies of the + * Work or Derivative Works thereof in any medium, with or without + * modifications, and in Source or Object form, provided that You + * meet the following conditions: + * + * (a) You must give any other recipients of the Work or + * Derivative Works a copy of this License; and + * + * (b) You must cause any modified files to carry prominent notices + * stating that You changed the files; and + * + * (c) You must retain, in the Source form of any Derivative Works + * that You distribute, all copyright, patent, trademark, and + * attribution notices from the Source form of the Work, + * excluding those notices that do not pertain to any part of + * the Derivative Works; and + * + * (d) If the Work includes a "NOTICE" text file as part of its + * distribution, then any Derivative Works that You distribute must + * include a readable copy of the attribution notices contained + * within such NOTICE file, excluding those notices that do not + * pertain to any part of the Derivative Works, in at least one + * of the following places: within a NOTICE text file distributed + * as part of the Derivative Works; within the Source form or + * documentation, if provided along with the Derivative Works; or, + * within a display generated by the Derivative Works, if and + * wherever such third-party notices normally appear. The contents + * of the NOTICE file are for informational purposes only and + * do not modify the License. You may add Your own attribution + * notices within Derivative Works that You distribute, alongside + * or as an addendum to the NOTICE text from the Work, provided + * that such additional attribution notices cannot be construed + * as modifying the License. + * + * You may add Your own copyright statement to Your modifications and + * may provide additional or different license terms and conditions + * for use, reproduction, or distribution of Your modifications, or + * for any such Derivative Works as a whole, provided Your use, + * reproduction, and distribution of the Work otherwise complies with + * the conditions stated in this License. + * + * 5. Submission of Contributions. Unless You explicitly state otherwise, + * any Contribution intentionally submitted for inclusion in the Work + * by You to the Licensor shall be under the terms and conditions of + * this License, without any additional terms or conditions. + * Notwithstanding the above, nothing herein shall supersede or modify + * the terms of any separate license agreement you may have executed + * with Licensor regarding such Contributions. + * + * 6. Trademarks. This License does not grant permission to use the trade + * names, trademarks, service marks, or product names of the Licensor, + * except as required for reasonable and customary use in describing the + * origin of the Work and reproducing the content of the NOTICE file. + * + * 7. Disclaimer of Warranty. Unless required by applicable law or + * agreed to in writing, Licensor provides the Work (and each + * Contributor provides its Contributions) on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + * implied, including, without limitation, any warranties or conditions + * of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + * PARTICULAR PURPOSE. You are solely responsible for determining the + * appropriateness of using or redistributing the Work and assume any + * risks associated with Your exercise of permissions under this License. + * + * 8. Limitation of Liability. In no event and under no legal theory, + * whether in tort (including negligence), contract, or otherwise, + * unless required by applicable law (such as deliberate and grossly + * negligent acts) or agreed to in writing, shall any Contributor be + * liable to You for damages, including any direct, indirect, special, + * incidental, or consequential damages of any character arising as a + * result of this License or out of the use or inability to use the + * Work (including but not limited to damages for loss of goodwill, + * work stoppage, computer failure or malfunction, or any and all + * other commercial damages or losses), even if such Contributor + * has been advised of the possibility of such damages. + * + * 9. Accepting Warranty or Additional Liability. While redistributing + * the Work or Derivative Works thereof, You may choose to offer, + * and charge a fee for, acceptance of support, warranty, indemnity, + * or other liability obligations and/or rights consistent with this + * License. However, in accepting such obligations, You may act only + * on Your own behalf and on Your sole responsibility, not on behalf + * of any other Contributor, and only if You agree to indemnify, + * defend, and hold each Contributor harmless for any liability + * incurred by, or claims asserted against, such Contributor by reason + * of your accepting any such warranty or additional liability. + * + * END OF TERMS AND CONDITIONS + * + * APPENDIX: How to apply the Apache License to your work. + * + * To apply the Apache License to your work, attach the following + * boilerplate notice, with the fields enclosed by brackets "{}" + * replaced with your own identifying information. (Don't include + * the brackets!) The text should be enclosed in the appropriate + * comment syntax for the file format. We also recommend that a + * file or class name and description of purpose be included on the + * same "printed page" as the copyright notice for easier + * identification within third-party archives. + * + * Copyright 2014 Edgar Espina + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package org.jooby.internal; import com.google.common.base.Strings; diff --git a/modules/coverage-report/pom.xml b/modules/coverage-report/pom.xml index 262f9d15e3..4221c860ca 100644 --- a/modules/coverage-report/pom.xml +++ b/modules/coverage-report/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-akka/pom.xml b/modules/jooby-akka/pom.xml index 99098b9b01..39dbbe9644 100644 --- a/modules/jooby-akka/pom.xml +++ b/modules/jooby-akka/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-apitool/pom.xml b/modules/jooby-apitool/pom.xml index ca91b9e621..2abb7ae819 100644 --- a/modules/jooby-apitool/pom.xml +++ b/modules/jooby-apitool/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-archetype/pom.xml b/modules/jooby-archetype/pom.xml index 4dff2a851b..1afe232e1f 100644 --- a/modules/jooby-archetype/pom.xml +++ b/modules/jooby-archetype/pom.xml @@ -7,7 +7,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 jooby-archetype diff --git a/modules/jooby-assets-autoprefixer/pom.xml b/modules/jooby-assets-autoprefixer/pom.xml index a58f042c04..2daf35809c 100644 --- a/modules/jooby-assets-autoprefixer/pom.xml +++ b/modules/jooby-assets-autoprefixer/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-assets-babel/pom.xml b/modules/jooby-assets-babel/pom.xml index 0372109a19..62c8eebc86 100644 --- a/modules/jooby-assets-babel/pom.xml +++ b/modules/jooby-assets-babel/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-assets-clean-css/pom.xml b/modules/jooby-assets-clean-css/pom.xml index 6a1dc5f13d..a631000c99 100644 --- a/modules/jooby-assets-clean-css/pom.xml +++ b/modules/jooby-assets-clean-css/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-assets-closure-compiler/pom.xml b/modules/jooby-assets-closure-compiler/pom.xml index c48a4e28f9..1d1af32cf2 100644 --- a/modules/jooby-assets-closure-compiler/pom.xml +++ b/modules/jooby-assets-closure-compiler/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-assets-csslint/pom.xml b/modules/jooby-assets-csslint/pom.xml index beb810bbf4..5b9fd2cad2 100644 --- a/modules/jooby-assets-csslint/pom.xml +++ b/modules/jooby-assets-csslint/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-assets-j2v8/pom.xml b/modules/jooby-assets-j2v8/pom.xml index ad2e28bfc3..34bfec11d1 100644 --- a/modules/jooby-assets-j2v8/pom.xml +++ b/modules/jooby-assets-j2v8/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-assets-jscs/pom.xml b/modules/jooby-assets-jscs/pom.xml index 9f2f196459..af18a9139f 100644 --- a/modules/jooby-assets-jscs/pom.xml +++ b/modules/jooby-assets-jscs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-assets-jshint/pom.xml b/modules/jooby-assets-jshint/pom.xml index 0dbbc139cb..a090af6060 100644 --- a/modules/jooby-assets-jshint/pom.xml +++ b/modules/jooby-assets-jshint/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-assets-less/pom.xml b/modules/jooby-assets-less/pom.xml index 00f1824297..7071d2a6b6 100644 --- a/modules/jooby-assets-less/pom.xml +++ b/modules/jooby-assets-less/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-assets-less4j/pom.xml b/modules/jooby-assets-less4j/pom.xml index 9a50c96c1a..2a8fb5426b 100644 --- a/modules/jooby-assets-less4j/pom.xml +++ b/modules/jooby-assets-less4j/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-assets-ng-annotate/pom.xml b/modules/jooby-assets-ng-annotate/pom.xml index af169dd99f..c08beccec3 100644 --- a/modules/jooby-assets-ng-annotate/pom.xml +++ b/modules/jooby-assets-ng-annotate/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-assets-nodejs/pom.xml b/modules/jooby-assets-nodejs/pom.xml index 778d627c6b..4d06ab5dc2 100644 --- a/modules/jooby-assets-nodejs/pom.xml +++ b/modules/jooby-assets-nodejs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-assets-requirejs/pom.xml b/modules/jooby-assets-requirejs/pom.xml index 6a77538515..c8ceeabc1a 100644 --- a/modules/jooby-assets-requirejs/pom.xml +++ b/modules/jooby-assets-requirejs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-assets-rollup/pom.xml b/modules/jooby-assets-rollup/pom.xml index bc93e897d7..1348bdef66 100644 --- a/modules/jooby-assets-rollup/pom.xml +++ b/modules/jooby-assets-rollup/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-assets-sass/pom.xml b/modules/jooby-assets-sass/pom.xml index 3f1601bfda..b23f9cd720 100644 --- a/modules/jooby-assets-sass/pom.xml +++ b/modules/jooby-assets-sass/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-assets-svg-sprites/pom.xml b/modules/jooby-assets-svg-sprites/pom.xml index 2533627571..d302b6bcf8 100644 --- a/modules/jooby-assets-svg-sprites/pom.xml +++ b/modules/jooby-assets-svg-sprites/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-assets-svg-symbol/pom.xml b/modules/jooby-assets-svg-symbol/pom.xml index 06b3b980d6..4506ba1dd8 100644 --- a/modules/jooby-assets-svg-symbol/pom.xml +++ b/modules/jooby-assets-svg-symbol/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-assets-uglify/pom.xml b/modules/jooby-assets-uglify/pom.xml index 85da8a2d47..f526fe0fb8 100644 --- a/modules/jooby-assets-uglify/pom.xml +++ b/modules/jooby-assets-uglify/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-assets-yui-compressor/pom.xml b/modules/jooby-assets-yui-compressor/pom.xml index 4eb7a0fbb1..79c4340339 100644 --- a/modules/jooby-assets-yui-compressor/pom.xml +++ b/modules/jooby-assets-yui-compressor/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-assets/pom.xml b/modules/jooby-assets/pom.xml index f5e5372e1a..fe17b8debc 100644 --- a/modules/jooby-assets/pom.xml +++ b/modules/jooby-assets/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-aws/pom.xml b/modules/jooby-aws/pom.xml index 27ff827585..f3fe7922c0 100644 --- a/modules/jooby-aws/pom.xml +++ b/modules/jooby-aws/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-banner/pom.xml b/modules/jooby-banner/pom.xml index b1ebd17ee9..abf9957b74 100644 --- a/modules/jooby-banner/pom.xml +++ b/modules/jooby-banner/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-bom/pom.xml b/modules/jooby-bom/pom.xml index 878032a857..0cfe21ccde 100644 --- a/modules/jooby-bom/pom.xml +++ b/modules/jooby-bom/pom.xml @@ -4,13 +4,13 @@ 4.0.0 org.jooby jooby-bom - 1.6.6 + 1.6.7 pom jooby-bom Jooby (Bill of Materials) https://github.com/jooby-project/jooby - 1.6.6 + 1.6.7 2.5.13 4.7 3.0.17 diff --git a/modules/jooby-caffeine/pom.xml b/modules/jooby-caffeine/pom.xml index bb0aeeaff3..911303740f 100644 --- a/modules/jooby-caffeine/pom.xml +++ b/modules/jooby-caffeine/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-camel/pom.xml b/modules/jooby-camel/pom.xml index 724429d072..6688f96c28 100644 --- a/modules/jooby-camel/pom.xml +++ b/modules/jooby-camel/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-cassandra/pom.xml b/modules/jooby-cassandra/pom.xml index c0ffc1f289..69276fa48b 100644 --- a/modules/jooby-cassandra/pom.xml +++ b/modules/jooby-cassandra/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-commons-email/pom.xml b/modules/jooby-commons-email/pom.xml index d6caae7b5b..bfab7765e4 100644 --- a/modules/jooby-commons-email/pom.xml +++ b/modules/jooby-commons-email/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-consul/pom.xml b/modules/jooby-consul/pom.xml index 87eef29228..5d74099047 100644 --- a/modules/jooby-consul/pom.xml +++ b/modules/jooby-consul/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-couchbase/pom.xml b/modules/jooby-couchbase/pom.xml index 0ad9b53fb5..f7390ac2b0 100644 --- a/modules/jooby-couchbase/pom.xml +++ b/modules/jooby-couchbase/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-crash/pom.xml b/modules/jooby-crash/pom.xml index 982ef65588..f1409346a8 100644 --- a/modules/jooby-crash/pom.xml +++ b/modules/jooby-crash/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-csl/pom.xml b/modules/jooby-csl/pom.xml index 8be89147ac..84baa8dc90 100644 --- a/modules/jooby-csl/pom.xml +++ b/modules/jooby-csl/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-dist/pom.xml b/modules/jooby-dist/pom.xml index 6e08bbe015..0c7fa63a35 100644 --- a/modules/jooby-dist/pom.xml +++ b/modules/jooby-dist/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-ebean/pom.xml b/modules/jooby-ebean/pom.xml index 9f9b3d0f84..2593f7c227 100644 --- a/modules/jooby-ebean/pom.xml +++ b/modules/jooby-ebean/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-ehcache/pom.xml b/modules/jooby-ehcache/pom.xml index dec42d5265..5390b4d4d9 100644 --- a/modules/jooby-ehcache/pom.xml +++ b/modules/jooby-ehcache/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-elasticsearch/pom.xml b/modules/jooby-elasticsearch/pom.xml index 057e438d49..6a675d4743 100644 --- a/modules/jooby-elasticsearch/pom.xml +++ b/modules/jooby-elasticsearch/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-eventbus/pom.xml b/modules/jooby-eventbus/pom.xml index a66d25d312..b5bd632442 100644 --- a/modules/jooby-eventbus/pom.xml +++ b/modules/jooby-eventbus/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-executor/pom.xml b/modules/jooby-executor/pom.xml index 84b99463c3..84d201b697 100644 --- a/modules/jooby-executor/pom.xml +++ b/modules/jooby-executor/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-exposed/pom.xml b/modules/jooby-exposed/pom.xml index 8d63deadf6..8cbb2a47f5 100644 --- a/modules/jooby-exposed/pom.xml +++ b/modules/jooby-exposed/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-filewatcher/pom.xml b/modules/jooby-filewatcher/pom.xml index ac63acf98c..e13436c02a 100644 --- a/modules/jooby-filewatcher/pom.xml +++ b/modules/jooby-filewatcher/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-flyway/pom.xml b/modules/jooby-flyway/pom.xml index f353339bef..5f1b03ddac 100644 --- a/modules/jooby-flyway/pom.xml +++ b/modules/jooby-flyway/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-frontend/pom.xml b/modules/jooby-frontend/pom.xml index 5bce0c50a1..f16eff45bf 100644 --- a/modules/jooby-frontend/pom.xml +++ b/modules/jooby-frontend/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-ftl/pom.xml b/modules/jooby-ftl/pom.xml index dc527ccc44..346f4aff4d 100644 --- a/modules/jooby-ftl/pom.xml +++ b/modules/jooby-ftl/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-gradle-plugin/pom.xml b/modules/jooby-gradle-plugin/pom.xml index 617ea12046..f4dc878ef3 100644 --- a/modules/jooby-gradle-plugin/pom.xml +++ b/modules/jooby-gradle-plugin/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-gson/pom.xml b/modules/jooby-gson/pom.xml index 9c6ce85d13..a59775135e 100644 --- a/modules/jooby-gson/pom.xml +++ b/modules/jooby-gson/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-guava-cache/pom.xml b/modules/jooby-guava-cache/pom.xml index e164487f91..5c265f7658 100644 --- a/modules/jooby-guava-cache/pom.xml +++ b/modules/jooby-guava-cache/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-hazelcast/pom.xml b/modules/jooby-hazelcast/pom.xml index a16935763c..5b4ce8f8e1 100644 --- a/modules/jooby-hazelcast/pom.xml +++ b/modules/jooby-hazelcast/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-hbm/pom.xml b/modules/jooby-hbm/pom.xml index 1ebf615b62..b56f713180 100644 --- a/modules/jooby-hbm/pom.xml +++ b/modules/jooby-hbm/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-hbs/pom.xml b/modules/jooby-hbs/pom.xml index c1e32013aa..9df19247f9 100644 --- a/modules/jooby-hbs/pom.xml +++ b/modules/jooby-hbs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-hbv/pom.xml b/modules/jooby-hbv/pom.xml index 19df661450..c031a9d1c6 100644 --- a/modules/jooby-hbv/pom.xml +++ b/modules/jooby-hbv/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-jackson/pom.xml b/modules/jooby-jackson/pom.xml index 9891a32593..db9531ec4a 100644 --- a/modules/jooby-jackson/pom.xml +++ b/modules/jooby-jackson/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-jade/pom.xml b/modules/jooby-jade/pom.xml index 372ad8069b..5c4291bd12 100644 --- a/modules/jooby-jade/pom.xml +++ b/modules/jooby-jade/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-jdbc/pom.xml b/modules/jooby-jdbc/pom.xml index 07943e372f..2c23ae73e5 100644 --- a/modules/jooby-jdbc/pom.xml +++ b/modules/jooby-jdbc/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-jdbi/pom.xml b/modules/jooby-jdbi/pom.xml index 45fd671de7..35bf88986e 100644 --- a/modules/jooby-jdbi/pom.xml +++ b/modules/jooby-jdbi/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-jdbi3/pom.xml b/modules/jooby-jdbi3/pom.xml index d0ced4969c..697636fa34 100644 --- a/modules/jooby-jdbi3/pom.xml +++ b/modules/jooby-jdbi3/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-jedis/pom.xml b/modules/jooby-jedis/pom.xml index a7701838eb..81e4d47f32 100644 --- a/modules/jooby-jedis/pom.xml +++ b/modules/jooby-jedis/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-jetty/pom.xml b/modules/jooby-jetty/pom.xml index b3cb2ba7bc..05f738e038 100644 --- a/modules/jooby-jetty/pom.xml +++ b/modules/jooby-jetty/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-jongo/pom.xml b/modules/jooby-jongo/pom.xml index ef0ec861c9..c782c69105 100644 --- a/modules/jooby-jongo/pom.xml +++ b/modules/jooby-jongo/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-jooq/pom.xml b/modules/jooby-jooq/pom.xml index eb8aa61200..977ed3f547 100644 --- a/modules/jooby-jooq/pom.xml +++ b/modules/jooby-jooq/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-lang-kotlin/pom.xml b/modules/jooby-lang-kotlin/pom.xml index 0ea92d9b89..bf7f09dfe6 100644 --- a/modules/jooby-lang-kotlin/pom.xml +++ b/modules/jooby-lang-kotlin/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-livereload/pom.xml b/modules/jooby-livereload/pom.xml index 66576dea73..efba0c3c9a 100644 --- a/modules/jooby-livereload/pom.xml +++ b/modules/jooby-livereload/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 jooby-livereload jooby-livereload diff --git a/modules/jooby-maven-plugin/pom.xml b/modules/jooby-maven-plugin/pom.xml index b058852677..ffb58c47c3 100644 --- a/modules/jooby-maven-plugin/pom.xml +++ b/modules/jooby-maven-plugin/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-metrics/pom.xml b/modules/jooby-metrics/pom.xml index f58260774f..d139b961da 100644 --- a/modules/jooby-metrics/pom.xml +++ b/modules/jooby-metrics/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-micrometer/pom.xml b/modules/jooby-micrometer/pom.xml index 875614e3fe..0e273ea794 100644 --- a/modules/jooby-micrometer/pom.xml +++ b/modules/jooby-micrometer/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-mongodb-rx/pom.xml b/modules/jooby-mongodb-rx/pom.xml index e366f46674..a612c3a332 100644 --- a/modules/jooby-mongodb-rx/pom.xml +++ b/modules/jooby-mongodb-rx/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-mongodb/pom.xml b/modules/jooby-mongodb/pom.xml index f2dff5f75b..cd7745368a 100644 --- a/modules/jooby-mongodb/pom.xml +++ b/modules/jooby-mongodb/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-morphia/pom.xml b/modules/jooby-morphia/pom.xml index 56a5f68c55..a290eed5b6 100644 --- a/modules/jooby-morphia/pom.xml +++ b/modules/jooby-morphia/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-neo4j/pom.xml b/modules/jooby-neo4j/pom.xml index 61e1ffee21..4269ce91f8 100644 --- a/modules/jooby-neo4j/pom.xml +++ b/modules/jooby-neo4j/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-netty/pom.xml b/modules/jooby-netty/pom.xml index bb17d3fd27..1e8d0344ec 100644 --- a/modules/jooby-netty/pom.xml +++ b/modules/jooby-netty/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-pac4j/pom.xml b/modules/jooby-pac4j/pom.xml index 67d42cdf35..1d1ca399b8 100644 --- a/modules/jooby-pac4j/pom.xml +++ b/modules/jooby-pac4j/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-pac4j2/pom.xml b/modules/jooby-pac4j2/pom.xml index 315f526e66..c6dd376299 100644 --- a/modules/jooby-pac4j2/pom.xml +++ b/modules/jooby-pac4j2/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-pebble/pom.xml b/modules/jooby-pebble/pom.xml index 8d6e2b265b..6aa35f52fa 100644 --- a/modules/jooby-pebble/pom.xml +++ b/modules/jooby-pebble/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-quartz/pom.xml b/modules/jooby-quartz/pom.xml index 397d364ba6..4e52f30277 100644 --- a/modules/jooby-quartz/pom.xml +++ b/modules/jooby-quartz/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-querydsl/pom.xml b/modules/jooby-querydsl/pom.xml index ab4f7dac03..ffd4441531 100644 --- a/modules/jooby-querydsl/pom.xml +++ b/modules/jooby-querydsl/pom.xml @@ -4,7 +4,7 @@ modules org.jooby - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-reactor/pom.xml b/modules/jooby-reactor/pom.xml index bc3ee251cf..65273f592f 100644 --- a/modules/jooby-reactor/pom.xml +++ b/modules/jooby-reactor/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-requery/pom.xml b/modules/jooby-requery/pom.xml index 94e144e797..94ba854961 100644 --- a/modules/jooby-requery/pom.xml +++ b/modules/jooby-requery/pom.xml @@ -4,7 +4,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 jooby-requery requery module diff --git a/modules/jooby-rocker/pom.xml b/modules/jooby-rocker/pom.xml index e243d43fbb..d1bdd3779a 100644 --- a/modules/jooby-rocker/pom.xml +++ b/modules/jooby-rocker/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 jooby-rocker jooby-rocker diff --git a/modules/jooby-run/pom.xml b/modules/jooby-run/pom.xml index c039323b15..1596d8575d 100644 --- a/modules/jooby-run/pom.xml +++ b/modules/jooby-run/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-rxjava-jdbc/pom.xml b/modules/jooby-rxjava-jdbc/pom.xml index 5d039321d2..fdc9afd1ff 100644 --- a/modules/jooby-rxjava-jdbc/pom.xml +++ b/modules/jooby-rxjava-jdbc/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-rxjava/pom.xml b/modules/jooby-rxjava/pom.xml index caed31897c..f44fbe0f4c 100644 --- a/modules/jooby-rxjava/pom.xml +++ b/modules/jooby-rxjava/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-scanner/pom.xml b/modules/jooby-scanner/pom.xml index d15584d72d..ed11065ad7 100644 --- a/modules/jooby-scanner/pom.xml +++ b/modules/jooby-scanner/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-servlet/pom.xml b/modules/jooby-servlet/pom.xml index 8b844a39c7..38a1802fcf 100644 --- a/modules/jooby-servlet/pom.xml +++ b/modules/jooby-servlet/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-sitemap/pom.xml b/modules/jooby-sitemap/pom.xml index dbf0a55c46..59f91bd7fc 100644 --- a/modules/jooby-sitemap/pom.xml +++ b/modules/jooby-sitemap/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-spymemcached/pom.xml b/modules/jooby-spymemcached/pom.xml index 963f2f0096..37d8948f54 100644 --- a/modules/jooby-spymemcached/pom.xml +++ b/modules/jooby-spymemcached/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-thymeleaf/pom.xml b/modules/jooby-thymeleaf/pom.xml index 1621630920..4f7259c56c 100644 --- a/modules/jooby-thymeleaf/pom.xml +++ b/modules/jooby-thymeleaf/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-unbescape/pom.xml b/modules/jooby-unbescape/pom.xml index 50016c79be..567d9d211f 100644 --- a/modules/jooby-unbescape/pom.xml +++ b/modules/jooby-unbescape/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-undertow/pom.xml b/modules/jooby-undertow/pom.xml index 9658152b6a..ed514957d6 100644 --- a/modules/jooby-undertow/pom.xml +++ b/modules/jooby-undertow/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-whoops/pom.xml b/modules/jooby-whoops/pom.xml index 796ac24cf6..7fa7f38bda 100644 --- a/modules/jooby-whoops/pom.xml +++ b/modules/jooby-whoops/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/jooby-yasson/pom.xml b/modules/jooby-yasson/pom.xml index 65cc39ddbf..af81016431 100644 --- a/modules/jooby-yasson/pom.xml +++ b/modules/jooby-yasson/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7-SNAPSHOT + 1.6.7 4.0.0 diff --git a/modules/pom.xml b/modules/pom.xml index bd23680843..c37160891c 100644 --- a/modules/pom.xml +++ b/modules/pom.xml @@ -6,7 +6,7 @@ org.jooby jooby-project - 1.6.7-SNAPSHOT + 1.6.7 modules diff --git a/pom.xml b/pom.xml index 974b675f34..3d275787b3 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ 4.0.0 org.jooby jooby-project - 1.6.7-SNAPSHOT + 1.6.7 pom jooby-project From b19e5f9a20b83f0bc8cd4a88eb6b491a5c697869 Mon Sep 17 00:00:00 2001 From: Tobias Scherer Date: Tue, 14 Jul 2020 16:20:01 +0200 Subject: [PATCH 89/93] Make ClassVisitors support ASM API v7 in order to support JAVA 11 --- jooby/src/main/java/org/jooby/internal/RouteMetadata.java | 4 ++-- .../java/org/jooby/internal/apitool/TypeDescriptorParser.java | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/jooby/src/main/java/org/jooby/internal/RouteMetadata.java b/jooby/src/main/java/org/jooby/internal/RouteMetadata.java index bfbd0a475b..2f95efd40f 100644 --- a/jooby/src/main/java/org/jooby/internal/RouteMetadata.java +++ b/jooby/src/main/java/org/jooby/internal/RouteMetadata.java @@ -289,7 +289,7 @@ private static String classfile(final Class owner) { } private static ClassVisitor visitor(final Map md) { - return new ClassVisitor(Opcodes.ASM5) { + return new ClassVisitor(Opcodes.ASM7) { @Override public MethodVisitor visitMethod(final int access, final String name, @@ -308,7 +308,7 @@ public MethodVisitor visitMethod(final int access, final String name, int minIdx = ((access & Opcodes.ACC_STATIC) > 0) ? 0 : 1; int maxIdx = Arrays.stream(args).mapToInt(Type::getSize).sum(); - return new MethodVisitor(Opcodes.ASM5) { + return new MethodVisitor(Opcodes.ASM7) { private int i = 0; diff --git a/modules/jooby-apitool/src/main/java/org/jooby/internal/apitool/TypeDescriptorParser.java b/modules/jooby-apitool/src/main/java/org/jooby/internal/apitool/TypeDescriptorParser.java index 088c5cba67..e3037ac882 100644 --- a/modules/jooby-apitool/src/main/java/org/jooby/internal/apitool/TypeDescriptorParser.java +++ b/modules/jooby-apitool/src/main/java/org/jooby/internal/apitool/TypeDescriptorParser.java @@ -222,7 +222,7 @@ class TypeDescriptorParser extends SignatureVisitor { private int index; private TypeDescriptorParser(final ClassLoader loader) { - super(Opcodes.ASM5); + super(Opcodes.ASM7); this.loader = loader; } From 7d327b5b66c2ebadbb623538c956b8f23073472c Mon Sep 17 00:00:00 2001 From: Tobias Scherer Date: Tue, 14 Jul 2020 16:41:40 +0200 Subject: [PATCH 90/93] Version bump for ASM from 7.2-beta to 7.3.1 --- modules/jooby-bom/pom.xml | 2 +- pom.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/jooby-bom/pom.xml b/modules/jooby-bom/pom.xml index 0cfe21ccde..5bc7384e8d 100644 --- a/modules/jooby-bom/pom.xml +++ b/modules/jooby-bom/pom.xml @@ -14,7 +14,7 @@ 2.5.13 4.7 3.0.17 - 7.2-beta + 7.3.1 1.9.40 2.1.2 1.11.358 diff --git a/pom.xml b/pom.xml index 3d275787b3..158a1fae33 100644 --- a/pom.xml +++ b/pom.xml @@ -3155,7 +3155,7 @@ org.eclipse.jdt.apt.processorOptions/defaultOverwrite=true 2.5.13 4.7 3.0.17 - 7.2-beta + 7.3.1 1.9.40 2.1.2 1.11.358 From 5cc23f38fb3f0a7313eb12705a5be0e95aab759f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcel=20St=C3=B6r?= Date: Tue, 22 Jun 2021 14:04:18 +0200 Subject: [PATCH 91/93] Validate HTTP headers in Netty Fixes #2252 for the 1.x branch --- .../src/main/java/org/jooby/internal/netty/NettyPush.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/jooby-netty/src/main/java/org/jooby/internal/netty/NettyPush.java b/modules/jooby-netty/src/main/java/org/jooby/internal/netty/NettyPush.java index cf331ed7df..157f184a23 100644 --- a/modules/jooby-netty/src/main/java/org/jooby/internal/netty/NettyPush.java +++ b/modules/jooby-netty/src/main/java/org/jooby/internal/netty/NettyPush.java @@ -261,7 +261,7 @@ public void push(final String method, final String path, final Map Date: Tue, 28 Jul 2020 14:55:04 -0300 Subject: [PATCH 92/93] v1.6.8 --- build/release.sh | 6 +++--- jooby/pom.xml | 2 +- modules/coverage-report/pom.xml | 2 +- modules/jooby-akka/pom.xml | 2 +- modules/jooby-apitool/pom.xml | 2 +- modules/jooby-archetype/pom.xml | 2 +- modules/jooby-assets-autoprefixer/pom.xml | 2 +- modules/jooby-assets-babel/pom.xml | 2 +- modules/jooby-assets-clean-css/pom.xml | 2 +- modules/jooby-assets-closure-compiler/pom.xml | 2 +- modules/jooby-assets-csslint/pom.xml | 2 +- modules/jooby-assets-j2v8/pom.xml | 2 +- modules/jooby-assets-jscs/pom.xml | 2 +- modules/jooby-assets-jshint/pom.xml | 2 +- modules/jooby-assets-less/pom.xml | 2 +- modules/jooby-assets-less4j/pom.xml | 2 +- modules/jooby-assets-ng-annotate/pom.xml | 2 +- modules/jooby-assets-nodejs/pom.xml | 2 +- modules/jooby-assets-requirejs/pom.xml | 2 +- modules/jooby-assets-rollup/pom.xml | 2 +- modules/jooby-assets-sass/pom.xml | 2 +- modules/jooby-assets-svg-sprites/pom.xml | 2 +- modules/jooby-assets-svg-symbol/pom.xml | 2 +- modules/jooby-assets-uglify/pom.xml | 2 +- modules/jooby-assets-yui-compressor/pom.xml | 2 +- modules/jooby-assets/pom.xml | 2 +- modules/jooby-aws/pom.xml | 2 +- modules/jooby-banner/pom.xml | 2 +- modules/jooby-bom/pom.xml | 4 ++-- modules/jooby-caffeine/pom.xml | 2 +- modules/jooby-camel/pom.xml | 2 +- modules/jooby-cassandra/pom.xml | 2 +- modules/jooby-commons-email/pom.xml | 2 +- modules/jooby-consul/pom.xml | 2 +- modules/jooby-couchbase/pom.xml | 2 +- modules/jooby-crash/pom.xml | 2 +- modules/jooby-csl/pom.xml | 2 +- modules/jooby-dist/pom.xml | 2 +- modules/jooby-ebean/pom.xml | 2 +- modules/jooby-ehcache/pom.xml | 2 +- modules/jooby-elasticsearch/pom.xml | 2 +- modules/jooby-eventbus/pom.xml | 2 +- modules/jooby-executor/pom.xml | 2 +- modules/jooby-exposed/pom.xml | 2 +- modules/jooby-filewatcher/pom.xml | 2 +- modules/jooby-flyway/pom.xml | 2 +- modules/jooby-frontend/pom.xml | 2 +- modules/jooby-ftl/pom.xml | 2 +- modules/jooby-gradle-plugin/pom.xml | 2 +- modules/jooby-gson/pom.xml | 2 +- modules/jooby-guava-cache/pom.xml | 2 +- modules/jooby-hazelcast/pom.xml | 2 +- modules/jooby-hbm/pom.xml | 2 +- modules/jooby-hbs/pom.xml | 2 +- modules/jooby-hbv/pom.xml | 2 +- modules/jooby-jackson/pom.xml | 2 +- modules/jooby-jade/pom.xml | 2 +- modules/jooby-jdbc/pom.xml | 2 +- modules/jooby-jdbi/pom.xml | 2 +- modules/jooby-jdbi3/pom.xml | 2 +- modules/jooby-jedis/pom.xml | 2 +- modules/jooby-jetty/pom.xml | 2 +- modules/jooby-jongo/pom.xml | 2 +- modules/jooby-jooq/pom.xml | 2 +- modules/jooby-lang-kotlin/pom.xml | 2 +- modules/jooby-livereload/pom.xml | 2 +- modules/jooby-maven-plugin/pom.xml | 2 +- modules/jooby-metrics/pom.xml | 2 +- modules/jooby-micrometer/pom.xml | 2 +- modules/jooby-mongodb-rx/pom.xml | 2 +- modules/jooby-mongodb/pom.xml | 2 +- modules/jooby-morphia/pom.xml | 2 +- modules/jooby-neo4j/pom.xml | 2 +- modules/jooby-netty/pom.xml | 2 +- modules/jooby-pac4j/pom.xml | 2 +- modules/jooby-pac4j2/pom.xml | 2 +- modules/jooby-pebble/pom.xml | 2 +- modules/jooby-quartz/pom.xml | 2 +- modules/jooby-querydsl/pom.xml | 2 +- modules/jooby-reactor/pom.xml | 2 +- modules/jooby-requery/pom.xml | 2 +- modules/jooby-rocker/pom.xml | 2 +- modules/jooby-run/pom.xml | 2 +- modules/jooby-rxjava-jdbc/pom.xml | 2 +- modules/jooby-rxjava/pom.xml | 2 +- modules/jooby-scanner/pom.xml | 2 +- modules/jooby-servlet/pom.xml | 2 +- modules/jooby-sitemap/pom.xml | 2 +- modules/jooby-spymemcached/pom.xml | 2 +- modules/jooby-thymeleaf/pom.xml | 2 +- modules/jooby-unbescape/pom.xml | 2 +- modules/jooby-undertow/pom.xml | 2 +- modules/jooby-whoops/pom.xml | 2 +- modules/jooby-yasson/pom.xml | 2 +- modules/pom.xml | 2 +- pom.xml | 2 +- 96 files changed, 99 insertions(+), 99 deletions(-) diff --git a/build/release.sh b/build/release.sh index fd80b8da72..cb7a424c2f 100755 --- a/build/release.sh +++ b/build/release.sh @@ -2,9 +2,9 @@ mvn -pl '!modules/coverage-report' clean deploy -P sonatype-oss-release -cd modules/jooby-bom +# cd modules/jooby-bom -groovy bom.groovy > pom.xml +# groovy bom.groovy > pom.xml # mvn -Dalpn-boot-version=$ALPN_VERSION clean deploy -P sonatype-oss-release -mvn clean deploy -P sonatype-oss-release +# mvn clean deploy -P sonatype-oss-release diff --git a/jooby/pom.xml b/jooby/pom.xml index 8a0d3371f2..870c76b94d 100644 --- a/jooby/pom.xml +++ b/jooby/pom.xml @@ -6,7 +6,7 @@ org.jooby jooby-project - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/coverage-report/pom.xml b/modules/coverage-report/pom.xml index 4221c860ca..c914b78607 100644 --- a/modules/coverage-report/pom.xml +++ b/modules/coverage-report/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-akka/pom.xml b/modules/jooby-akka/pom.xml index 39dbbe9644..a1274a440a 100644 --- a/modules/jooby-akka/pom.xml +++ b/modules/jooby-akka/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-apitool/pom.xml b/modules/jooby-apitool/pom.xml index 2abb7ae819..fb550b8f09 100644 --- a/modules/jooby-apitool/pom.xml +++ b/modules/jooby-apitool/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-archetype/pom.xml b/modules/jooby-archetype/pom.xml index 1afe232e1f..7a0ac36715 100644 --- a/modules/jooby-archetype/pom.xml +++ b/modules/jooby-archetype/pom.xml @@ -7,7 +7,7 @@ org.jooby modules - 1.6.7 + 1.6.8 jooby-archetype diff --git a/modules/jooby-assets-autoprefixer/pom.xml b/modules/jooby-assets-autoprefixer/pom.xml index 2daf35809c..1e09cf709b 100644 --- a/modules/jooby-assets-autoprefixer/pom.xml +++ b/modules/jooby-assets-autoprefixer/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-assets-babel/pom.xml b/modules/jooby-assets-babel/pom.xml index 62c8eebc86..a7cc5cf528 100644 --- a/modules/jooby-assets-babel/pom.xml +++ b/modules/jooby-assets-babel/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-assets-clean-css/pom.xml b/modules/jooby-assets-clean-css/pom.xml index a631000c99..0b595abc97 100644 --- a/modules/jooby-assets-clean-css/pom.xml +++ b/modules/jooby-assets-clean-css/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-assets-closure-compiler/pom.xml b/modules/jooby-assets-closure-compiler/pom.xml index 1d1af32cf2..0a18332e78 100644 --- a/modules/jooby-assets-closure-compiler/pom.xml +++ b/modules/jooby-assets-closure-compiler/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-assets-csslint/pom.xml b/modules/jooby-assets-csslint/pom.xml index 5b9fd2cad2..9893de7480 100644 --- a/modules/jooby-assets-csslint/pom.xml +++ b/modules/jooby-assets-csslint/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-assets-j2v8/pom.xml b/modules/jooby-assets-j2v8/pom.xml index 34bfec11d1..a9d67e952e 100644 --- a/modules/jooby-assets-j2v8/pom.xml +++ b/modules/jooby-assets-j2v8/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-assets-jscs/pom.xml b/modules/jooby-assets-jscs/pom.xml index af18a9139f..1acdf4efb3 100644 --- a/modules/jooby-assets-jscs/pom.xml +++ b/modules/jooby-assets-jscs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-assets-jshint/pom.xml b/modules/jooby-assets-jshint/pom.xml index a090af6060..ec1fb9b4de 100644 --- a/modules/jooby-assets-jshint/pom.xml +++ b/modules/jooby-assets-jshint/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-assets-less/pom.xml b/modules/jooby-assets-less/pom.xml index 7071d2a6b6..b75cece752 100644 --- a/modules/jooby-assets-less/pom.xml +++ b/modules/jooby-assets-less/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-assets-less4j/pom.xml b/modules/jooby-assets-less4j/pom.xml index 2a8fb5426b..dce781b91e 100644 --- a/modules/jooby-assets-less4j/pom.xml +++ b/modules/jooby-assets-less4j/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-assets-ng-annotate/pom.xml b/modules/jooby-assets-ng-annotate/pom.xml index c08beccec3..088b152170 100644 --- a/modules/jooby-assets-ng-annotate/pom.xml +++ b/modules/jooby-assets-ng-annotate/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-assets-nodejs/pom.xml b/modules/jooby-assets-nodejs/pom.xml index 4d06ab5dc2..f924400287 100644 --- a/modules/jooby-assets-nodejs/pom.xml +++ b/modules/jooby-assets-nodejs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-assets-requirejs/pom.xml b/modules/jooby-assets-requirejs/pom.xml index c8ceeabc1a..c6fe0ea91d 100644 --- a/modules/jooby-assets-requirejs/pom.xml +++ b/modules/jooby-assets-requirejs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-assets-rollup/pom.xml b/modules/jooby-assets-rollup/pom.xml index 1348bdef66..dc45c7a7fa 100644 --- a/modules/jooby-assets-rollup/pom.xml +++ b/modules/jooby-assets-rollup/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-assets-sass/pom.xml b/modules/jooby-assets-sass/pom.xml index b23f9cd720..ec86be28e8 100644 --- a/modules/jooby-assets-sass/pom.xml +++ b/modules/jooby-assets-sass/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-assets-svg-sprites/pom.xml b/modules/jooby-assets-svg-sprites/pom.xml index d302b6bcf8..e9c471c216 100644 --- a/modules/jooby-assets-svg-sprites/pom.xml +++ b/modules/jooby-assets-svg-sprites/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-assets-svg-symbol/pom.xml b/modules/jooby-assets-svg-symbol/pom.xml index 4506ba1dd8..d81ca40390 100644 --- a/modules/jooby-assets-svg-symbol/pom.xml +++ b/modules/jooby-assets-svg-symbol/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-assets-uglify/pom.xml b/modules/jooby-assets-uglify/pom.xml index f526fe0fb8..9988687b7b 100644 --- a/modules/jooby-assets-uglify/pom.xml +++ b/modules/jooby-assets-uglify/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-assets-yui-compressor/pom.xml b/modules/jooby-assets-yui-compressor/pom.xml index 79c4340339..442423850b 100644 --- a/modules/jooby-assets-yui-compressor/pom.xml +++ b/modules/jooby-assets-yui-compressor/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-assets/pom.xml b/modules/jooby-assets/pom.xml index fe17b8debc..cd6fc11580 100644 --- a/modules/jooby-assets/pom.xml +++ b/modules/jooby-assets/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-aws/pom.xml b/modules/jooby-aws/pom.xml index f3fe7922c0..f8be75995c 100644 --- a/modules/jooby-aws/pom.xml +++ b/modules/jooby-aws/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-banner/pom.xml b/modules/jooby-banner/pom.xml index abf9957b74..ddd16abadb 100644 --- a/modules/jooby-banner/pom.xml +++ b/modules/jooby-banner/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-bom/pom.xml b/modules/jooby-bom/pom.xml index 5bc7384e8d..c364b5a056 100644 --- a/modules/jooby-bom/pom.xml +++ b/modules/jooby-bom/pom.xml @@ -4,13 +4,13 @@ 4.0.0 org.jooby jooby-bom - 1.6.7 + 1.6.8 pom jooby-bom Jooby (Bill of Materials) https://github.com/jooby-project/jooby - 1.6.7 + 1.6.8 2.5.13 4.7 3.0.17 diff --git a/modules/jooby-caffeine/pom.xml b/modules/jooby-caffeine/pom.xml index 911303740f..5b452fff38 100644 --- a/modules/jooby-caffeine/pom.xml +++ b/modules/jooby-caffeine/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-camel/pom.xml b/modules/jooby-camel/pom.xml index 6688f96c28..fb5a5bcc71 100644 --- a/modules/jooby-camel/pom.xml +++ b/modules/jooby-camel/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-cassandra/pom.xml b/modules/jooby-cassandra/pom.xml index 69276fa48b..8ff4ec00e2 100644 --- a/modules/jooby-cassandra/pom.xml +++ b/modules/jooby-cassandra/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-commons-email/pom.xml b/modules/jooby-commons-email/pom.xml index bfab7765e4..99b95d984d 100644 --- a/modules/jooby-commons-email/pom.xml +++ b/modules/jooby-commons-email/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-consul/pom.xml b/modules/jooby-consul/pom.xml index 5d74099047..69a1bd9cbf 100644 --- a/modules/jooby-consul/pom.xml +++ b/modules/jooby-consul/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-couchbase/pom.xml b/modules/jooby-couchbase/pom.xml index f7390ac2b0..004d9c2dfc 100644 --- a/modules/jooby-couchbase/pom.xml +++ b/modules/jooby-couchbase/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-crash/pom.xml b/modules/jooby-crash/pom.xml index f1409346a8..1437e272c2 100644 --- a/modules/jooby-crash/pom.xml +++ b/modules/jooby-crash/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-csl/pom.xml b/modules/jooby-csl/pom.xml index 84baa8dc90..95a3e5d5aa 100644 --- a/modules/jooby-csl/pom.xml +++ b/modules/jooby-csl/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-dist/pom.xml b/modules/jooby-dist/pom.xml index 0c7fa63a35..695f15e8e9 100644 --- a/modules/jooby-dist/pom.xml +++ b/modules/jooby-dist/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-ebean/pom.xml b/modules/jooby-ebean/pom.xml index 2593f7c227..92ece67a3a 100644 --- a/modules/jooby-ebean/pom.xml +++ b/modules/jooby-ebean/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-ehcache/pom.xml b/modules/jooby-ehcache/pom.xml index 5390b4d4d9..c233a5ec64 100644 --- a/modules/jooby-ehcache/pom.xml +++ b/modules/jooby-ehcache/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-elasticsearch/pom.xml b/modules/jooby-elasticsearch/pom.xml index 6a675d4743..2095b4c4f8 100644 --- a/modules/jooby-elasticsearch/pom.xml +++ b/modules/jooby-elasticsearch/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-eventbus/pom.xml b/modules/jooby-eventbus/pom.xml index b5bd632442..d72baa1b01 100644 --- a/modules/jooby-eventbus/pom.xml +++ b/modules/jooby-eventbus/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-executor/pom.xml b/modules/jooby-executor/pom.xml index 84d201b697..1e05a82d02 100644 --- a/modules/jooby-executor/pom.xml +++ b/modules/jooby-executor/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-exposed/pom.xml b/modules/jooby-exposed/pom.xml index 8cbb2a47f5..f80ae842e4 100644 --- a/modules/jooby-exposed/pom.xml +++ b/modules/jooby-exposed/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-filewatcher/pom.xml b/modules/jooby-filewatcher/pom.xml index e13436c02a..bf87a99eca 100644 --- a/modules/jooby-filewatcher/pom.xml +++ b/modules/jooby-filewatcher/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-flyway/pom.xml b/modules/jooby-flyway/pom.xml index 5f1b03ddac..ac93315df9 100644 --- a/modules/jooby-flyway/pom.xml +++ b/modules/jooby-flyway/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-frontend/pom.xml b/modules/jooby-frontend/pom.xml index f16eff45bf..d8116d96d6 100644 --- a/modules/jooby-frontend/pom.xml +++ b/modules/jooby-frontend/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-ftl/pom.xml b/modules/jooby-ftl/pom.xml index 346f4aff4d..28dfb4e0a1 100644 --- a/modules/jooby-ftl/pom.xml +++ b/modules/jooby-ftl/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-gradle-plugin/pom.xml b/modules/jooby-gradle-plugin/pom.xml index f4dc878ef3..0f52d3ede6 100644 --- a/modules/jooby-gradle-plugin/pom.xml +++ b/modules/jooby-gradle-plugin/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-gson/pom.xml b/modules/jooby-gson/pom.xml index a59775135e..39877290e9 100644 --- a/modules/jooby-gson/pom.xml +++ b/modules/jooby-gson/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-guava-cache/pom.xml b/modules/jooby-guava-cache/pom.xml index 5c265f7658..c1a579c271 100644 --- a/modules/jooby-guava-cache/pom.xml +++ b/modules/jooby-guava-cache/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-hazelcast/pom.xml b/modules/jooby-hazelcast/pom.xml index 5b4ce8f8e1..721d47cbee 100644 --- a/modules/jooby-hazelcast/pom.xml +++ b/modules/jooby-hazelcast/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-hbm/pom.xml b/modules/jooby-hbm/pom.xml index b56f713180..68a6a51748 100644 --- a/modules/jooby-hbm/pom.xml +++ b/modules/jooby-hbm/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-hbs/pom.xml b/modules/jooby-hbs/pom.xml index 9df19247f9..36050f3f78 100644 --- a/modules/jooby-hbs/pom.xml +++ b/modules/jooby-hbs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-hbv/pom.xml b/modules/jooby-hbv/pom.xml index c031a9d1c6..837392b280 100644 --- a/modules/jooby-hbv/pom.xml +++ b/modules/jooby-hbv/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-jackson/pom.xml b/modules/jooby-jackson/pom.xml index db9531ec4a..2fed72f989 100644 --- a/modules/jooby-jackson/pom.xml +++ b/modules/jooby-jackson/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-jade/pom.xml b/modules/jooby-jade/pom.xml index 5c4291bd12..a65658c77d 100644 --- a/modules/jooby-jade/pom.xml +++ b/modules/jooby-jade/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-jdbc/pom.xml b/modules/jooby-jdbc/pom.xml index 2c23ae73e5..22054bd302 100644 --- a/modules/jooby-jdbc/pom.xml +++ b/modules/jooby-jdbc/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-jdbi/pom.xml b/modules/jooby-jdbi/pom.xml index 35bf88986e..9340b4c368 100644 --- a/modules/jooby-jdbi/pom.xml +++ b/modules/jooby-jdbi/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-jdbi3/pom.xml b/modules/jooby-jdbi3/pom.xml index 697636fa34..d3f1e839d6 100644 --- a/modules/jooby-jdbi3/pom.xml +++ b/modules/jooby-jdbi3/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-jedis/pom.xml b/modules/jooby-jedis/pom.xml index 81e4d47f32..7aea53e9fc 100644 --- a/modules/jooby-jedis/pom.xml +++ b/modules/jooby-jedis/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-jetty/pom.xml b/modules/jooby-jetty/pom.xml index 05f738e038..b510342df9 100644 --- a/modules/jooby-jetty/pom.xml +++ b/modules/jooby-jetty/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-jongo/pom.xml b/modules/jooby-jongo/pom.xml index c782c69105..6c7a997979 100644 --- a/modules/jooby-jongo/pom.xml +++ b/modules/jooby-jongo/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-jooq/pom.xml b/modules/jooby-jooq/pom.xml index 977ed3f547..9d9f459ef0 100644 --- a/modules/jooby-jooq/pom.xml +++ b/modules/jooby-jooq/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-lang-kotlin/pom.xml b/modules/jooby-lang-kotlin/pom.xml index bf7f09dfe6..5f064268a9 100644 --- a/modules/jooby-lang-kotlin/pom.xml +++ b/modules/jooby-lang-kotlin/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-livereload/pom.xml b/modules/jooby-livereload/pom.xml index efba0c3c9a..40fb0f8861 100644 --- a/modules/jooby-livereload/pom.xml +++ b/modules/jooby-livereload/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.7 + 1.6.8 jooby-livereload jooby-livereload diff --git a/modules/jooby-maven-plugin/pom.xml b/modules/jooby-maven-plugin/pom.xml index ffb58c47c3..01e77571e4 100644 --- a/modules/jooby-maven-plugin/pom.xml +++ b/modules/jooby-maven-plugin/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-metrics/pom.xml b/modules/jooby-metrics/pom.xml index d139b961da..2e23806a09 100644 --- a/modules/jooby-metrics/pom.xml +++ b/modules/jooby-metrics/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-micrometer/pom.xml b/modules/jooby-micrometer/pom.xml index 0e273ea794..7e4530a577 100644 --- a/modules/jooby-micrometer/pom.xml +++ b/modules/jooby-micrometer/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-mongodb-rx/pom.xml b/modules/jooby-mongodb-rx/pom.xml index a612c3a332..a90fb2436f 100644 --- a/modules/jooby-mongodb-rx/pom.xml +++ b/modules/jooby-mongodb-rx/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-mongodb/pom.xml b/modules/jooby-mongodb/pom.xml index cd7745368a..25eeb97c60 100644 --- a/modules/jooby-mongodb/pom.xml +++ b/modules/jooby-mongodb/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-morphia/pom.xml b/modules/jooby-morphia/pom.xml index a290eed5b6..4bc2263953 100644 --- a/modules/jooby-morphia/pom.xml +++ b/modules/jooby-morphia/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-neo4j/pom.xml b/modules/jooby-neo4j/pom.xml index 4269ce91f8..74d0ccc779 100644 --- a/modules/jooby-neo4j/pom.xml +++ b/modules/jooby-neo4j/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-netty/pom.xml b/modules/jooby-netty/pom.xml index 1e8d0344ec..82153f9361 100644 --- a/modules/jooby-netty/pom.xml +++ b/modules/jooby-netty/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-pac4j/pom.xml b/modules/jooby-pac4j/pom.xml index 1d1ca399b8..ffa885d838 100644 --- a/modules/jooby-pac4j/pom.xml +++ b/modules/jooby-pac4j/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-pac4j2/pom.xml b/modules/jooby-pac4j2/pom.xml index c6dd376299..3c215da3dc 100644 --- a/modules/jooby-pac4j2/pom.xml +++ b/modules/jooby-pac4j2/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-pebble/pom.xml b/modules/jooby-pebble/pom.xml index 6aa35f52fa..710fd3b15f 100644 --- a/modules/jooby-pebble/pom.xml +++ b/modules/jooby-pebble/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-quartz/pom.xml b/modules/jooby-quartz/pom.xml index 4e52f30277..0a4abbdd6c 100644 --- a/modules/jooby-quartz/pom.xml +++ b/modules/jooby-quartz/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-querydsl/pom.xml b/modules/jooby-querydsl/pom.xml index ffd4441531..675d8d4d40 100644 --- a/modules/jooby-querydsl/pom.xml +++ b/modules/jooby-querydsl/pom.xml @@ -4,7 +4,7 @@ modules org.jooby - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-reactor/pom.xml b/modules/jooby-reactor/pom.xml index 65273f592f..749e0c931c 100644 --- a/modules/jooby-reactor/pom.xml +++ b/modules/jooby-reactor/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-requery/pom.xml b/modules/jooby-requery/pom.xml index 94ba854961..66d4b3d7b3 100644 --- a/modules/jooby-requery/pom.xml +++ b/modules/jooby-requery/pom.xml @@ -4,7 +4,7 @@ org.jooby modules - 1.6.7 + 1.6.8 jooby-requery requery module diff --git a/modules/jooby-rocker/pom.xml b/modules/jooby-rocker/pom.xml index d1bdd3779a..a7aa64dee1 100644 --- a/modules/jooby-rocker/pom.xml +++ b/modules/jooby-rocker/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 jooby-rocker jooby-rocker diff --git a/modules/jooby-run/pom.xml b/modules/jooby-run/pom.xml index 1596d8575d..e349233998 100644 --- a/modules/jooby-run/pom.xml +++ b/modules/jooby-run/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-rxjava-jdbc/pom.xml b/modules/jooby-rxjava-jdbc/pom.xml index fdc9afd1ff..4519c9a65b 100644 --- a/modules/jooby-rxjava-jdbc/pom.xml +++ b/modules/jooby-rxjava-jdbc/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-rxjava/pom.xml b/modules/jooby-rxjava/pom.xml index f44fbe0f4c..d1ce4a8c9b 100644 --- a/modules/jooby-rxjava/pom.xml +++ b/modules/jooby-rxjava/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-scanner/pom.xml b/modules/jooby-scanner/pom.xml index ed11065ad7..8b8ab6a301 100644 --- a/modules/jooby-scanner/pom.xml +++ b/modules/jooby-scanner/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-servlet/pom.xml b/modules/jooby-servlet/pom.xml index 38a1802fcf..2718fd8a41 100644 --- a/modules/jooby-servlet/pom.xml +++ b/modules/jooby-servlet/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-sitemap/pom.xml b/modules/jooby-sitemap/pom.xml index 59f91bd7fc..97c48037fe 100644 --- a/modules/jooby-sitemap/pom.xml +++ b/modules/jooby-sitemap/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-spymemcached/pom.xml b/modules/jooby-spymemcached/pom.xml index 37d8948f54..293b583dfe 100644 --- a/modules/jooby-spymemcached/pom.xml +++ b/modules/jooby-spymemcached/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-thymeleaf/pom.xml b/modules/jooby-thymeleaf/pom.xml index 4f7259c56c..cebcfb5c43 100644 --- a/modules/jooby-thymeleaf/pom.xml +++ b/modules/jooby-thymeleaf/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-unbescape/pom.xml b/modules/jooby-unbescape/pom.xml index 567d9d211f..be8c75fc1e 100644 --- a/modules/jooby-unbescape/pom.xml +++ b/modules/jooby-unbescape/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-undertow/pom.xml b/modules/jooby-undertow/pom.xml index ed514957d6..1b34e2e693 100644 --- a/modules/jooby-undertow/pom.xml +++ b/modules/jooby-undertow/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-whoops/pom.xml b/modules/jooby-whoops/pom.xml index 7fa7f38bda..0c4b3c7cc8 100644 --- a/modules/jooby-whoops/pom.xml +++ b/modules/jooby-whoops/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/jooby-yasson/pom.xml b/modules/jooby-yasson/pom.xml index af81016431..f7f5be11e6 100644 --- a/modules/jooby-yasson/pom.xml +++ b/modules/jooby-yasson/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.7 + 1.6.8 4.0.0 diff --git a/modules/pom.xml b/modules/pom.xml index c37160891c..da5ef5e6fc 100644 --- a/modules/pom.xml +++ b/modules/pom.xml @@ -6,7 +6,7 @@ org.jooby jooby-project - 1.6.7 + 1.6.8 modules diff --git a/pom.xml b/pom.xml index 158a1fae33..25eafc94ee 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ 4.0.0 org.jooby jooby-project - 1.6.7 + 1.6.8 pom jooby-project From 85a50d5e894d14068b2e90a0601481cf52a0abec Mon Sep 17 00:00:00 2001 From: Edgar Espina Date: Sun, 18 Jul 2021 22:30:45 -0300 Subject: [PATCH 93/93] v1.6.9 --- jooby/pom.xml | 2 +- modules/coverage-report/pom.xml | 2 +- modules/jooby-akka/pom.xml | 2 +- modules/jooby-apitool/pom.xml | 2 +- modules/jooby-archetype/pom.xml | 2 +- modules/jooby-assets-autoprefixer/pom.xml | 2 +- modules/jooby-assets-babel/pom.xml | 2 +- modules/jooby-assets-clean-css/pom.xml | 2 +- modules/jooby-assets-closure-compiler/pom.xml | 2 +- modules/jooby-assets-csslint/pom.xml | 2 +- modules/jooby-assets-j2v8/pom.xml | 2 +- modules/jooby-assets-jscs/pom.xml | 2 +- modules/jooby-assets-jshint/pom.xml | 2 +- modules/jooby-assets-less/pom.xml | 2 +- modules/jooby-assets-less4j/pom.xml | 2 +- modules/jooby-assets-ng-annotate/pom.xml | 2 +- modules/jooby-assets-nodejs/pom.xml | 2 +- modules/jooby-assets-requirejs/pom.xml | 2 +- modules/jooby-assets-rollup/pom.xml | 2 +- modules/jooby-assets-sass/pom.xml | 2 +- modules/jooby-assets-svg-sprites/pom.xml | 2 +- modules/jooby-assets-svg-symbol/pom.xml | 2 +- modules/jooby-assets-uglify/pom.xml | 2 +- modules/jooby-assets-yui-compressor/pom.xml | 2 +- modules/jooby-assets/pom.xml | 2 +- modules/jooby-aws/pom.xml | 2 +- modules/jooby-banner/pom.xml | 2 +- modules/jooby-caffeine/pom.xml | 2 +- modules/jooby-camel/pom.xml | 2 +- modules/jooby-cassandra/pom.xml | 2 +- modules/jooby-commons-email/pom.xml | 2 +- modules/jooby-consul/pom.xml | 2 +- modules/jooby-couchbase/pom.xml | 2 +- modules/jooby-crash/pom.xml | 2 +- modules/jooby-csl/pom.xml | 2 +- modules/jooby-dist/pom.xml | 2 +- modules/jooby-ebean/pom.xml | 2 +- modules/jooby-ehcache/pom.xml | 2 +- modules/jooby-elasticsearch/pom.xml | 2 +- modules/jooby-eventbus/pom.xml | 2 +- modules/jooby-executor/pom.xml | 2 +- modules/jooby-exposed/pom.xml | 2 +- modules/jooby-filewatcher/pom.xml | 2 +- modules/jooby-flyway/pom.xml | 2 +- modules/jooby-frontend/pom.xml | 2 +- modules/jooby-ftl/pom.xml | 2 +- modules/jooby-gradle-plugin/pom.xml | 2 +- modules/jooby-gson/pom.xml | 2 +- modules/jooby-guava-cache/pom.xml | 2 +- modules/jooby-hazelcast/pom.xml | 2 +- modules/jooby-hbm/pom.xml | 2 +- modules/jooby-hbs/pom.xml | 2 +- modules/jooby-hbv/pom.xml | 2 +- modules/jooby-jackson/pom.xml | 2 +- modules/jooby-jade/pom.xml | 2 +- modules/jooby-jdbc/pom.xml | 2 +- modules/jooby-jdbi/pom.xml | 2 +- modules/jooby-jdbi3/pom.xml | 2 +- modules/jooby-jedis/pom.xml | 2 +- modules/jooby-jetty/pom.xml | 2 +- modules/jooby-jongo/pom.xml | 2 +- modules/jooby-jooq/pom.xml | 2 +- modules/jooby-lang-kotlin/pom.xml | 2 +- modules/jooby-livereload/pom.xml | 2 +- modules/jooby-maven-plugin/pom.xml | 2 +- modules/jooby-metrics/pom.xml | 2 +- modules/jooby-micrometer/pom.xml | 2 +- modules/jooby-mongodb-rx/pom.xml | 2 +- modules/jooby-mongodb/pom.xml | 2 +- modules/jooby-morphia/pom.xml | 2 +- modules/jooby-neo4j/pom.xml | 2 +- modules/jooby-netty/pom.xml | 2 +- modules/jooby-pac4j/pom.xml | 2 +- modules/jooby-pac4j2/pom.xml | 2 +- modules/jooby-pebble/pom.xml | 2 +- modules/jooby-quartz/pom.xml | 2 +- modules/jooby-querydsl/pom.xml | 2 +- modules/jooby-reactor/pom.xml | 2 +- modules/jooby-requery/pom.xml | 2 +- modules/jooby-rocker/pom.xml | 2 +- modules/jooby-run/pom.xml | 2 +- modules/jooby-rxjava-jdbc/pom.xml | 2 +- modules/jooby-rxjava/pom.xml | 2 +- modules/jooby-scanner/pom.xml | 2 +- modules/jooby-servlet/pom.xml | 2 +- modules/jooby-sitemap/pom.xml | 2 +- modules/jooby-spymemcached/pom.xml | 2 +- modules/jooby-thymeleaf/pom.xml | 2 +- modules/jooby-unbescape/pom.xml | 2 +- modules/jooby-undertow/pom.xml | 2 +- modules/jooby-whoops/pom.xml | 2 +- modules/jooby-yasson/pom.xml | 2 +- modules/pom.xml | 2 +- pom.xml | 2 +- 94 files changed, 94 insertions(+), 94 deletions(-) diff --git a/jooby/pom.xml b/jooby/pom.xml index 870c76b94d..127dc18af6 100644 --- a/jooby/pom.xml +++ b/jooby/pom.xml @@ -6,7 +6,7 @@ org.jooby jooby-project - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/coverage-report/pom.xml b/modules/coverage-report/pom.xml index c914b78607..a29169cebe 100644 --- a/modules/coverage-report/pom.xml +++ b/modules/coverage-report/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-akka/pom.xml b/modules/jooby-akka/pom.xml index a1274a440a..384cca7eb8 100644 --- a/modules/jooby-akka/pom.xml +++ b/modules/jooby-akka/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-apitool/pom.xml b/modules/jooby-apitool/pom.xml index fb550b8f09..30da6e0040 100644 --- a/modules/jooby-apitool/pom.xml +++ b/modules/jooby-apitool/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-archetype/pom.xml b/modules/jooby-archetype/pom.xml index 7a0ac36715..ce7bd5943f 100644 --- a/modules/jooby-archetype/pom.xml +++ b/modules/jooby-archetype/pom.xml @@ -7,7 +7,7 @@ org.jooby modules - 1.6.8 + 1.6.9 jooby-archetype diff --git a/modules/jooby-assets-autoprefixer/pom.xml b/modules/jooby-assets-autoprefixer/pom.xml index 1e09cf709b..a12c9516fc 100644 --- a/modules/jooby-assets-autoprefixer/pom.xml +++ b/modules/jooby-assets-autoprefixer/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-assets-babel/pom.xml b/modules/jooby-assets-babel/pom.xml index a7cc5cf528..1ea6f20c63 100644 --- a/modules/jooby-assets-babel/pom.xml +++ b/modules/jooby-assets-babel/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-assets-clean-css/pom.xml b/modules/jooby-assets-clean-css/pom.xml index 0b595abc97..f7585227b1 100644 --- a/modules/jooby-assets-clean-css/pom.xml +++ b/modules/jooby-assets-clean-css/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-assets-closure-compiler/pom.xml b/modules/jooby-assets-closure-compiler/pom.xml index 0a18332e78..3fa5d70719 100644 --- a/modules/jooby-assets-closure-compiler/pom.xml +++ b/modules/jooby-assets-closure-compiler/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-assets-csslint/pom.xml b/modules/jooby-assets-csslint/pom.xml index 9893de7480..75be7fb6ea 100644 --- a/modules/jooby-assets-csslint/pom.xml +++ b/modules/jooby-assets-csslint/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-assets-j2v8/pom.xml b/modules/jooby-assets-j2v8/pom.xml index a9d67e952e..bbf98724b9 100644 --- a/modules/jooby-assets-j2v8/pom.xml +++ b/modules/jooby-assets-j2v8/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-assets-jscs/pom.xml b/modules/jooby-assets-jscs/pom.xml index 1acdf4efb3..077f472790 100644 --- a/modules/jooby-assets-jscs/pom.xml +++ b/modules/jooby-assets-jscs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-assets-jshint/pom.xml b/modules/jooby-assets-jshint/pom.xml index ec1fb9b4de..c2127bbca9 100644 --- a/modules/jooby-assets-jshint/pom.xml +++ b/modules/jooby-assets-jshint/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-assets-less/pom.xml b/modules/jooby-assets-less/pom.xml index b75cece752..13c4fe8afe 100644 --- a/modules/jooby-assets-less/pom.xml +++ b/modules/jooby-assets-less/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-assets-less4j/pom.xml b/modules/jooby-assets-less4j/pom.xml index dce781b91e..aec61b7e8e 100644 --- a/modules/jooby-assets-less4j/pom.xml +++ b/modules/jooby-assets-less4j/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-assets-ng-annotate/pom.xml b/modules/jooby-assets-ng-annotate/pom.xml index 088b152170..b0753c845a 100644 --- a/modules/jooby-assets-ng-annotate/pom.xml +++ b/modules/jooby-assets-ng-annotate/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-assets-nodejs/pom.xml b/modules/jooby-assets-nodejs/pom.xml index f924400287..4aa560e10c 100644 --- a/modules/jooby-assets-nodejs/pom.xml +++ b/modules/jooby-assets-nodejs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-assets-requirejs/pom.xml b/modules/jooby-assets-requirejs/pom.xml index c6fe0ea91d..711ecdd09f 100644 --- a/modules/jooby-assets-requirejs/pom.xml +++ b/modules/jooby-assets-requirejs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-assets-rollup/pom.xml b/modules/jooby-assets-rollup/pom.xml index dc45c7a7fa..171b41939f 100644 --- a/modules/jooby-assets-rollup/pom.xml +++ b/modules/jooby-assets-rollup/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-assets-sass/pom.xml b/modules/jooby-assets-sass/pom.xml index ec86be28e8..6a28141e8a 100644 --- a/modules/jooby-assets-sass/pom.xml +++ b/modules/jooby-assets-sass/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-assets-svg-sprites/pom.xml b/modules/jooby-assets-svg-sprites/pom.xml index e9c471c216..5b8f70dc71 100644 --- a/modules/jooby-assets-svg-sprites/pom.xml +++ b/modules/jooby-assets-svg-sprites/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-assets-svg-symbol/pom.xml b/modules/jooby-assets-svg-symbol/pom.xml index d81ca40390..737cc57a66 100644 --- a/modules/jooby-assets-svg-symbol/pom.xml +++ b/modules/jooby-assets-svg-symbol/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-assets-uglify/pom.xml b/modules/jooby-assets-uglify/pom.xml index 9988687b7b..cf5f3c95ca 100644 --- a/modules/jooby-assets-uglify/pom.xml +++ b/modules/jooby-assets-uglify/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-assets-yui-compressor/pom.xml b/modules/jooby-assets-yui-compressor/pom.xml index 442423850b..d599f09959 100644 --- a/modules/jooby-assets-yui-compressor/pom.xml +++ b/modules/jooby-assets-yui-compressor/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-assets/pom.xml b/modules/jooby-assets/pom.xml index cd6fc11580..2ca0576946 100644 --- a/modules/jooby-assets/pom.xml +++ b/modules/jooby-assets/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-aws/pom.xml b/modules/jooby-aws/pom.xml index f8be75995c..207d69f595 100644 --- a/modules/jooby-aws/pom.xml +++ b/modules/jooby-aws/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-banner/pom.xml b/modules/jooby-banner/pom.xml index ddd16abadb..b364159f32 100644 --- a/modules/jooby-banner/pom.xml +++ b/modules/jooby-banner/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-caffeine/pom.xml b/modules/jooby-caffeine/pom.xml index 5b452fff38..569aad26ed 100644 --- a/modules/jooby-caffeine/pom.xml +++ b/modules/jooby-caffeine/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-camel/pom.xml b/modules/jooby-camel/pom.xml index fb5a5bcc71..a37a84b29b 100644 --- a/modules/jooby-camel/pom.xml +++ b/modules/jooby-camel/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-cassandra/pom.xml b/modules/jooby-cassandra/pom.xml index 8ff4ec00e2..25fb0252b3 100644 --- a/modules/jooby-cassandra/pom.xml +++ b/modules/jooby-cassandra/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-commons-email/pom.xml b/modules/jooby-commons-email/pom.xml index 99b95d984d..74ead5c107 100644 --- a/modules/jooby-commons-email/pom.xml +++ b/modules/jooby-commons-email/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-consul/pom.xml b/modules/jooby-consul/pom.xml index 69a1bd9cbf..1e72ac3f33 100644 --- a/modules/jooby-consul/pom.xml +++ b/modules/jooby-consul/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-couchbase/pom.xml b/modules/jooby-couchbase/pom.xml index 004d9c2dfc..876ddaca3a 100644 --- a/modules/jooby-couchbase/pom.xml +++ b/modules/jooby-couchbase/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-crash/pom.xml b/modules/jooby-crash/pom.xml index 1437e272c2..6b435dfd4d 100644 --- a/modules/jooby-crash/pom.xml +++ b/modules/jooby-crash/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-csl/pom.xml b/modules/jooby-csl/pom.xml index 95a3e5d5aa..38c6724501 100644 --- a/modules/jooby-csl/pom.xml +++ b/modules/jooby-csl/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-dist/pom.xml b/modules/jooby-dist/pom.xml index 695f15e8e9..c4cb02d5bb 100644 --- a/modules/jooby-dist/pom.xml +++ b/modules/jooby-dist/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-ebean/pom.xml b/modules/jooby-ebean/pom.xml index 92ece67a3a..74988b22ad 100644 --- a/modules/jooby-ebean/pom.xml +++ b/modules/jooby-ebean/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-ehcache/pom.xml b/modules/jooby-ehcache/pom.xml index c233a5ec64..386e722186 100644 --- a/modules/jooby-ehcache/pom.xml +++ b/modules/jooby-ehcache/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-elasticsearch/pom.xml b/modules/jooby-elasticsearch/pom.xml index 2095b4c4f8..e7306fedd7 100644 --- a/modules/jooby-elasticsearch/pom.xml +++ b/modules/jooby-elasticsearch/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-eventbus/pom.xml b/modules/jooby-eventbus/pom.xml index d72baa1b01..125f00e792 100644 --- a/modules/jooby-eventbus/pom.xml +++ b/modules/jooby-eventbus/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-executor/pom.xml b/modules/jooby-executor/pom.xml index 1e05a82d02..7d9e9a8d97 100644 --- a/modules/jooby-executor/pom.xml +++ b/modules/jooby-executor/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-exposed/pom.xml b/modules/jooby-exposed/pom.xml index f80ae842e4..2eb69a793b 100644 --- a/modules/jooby-exposed/pom.xml +++ b/modules/jooby-exposed/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-filewatcher/pom.xml b/modules/jooby-filewatcher/pom.xml index bf87a99eca..1824d76b75 100644 --- a/modules/jooby-filewatcher/pom.xml +++ b/modules/jooby-filewatcher/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-flyway/pom.xml b/modules/jooby-flyway/pom.xml index ac93315df9..3c4492dd0c 100644 --- a/modules/jooby-flyway/pom.xml +++ b/modules/jooby-flyway/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-frontend/pom.xml b/modules/jooby-frontend/pom.xml index d8116d96d6..952adea263 100644 --- a/modules/jooby-frontend/pom.xml +++ b/modules/jooby-frontend/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-ftl/pom.xml b/modules/jooby-ftl/pom.xml index 28dfb4e0a1..e4a9ff880b 100644 --- a/modules/jooby-ftl/pom.xml +++ b/modules/jooby-ftl/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-gradle-plugin/pom.xml b/modules/jooby-gradle-plugin/pom.xml index 0f52d3ede6..0647059b5f 100644 --- a/modules/jooby-gradle-plugin/pom.xml +++ b/modules/jooby-gradle-plugin/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-gson/pom.xml b/modules/jooby-gson/pom.xml index 39877290e9..3391e50156 100644 --- a/modules/jooby-gson/pom.xml +++ b/modules/jooby-gson/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-guava-cache/pom.xml b/modules/jooby-guava-cache/pom.xml index c1a579c271..97b51ac564 100644 --- a/modules/jooby-guava-cache/pom.xml +++ b/modules/jooby-guava-cache/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-hazelcast/pom.xml b/modules/jooby-hazelcast/pom.xml index 721d47cbee..0f22a46c5f 100644 --- a/modules/jooby-hazelcast/pom.xml +++ b/modules/jooby-hazelcast/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-hbm/pom.xml b/modules/jooby-hbm/pom.xml index 68a6a51748..780e556d16 100644 --- a/modules/jooby-hbm/pom.xml +++ b/modules/jooby-hbm/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-hbs/pom.xml b/modules/jooby-hbs/pom.xml index 36050f3f78..5df0fe50c5 100644 --- a/modules/jooby-hbs/pom.xml +++ b/modules/jooby-hbs/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-hbv/pom.xml b/modules/jooby-hbv/pom.xml index 837392b280..24a5d90db0 100644 --- a/modules/jooby-hbv/pom.xml +++ b/modules/jooby-hbv/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-jackson/pom.xml b/modules/jooby-jackson/pom.xml index 2fed72f989..2f6c37ebf8 100644 --- a/modules/jooby-jackson/pom.xml +++ b/modules/jooby-jackson/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-jade/pom.xml b/modules/jooby-jade/pom.xml index a65658c77d..2b5c9ce420 100644 --- a/modules/jooby-jade/pom.xml +++ b/modules/jooby-jade/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-jdbc/pom.xml b/modules/jooby-jdbc/pom.xml index 22054bd302..dbaed2863b 100644 --- a/modules/jooby-jdbc/pom.xml +++ b/modules/jooby-jdbc/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-jdbi/pom.xml b/modules/jooby-jdbi/pom.xml index 9340b4c368..3f76dd5adf 100644 --- a/modules/jooby-jdbi/pom.xml +++ b/modules/jooby-jdbi/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-jdbi3/pom.xml b/modules/jooby-jdbi3/pom.xml index d3f1e839d6..5be42e0d84 100644 --- a/modules/jooby-jdbi3/pom.xml +++ b/modules/jooby-jdbi3/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-jedis/pom.xml b/modules/jooby-jedis/pom.xml index 7aea53e9fc..a414963d57 100644 --- a/modules/jooby-jedis/pom.xml +++ b/modules/jooby-jedis/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-jetty/pom.xml b/modules/jooby-jetty/pom.xml index b510342df9..8440189181 100644 --- a/modules/jooby-jetty/pom.xml +++ b/modules/jooby-jetty/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-jongo/pom.xml b/modules/jooby-jongo/pom.xml index 6c7a997979..26eeb8a4f8 100644 --- a/modules/jooby-jongo/pom.xml +++ b/modules/jooby-jongo/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-jooq/pom.xml b/modules/jooby-jooq/pom.xml index 9d9f459ef0..b4b14b37f6 100644 --- a/modules/jooby-jooq/pom.xml +++ b/modules/jooby-jooq/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-lang-kotlin/pom.xml b/modules/jooby-lang-kotlin/pom.xml index 5f064268a9..5d8c6561e2 100644 --- a/modules/jooby-lang-kotlin/pom.xml +++ b/modules/jooby-lang-kotlin/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-livereload/pom.xml b/modules/jooby-livereload/pom.xml index 40fb0f8861..9b0b302010 100644 --- a/modules/jooby-livereload/pom.xml +++ b/modules/jooby-livereload/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.8 + 1.6.9 jooby-livereload jooby-livereload diff --git a/modules/jooby-maven-plugin/pom.xml b/modules/jooby-maven-plugin/pom.xml index 01e77571e4..1760e2b4b6 100644 --- a/modules/jooby-maven-plugin/pom.xml +++ b/modules/jooby-maven-plugin/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-metrics/pom.xml b/modules/jooby-metrics/pom.xml index 2e23806a09..b748fba8f8 100644 --- a/modules/jooby-metrics/pom.xml +++ b/modules/jooby-metrics/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-micrometer/pom.xml b/modules/jooby-micrometer/pom.xml index 7e4530a577..cbf0151a87 100644 --- a/modules/jooby-micrometer/pom.xml +++ b/modules/jooby-micrometer/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-mongodb-rx/pom.xml b/modules/jooby-mongodb-rx/pom.xml index a90fb2436f..35dfb8c62e 100644 --- a/modules/jooby-mongodb-rx/pom.xml +++ b/modules/jooby-mongodb-rx/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-mongodb/pom.xml b/modules/jooby-mongodb/pom.xml index 25eeb97c60..bebe22ff7d 100644 --- a/modules/jooby-mongodb/pom.xml +++ b/modules/jooby-mongodb/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-morphia/pom.xml b/modules/jooby-morphia/pom.xml index 4bc2263953..4524829786 100644 --- a/modules/jooby-morphia/pom.xml +++ b/modules/jooby-morphia/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-neo4j/pom.xml b/modules/jooby-neo4j/pom.xml index 74d0ccc779..5344a7b496 100644 --- a/modules/jooby-neo4j/pom.xml +++ b/modules/jooby-neo4j/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-netty/pom.xml b/modules/jooby-netty/pom.xml index 82153f9361..50c3d0d488 100644 --- a/modules/jooby-netty/pom.xml +++ b/modules/jooby-netty/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-pac4j/pom.xml b/modules/jooby-pac4j/pom.xml index ffa885d838..90de5eee01 100644 --- a/modules/jooby-pac4j/pom.xml +++ b/modules/jooby-pac4j/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-pac4j2/pom.xml b/modules/jooby-pac4j2/pom.xml index 3c215da3dc..51c6a3a98c 100644 --- a/modules/jooby-pac4j2/pom.xml +++ b/modules/jooby-pac4j2/pom.xml @@ -6,7 +6,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-pebble/pom.xml b/modules/jooby-pebble/pom.xml index 710fd3b15f..9a3e954bcd 100644 --- a/modules/jooby-pebble/pom.xml +++ b/modules/jooby-pebble/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-quartz/pom.xml b/modules/jooby-quartz/pom.xml index 0a4abbdd6c..52f3573da8 100644 --- a/modules/jooby-quartz/pom.xml +++ b/modules/jooby-quartz/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-querydsl/pom.xml b/modules/jooby-querydsl/pom.xml index 675d8d4d40..acba22394a 100644 --- a/modules/jooby-querydsl/pom.xml +++ b/modules/jooby-querydsl/pom.xml @@ -4,7 +4,7 @@ modules org.jooby - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-reactor/pom.xml b/modules/jooby-reactor/pom.xml index 749e0c931c..93eba99a84 100644 --- a/modules/jooby-reactor/pom.xml +++ b/modules/jooby-reactor/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-requery/pom.xml b/modules/jooby-requery/pom.xml index 66d4b3d7b3..afba037e16 100644 --- a/modules/jooby-requery/pom.xml +++ b/modules/jooby-requery/pom.xml @@ -4,7 +4,7 @@ org.jooby modules - 1.6.8 + 1.6.9 jooby-requery requery module diff --git a/modules/jooby-rocker/pom.xml b/modules/jooby-rocker/pom.xml index a7aa64dee1..8e6222f650 100644 --- a/modules/jooby-rocker/pom.xml +++ b/modules/jooby-rocker/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 jooby-rocker jooby-rocker diff --git a/modules/jooby-run/pom.xml b/modules/jooby-run/pom.xml index e349233998..78a1253d8f 100644 --- a/modules/jooby-run/pom.xml +++ b/modules/jooby-run/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-rxjava-jdbc/pom.xml b/modules/jooby-rxjava-jdbc/pom.xml index 4519c9a65b..9750d8e606 100644 --- a/modules/jooby-rxjava-jdbc/pom.xml +++ b/modules/jooby-rxjava-jdbc/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-rxjava/pom.xml b/modules/jooby-rxjava/pom.xml index d1ce4a8c9b..db2defa0e8 100644 --- a/modules/jooby-rxjava/pom.xml +++ b/modules/jooby-rxjava/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-scanner/pom.xml b/modules/jooby-scanner/pom.xml index 8b8ab6a301..5c49059510 100644 --- a/modules/jooby-scanner/pom.xml +++ b/modules/jooby-scanner/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-servlet/pom.xml b/modules/jooby-servlet/pom.xml index 2718fd8a41..61d9602921 100644 --- a/modules/jooby-servlet/pom.xml +++ b/modules/jooby-servlet/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-sitemap/pom.xml b/modules/jooby-sitemap/pom.xml index 97c48037fe..34d5ddc203 100644 --- a/modules/jooby-sitemap/pom.xml +++ b/modules/jooby-sitemap/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-spymemcached/pom.xml b/modules/jooby-spymemcached/pom.xml index 293b583dfe..298b8e5207 100644 --- a/modules/jooby-spymemcached/pom.xml +++ b/modules/jooby-spymemcached/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-thymeleaf/pom.xml b/modules/jooby-thymeleaf/pom.xml index cebcfb5c43..f45599d93a 100644 --- a/modules/jooby-thymeleaf/pom.xml +++ b/modules/jooby-thymeleaf/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-unbescape/pom.xml b/modules/jooby-unbescape/pom.xml index be8c75fc1e..d0037ceddd 100644 --- a/modules/jooby-unbescape/pom.xml +++ b/modules/jooby-unbescape/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-undertow/pom.xml b/modules/jooby-undertow/pom.xml index 1b34e2e693..adef4b78ce 100644 --- a/modules/jooby-undertow/pom.xml +++ b/modules/jooby-undertow/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-whoops/pom.xml b/modules/jooby-whoops/pom.xml index 0c4b3c7cc8..94507ea4cf 100644 --- a/modules/jooby-whoops/pom.xml +++ b/modules/jooby-whoops/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/jooby-yasson/pom.xml b/modules/jooby-yasson/pom.xml index f7f5be11e6..4c3eafe522 100644 --- a/modules/jooby-yasson/pom.xml +++ b/modules/jooby-yasson/pom.xml @@ -5,7 +5,7 @@ org.jooby modules - 1.6.8 + 1.6.9 4.0.0 diff --git a/modules/pom.xml b/modules/pom.xml index da5ef5e6fc..4d9ebc8b33 100644 --- a/modules/pom.xml +++ b/modules/pom.xml @@ -6,7 +6,7 @@ org.jooby jooby-project - 1.6.8 + 1.6.9 modules diff --git a/pom.xml b/pom.xml index 25eafc94ee..a3788ad87a 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ 4.0.0 org.jooby jooby-project - 1.6.8 + 1.6.9 pom jooby-project