Versions
3.0.0.SP04-redhat-00001
12.0.0
3.0
LongText
CDI2.0.2.redhat-00002
WS1.0.0.MR1-redhat-8
Java1.8.0_201
EL2.0.0.Final-redhat-00001
Servlet2.0.0.Final-redhat-00001
JSF3.0.0.SP04-redhat-00001
Primefaces12.0.0
OmniFaces3.0
Hibernate5.3.18.Final-redhat-00002
Hibernate Envers5.3.18.Final-redhat-00002
Jasper Reportsunknown
Wildflyunknown

Implementation Version

The jp:versions component and j:version() function provide the implementation versions of used libraries

jp:versions

  • shows the implementation version of JSF, Primefaces and Omnifaces in a panel

j:version('fqcn') function

  • shows the implementation version of the library the given class is from

		<jp:versions/>
		<p:dataTable styleClass="jeesl-datatable"
					 var="l" value="#{versionBean.libraries}">
			<p:column headerText="Long">  
				<h:outputText value="#{l.name[localeCode].lang}"/>
			</p:column>
			<p:column headerText="Text">  
				<h:outputText value="#{j:version(l.symbol)}"/>
			</p:column>