-
-
Notifications
You must be signed in to change notification settings - Fork 199
Expand file tree
/
Copy pathmodule-info.java
More file actions
35 lines (31 loc) · 774 Bytes
/
module-info.java
File metadata and controls
35 lines (31 loc) · 774 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/*
* Jooby https://jooby.io
* Apache License Version 2.0 https://jooby.io/LICENSE.txt
* Copyright 2014 Edgar Espina
*/
/** Jooby module. */
module io.jooby {
exports io.jooby;
exports io.jooby.annotation;
exports io.jooby.buffer;
exports io.jooby.exception;
exports io.jooby.handler;
exports io.jooby.validation;
exports io.jooby.problem;
uses io.jooby.MvcFactory;
uses io.jooby.Server;
uses io.jooby.SslProvider;
uses io.jooby.LoggingService;
uses io.jooby.buffer.DataBufferFactory;
/*
* True core deps
*/
requires jakarta.inject;
requires org.slf4j;
requires static com.github.spotbugs.annotations;
requires typesafe.config;
/*
* Optional dependency for rate limiting
*/
requires static io.github.bucket4j.core;
}