|
|
@ -26,14 +26,14 @@ module org.pf4j { |
|
|
|
// provides javax.annotation
|
|
|
|
// provides javax.annotation
|
|
|
|
requires java.compiler; |
|
|
|
requires java.compiler; |
|
|
|
|
|
|
|
|
|
|
|
// provided by the ASM library
|
|
|
|
// provided by the ASM library, use "requires static" since it's optional
|
|
|
|
requires org.objectweb.asm; |
|
|
|
requires static org.objectweb.asm; |
|
|
|
|
|
|
|
|
|
|
|
// The SLF4J library currently does not provide a module.
|
|
|
|
// The SLF4J library currently does not provide a module.
|
|
|
|
// Version 1.8 provides a module called "org.slf4j". But this version is
|
|
|
|
// Version 1.8 provides a module called "org.slf4j". But this version is
|
|
|
|
// currently in beta stage. Therefore I'm not sure, if we already like to
|
|
|
|
// currently in beta stage. Therefore I'm not sure, if we already like to
|
|
|
|
// use it.
|
|
|
|
// use it.
|
|
|
|
requires slf4j.api; |
|
|
|
requires org.slf4j; |
|
|
|
|
|
|
|
|
|
|
|
// The java-semver library currently does not provide a module.
|
|
|
|
// The java-semver library currently does not provide a module.
|
|
|
|
// Maybe we should send them a pull request, that at least they provide an
|
|
|
|
// Maybe we should send them a pull request, that at least they provide an
|
|
|
|