I am using jboss deployment structure.xml file in my web-inf folder to avoid bo jar conflict i used this file and my code is
<?xml version="1.0" encoding="UTF-8"?>
<jboss-deployment-structure xmlns="urn:jboss:deployment-structure:1.0">
<dependencies>
<deployment>
<module name="com.rsa" slot="main" export="true"/>
</deployment>
</dependencies>
</jboss-deployment-structure>
I am using some jars like certjFIPS.jar,cryptojFIPS.jar,ssljFIPS.jar and module.xml file in the below path
E:\Projects\Liferay Project With JBoss Server\Development\liferay-portal-6.1.2-ce-ga3\jboss-7.1.1\modules\com\rsa\main
In module.xml file am using the following code
<module xmlns="urn:jboss:module:1.1" name="com.rsa">
<properties>
<property name="jboss.api" value="private"/>
</properties>
<resources>
<resource-root path="certjFIPS.jar"/>
<resource-root path="cryptojFIPS.jar"/>
<resource-root path="ssljFIPS.jar"/>
</resources>
<dependencies>
<module name="javax.api" />
</dependencies>
</module>
In my webinf/lib path i put the following jars certjFIPS,cryptojFIPS,ssljFIPS,bcm,logging,log4j-1.2.17
During run my project am facing the below error
ERROR [org.jboss.as.server.deployment.scanner] (DeploymentScanner-threads - 1) {"JBAS014653: Composite operation failed and was rolled back. Steps that failed:" => {"Operation step-2" => {"JBAS014671: Failed services" => {"jboss.deployment.unit.\"TestingJBOss-portlet-6.1.1.1.war\".STRUCTURE" => "org.jboss.msc.service.StartException in service jboss.deployment.unit.\"TestingJBOss-portlet-6.1.1.1.war\".STRUCTURE: Failed to process phase STRUCTURE of deployment \"TestingJBOss-portlet-6.1.1.1.war\""}}}}
Please guide me.Thanks in advance