Plz
ci/woodpecker/push/woodpecker Pipeline failed Details

This commit is contained in:
Johannes Frohnmeyer 2022-11-24 18:42:46 +01:00
parent b48d9bacc9
commit 2a87b3009d
Signed by: Johannes
GPG Key ID: E76429612C2929F4
2 changed files with 10 additions and 4 deletions

View File

@ -53,6 +53,12 @@
<executions>
<execution>
<id>default-compile</id>
<configuration>
<excludes>
<!-- module-info.java is compiled using ModiTect -->
<exclude>module-info.java</exclude>
</excludes>
</configuration>
</execution>
<execution>
<id>default-testCompile</id>

View File

@ -3,10 +3,10 @@
* @since 2.8.6
*/
module io.gitlab.jfronny.gson {
exports com.google.gson;
exports com.google.gson.annotations;
exports com.google.gson.reflect;
exports com.google.gson.stream;
exports io.gitlab.jfronny.gson;
exports io.gitlab.jfronny.gson.annotations;
exports io.gitlab.jfronny.gson.reflect;
exports io.gitlab.jfronny.gson.stream;
// Optional dependency on java.sql
requires static java.sql;