Added/fixed jpms files

connection_type_change
Robinson 2021-04-26 15:47:45 +02:00
parent 43d01a74e2
commit d0ed6a72f9
5 changed files with 21 additions and 4 deletions

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package dorkbox.executor.stream.slf4j;
package dorkbox.netUtil;
/**
* Required for intellij to not complain regarding `module-info` for a multi-release jar.

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package dorkbox.executor.stream.slf4j;
package dorkbox.netUtil.dnsUtil;
/**
* Required for intellij to not complain regarding `module-info` for a multi-release jar.

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package dorkbox.executor.stream.slf4j;
package dorkbox.netUtil.jna;
/**
* Required for intellij to not complain regarding `module-info` for a multi-release jar.

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package dorkbox.executor.stream.slf4j;
package dorkbox.netUtil.ping;
/**
* Required for intellij to not complain regarding `module-info` for a multi-release jar.

17
src9/module-info.java Normal file
View File

@ -0,0 +1,17 @@
module dorkbox.netutil {
exports dorkbox.netUtil;
exports dorkbox.netUtil.dnsUtil;
exports dorkbox.netUtil.jna;
exports dorkbox.netUtil.ping;
requires dorkbox.executor;
requires dorkbox.updates;
requires org.slf4j;
requires com.sun.jna;
requires com.sun.jna.platform;
requires kotlin.stdlib;
requires java.base;
}