Browse Source

Add org.opensaml.security to X-Pack Security module-info (#102589)

My IntelliJ was refusing to compile SamlObjectHandler.java
unless this extra line was added to module-info.java.

This doesn't currently affect official builds, nor anyone
else's IntelliJ builds it would seem. However, I thought
that since eventually some other change will make this
necessary it doesn't hurt to add it now, and might save
others time.
David Roberts 1 year ago
parent
commit
1913145338
1 changed files with 1 additions and 0 deletions
  1. 1 0
      x-pack/plugin/security/src/main/java/module-info.java

+ 1 - 0
x-pack/plugin/security/src/main/java/module-info.java

@@ -33,6 +33,7 @@ module org.elasticsearch.security {
     requires org.opensaml.core;
     requires org.opensaml.saml;
     requires org.opensaml.saml.impl;
+    requires org.opensaml.security;
     requires org.opensaml.security.impl;
     requires org.opensaml.xmlsec.impl;
     requires org.opensaml.xmlsec;