mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Gaetan Boismal
08.28.2016 93e56643181610f24365f6745c58d7cd9c21e894
OPENDJ-2941 Fix tools extension informations

The issue was a side effect of the configuration framework migration (see OPENDJ-1238).
With the legacy configuration framework, we ensured that the file admin/extension.manifest was present in the extension jar like snmp-mib2605.jar.
Now it seems that we check if the file META-INF/services/org.forgerock.opendj.config.AbstractManagedObjectDefinition exists in the extension jar.
In order to have the default snmp extension listed again in tools, add an empty file in snmp-mib2605.jar
1 files modified
1 files added
1 ■■■■ changed files
opendj-server-legacy/pom.xml 1 ●●●● patch | view | raw | blame | history
opendj-server-legacy/src/snmp/resource/META-INF/services/org.forgerock.opendj.config.AbstractManagedObjectDefinition patch | view | raw | blame | history
opendj-server-legacy/pom.xml
@@ -1357,6 +1357,7 @@
                  <finalName>${snmp.jar.name}</finalName>
                  <includes>
                    <include>org/opends/server/snmp/**</include>
                    <include>META-INF/services/org.forgerock.opendj.config.AbstractManagedObjectDefinition</include>
                  </includes>
                  <archive>
                    <index>true</index>
opendj-server-legacy/src/snmp/resource/META-INF/services/org.forgerock.opendj.config.AbstractManagedObjectDefinition