...
Code Block |
---|
COPY grouper-authentication-plugin-1.0.0.jar /opt/grouper/plugins/grouper-authentication-plugin.jar |
The default location for plugin jars is /opt/grouper/plugins, but you can can use an alternate location and configure Grouper to use that directory.
...
Code Block |
---|
grouper.osgi.enable = true
grouper.osgi.jar.dir = /opt/grouper/plugins
grouper.osgi.framework.boot.delegation=org.osgi.*,javax.*,org.apache.commons.logging,edu.internet2.middleware.grouperClient.*,edu.internet2.middleware.grouper.*,org.w3c.*,org.xml.*,sun.*
grouperOsgiPlugin.0.jarName = grouper-authentication-plugin-1.0.0.jar |
The grouper.osgi.jar.dir
property should point to the directory you copied the file to in your image build file. Property grouperOsgiPlugin.0.jarName
is the name of the file you copied in, inside of the OSGI plugin directory.
...