Skip to content

Commit 332a143

Browse files
committed
Add module-info for http-client-gson + the helidon generators
1 parent 50ee7a2 commit 332a143

File tree

3 files changed

+21
-0
lines changed

3 files changed

+21
-0
lines changed
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
module io.avaje.http.client.gson {
2+
3+
exports io.avaje.http.client.gson;
4+
5+
requires io.avaje.http.client;
6+
requires com.google.gson;
7+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
module io.avaje.http.helidon.generator {
2+
3+
provides javax.annotation.processing.Processor with io.avaje.http.generator.helidon.HelidonProcessor;
4+
5+
requires transitive io.avaje.http.generator.core;
6+
requires java.compiler;
7+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
module io.avaje.http.nima.generator {
2+
3+
provides javax.annotation.processing.Processor with io.avaje.http.generator.helidon.nima.NimaProcessor;
4+
5+
requires transitive io.avaje.http.generator.core;
6+
requires java.compiler;
7+
}

0 commit comments

Comments
 (0)