JPMS support
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed

This commit is contained in:
Johannes Frohnmeyer 2022-11-24 15:06:59 +01:00
parent e87d46153f
commit 7dc17e47fc
Signed by: Johannes
GPG Key ID: E76429612C2929F4
9 changed files with 36 additions and 4 deletions

View File

@ -0,0 +1,6 @@
module io.gitlab.jfronny.commons.gson {
requires gson;
requires io.gitlab.jfronny.commons;
exports io.gitlab.jfronny.commons.serialize.gson.api;
exports io.gitlab.jfronny.commons.serialize.gson.api.v1;
}

View File

@ -1,4 +1,4 @@
package io.gitlab.jfronny.commons.log;
package io.gitlab.jfronny.commons.log.slf4j;
import org.slf4j.Logger;
import org.slf4j.Marker;

View File

@ -1,4 +1,4 @@
package io.gitlab.jfronny.commons.log;
package io.gitlab.jfronny.commons.log.slf4j;
import org.slf4j.ILoggerFactory;
import org.slf4j.Logger;

View File

@ -1,4 +1,4 @@
package io.gitlab.jfronny.commons.log;
package io.gitlab.jfronny.commons.log.slf4j;
import org.slf4j.ILoggerFactory;
import org.slf4j.IMarkerFactory;

View File

@ -1,5 +1,6 @@
package io.gitlab.jfronny.commons.log;
package io.gitlab.jfronny.commons.log.slf4j;
import io.gitlab.jfronny.commons.log.Logger;
import org.slf4j.LoggerFactory;
public class SLF4JLogger implements Logger {

View File

@ -0,0 +1,5 @@
module io.gitlab.jfronny.commons.slf4j {
requires io.gitlab.jfronny.commons;
requires org.slf4j;
exports io.gitlab.jfronny.commons.log.slf4j;
}

View File

@ -1,6 +1,7 @@
package io.gitlab.jfronny.commons.test;
import io.gitlab.jfronny.commons.log.*;
import io.gitlab.jfronny.commons.log.slf4j.SLF4JLogger;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;

View File

@ -0,0 +1,7 @@
module io.gitlab.jfronny.commons.muscript {
exports io.gitlab.jfronny.commons.data.dynamic;
exports io.gitlab.jfronny.muscript;
exports io.gitlab.jfronny.muscript.compiler;
exports io.gitlab.jfronny.muscript.debug;
exports io.gitlab.jfronny.muscript.error;
}

View File

@ -0,0 +1,12 @@
module io.gitlab.jfronny.commons {
exports io.gitlab.jfronny.commons;
exports io.gitlab.jfronny.commons.cache;
exports io.gitlab.jfronny.commons.data;
exports io.gitlab.jfronny.commons.io;
exports io.gitlab.jfronny.commons.log;
exports io.gitlab.jfronny.commons.ref;
exports io.gitlab.jfronny.commons.reflect;
exports io.gitlab.jfronny.commons.serialize;
exports io.gitlab.jfronny.commons.throwable;
exports io.gitlab.jfronny.commons.tuple;
}