Hello Mauricio,
Thanks for your reply. Mr. Ted Pan instructed us to remove ""jbpm-test*.jar""
But there is another error where it seems to be common with many people which is as follows:
service jboss.jdbc-driver.mysql (missing) dependents: [service jboss.data-source.java:/jboss/datasources/ProcessEngineDS]
standalone.xml is updated and also copied driver jar in application lib.
datasource entry in standalone,xml file is given below.
<datasources>
<datasource jndi-name="java:/jboss/datasources/ProcessEngineDS" pool-name="MySQLDS" enabled="true" use-java-context="true">
<connection-url>jdbc:mysql://localhost:3306/jbpm5</connection-url>
<driver>mysql</driver>
<pool></pool>
<security>
<user-name>jbpm5</user-name>
<password>jbpm5</password>
</security>
</datasource>
<drivers>
<driver name="mysql" module="com.mysql">
<xa-datasource-class>com.mysql.jdbc.jdbc2.optional.MysqlXADataSource</xa-datasource-class>
</driver>
</drivers>
</datasources>
Thanks in advance for you and for Mr. Ted.