Skip to content

Commit cfc700d

Browse files
committed
build: fix some javadoc issues
- published to maven central faild bc of missing javadoc jar file for `jooby-kotlin`
1 parent 5ab6916 commit cfc700d

File tree

39 files changed

+178
-8
lines changed

39 files changed

+178
-8
lines changed

etc/javadoc.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
DIR=$(cd "$(dirname "$0")"; pwd)
44

5-
sh $DIR/maven.sh javadoc:javadoc -P source
5+
sh $DIR/maven.sh javadoc:javadoc -P source -Dmaven.plugin.validation=VERBOSE

jooby/src/main/java/module-info.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
* Apache License Version 2.0 https://jooby.io/LICENSE.txt
44
* Copyright 2014 Edgar Espina
55
*/
6+
/**
7+
* Jooby module.
8+
*/
69
module io.jooby {
710
exports io.jooby;
811
exports io.jooby.annotation;

modules/jooby-avaje-jsonb/src/main/java/module-info.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
* Apache License Version 2.0 https://jooby.io/LICENSE.txt
44
* Copyright 2014 Edgar Espina
55
*/
6+
/**
7+
* Avaje jsonb module.
8+
*/
69
module io.jooby.avaje.jsonb {
710
exports io.jooby.avaje.jsonb;
811

modules/jooby-caffeine/src/main/java/module-info.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
* Apache License Version 2.0 https://jooby.io/LICENSE.txt
44
* Copyright 2014 Edgar Espina
55
*/
6+
/**
7+
* Caffeine module.
8+
*/
69
module io.jooby.caffeine {
710
exports io.jooby.caffeine;
811

modules/jooby-camel/src/main/java/io/jooby/camel/CamelModule.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ public CamelModule(@NonNull RouteBuilder route, RouteBuilder... routes) {
8686
/**
8787
* Creates a new camel module adding one or more routes.
8888
*
89+
* @param camel Camel context.
8990
* @param route Route configuration.
9091
* @param routes Optional route configuration.
9192
*/
@@ -114,6 +115,7 @@ public CamelModule(
114115
* Dependency Injection framework (if any), otherwise camel does basic/minimal injection using
115116
* {@link org.apache.camel.impl.engine.DefaultInjector}.
116117
*
118+
* @param camel Camel context.
117119
* @param route Route configuration.
118120
* @param routes Optional route configuration.
119121
*/

modules/jooby-conscrypt/src/main/java/module-info.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
import io.jooby.SslProvider;
77
import io.jooby.conscrypt.ConscryptSslProvider;
88

9+
/**
10+
* Conscrypt module.
11+
*/
912
module io.jooby.conscrypt {
1013
requires io.jooby;
1114
requires static com.github.spotbugs.annotations;

modules/jooby-ebean/src/main/java/module-info.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
* Apache License Version 2.0 https://jooby.io/LICENSE.txt
44
* Copyright 2014 Edgar Espina
55
*/
6+
/**
7+
* Ebean module.
8+
*/
69
module io.jooby.ebean {
710
exports io.jooby.ebean;
811

modules/jooby-flyway/src/main/java/module-info.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
* Apache License Version 2.0 https://jooby.io/LICENSE.txt
44
* Copyright 2014 Edgar Espina
55
*/
6+
/**
7+
* Flyway module.
8+
*/
69
module io.jooby.flyway {
710
exports io.jooby.flyway;
811

modules/jooby-freemarker/src/main/java/module-info.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
* Apache License Version 2.0 https://jooby.io/LICENSE.txt
44
* Copyright 2014 Edgar Espina
55
*/
6+
/**
7+
* Freemarker module.
8+
*/
69
module io.jooby.freemarker {
710
exports io.jooby.freemarker;
811

modules/jooby-graphiql/src/main/java/module-info.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
* Apache License Version 2.0 https://jooby.io/LICENSE.txt
44
* Copyright 2014 Edgar Espina
55
*/
6+
/**
7+
* GraphQL module.
8+
*/
69
module io.jooby.graphiql {
710
exports io.jooby.graphiql;
811

0 commit comments

Comments
 (0)