Many Oracle Fusion Middleware products are bundled with Oracle Coherence, either optionally or required by the product you are installing. Often it is necessary to identify the Coherence version.

These are the commands to extract the Coherence version from coherence.jar:

cp $DOMAIN_HOME/coherence/lib/coherence.jar /tmp
cd /tmp
unzip coherence.jar META-INF/MANIFEST.MF
cat META-INF/MANIFEST.MF | grep Implementation-Version

The output may be similar to the following:

oracle@devhost:/tmp> cat META-INF/MANIFEST.MF | grep Implementation-
VersionImplementation-Version: 12.2.1.1.0

References: