-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmodule-info.java
More file actions
19 lines (15 loc) · 682 Bytes
/
module-info.java
File metadata and controls
19 lines (15 loc) · 682 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import dev.lukebemish.codecextras.groovy.structured.reflective.implementation.GroovyReflectiveStructureCreator;
import dev.lukebemish.codecextras.structured.reflective.ReflectiveStructureCreator;
module dev.lukebemish.codeceextras.groovy {
requires static org.jetbrains.annotations;
requires static org.jspecify;
requires static org.slf4j;
requires static com.google.auto.service;
requires dev.lukebemish.codecextras;
requires org.apache.groovy;
requires com.google.common;
requires com.google.gson;
requires datafixerupper;
requires it.unimi.dsi.fastutil;
provides ReflectiveStructureCreator with GroovyReflectiveStructureCreator;
}