I imported an API spec and moved my existing project to my new project, upon running I am getting this error below. Is anyone familiar? Thank you!
ERROR 2022-01-11 08:02:59,991 [WrapperListener_start_runner] [processor: ; event: ] org.mule.runtime.module.deployment.impl.internal.application.DefaultMuleApplication: Error loading: impl/impl-publish-to-jms-topic-subFlow.xml, Can't resolve http://www.mulesoft.org/schema/mule/jms/current/mule-jms.xsd, A dependency or plugin might be missing
org.xml.sax.SAXException: Can't resolve http://www.mulesoft.org/schema/mule/jms/current/mule-jms.xsd, A dependency or plugin might be missing
it seems that the namespace declaration for the JMS is missing in mule flow file. You can add required schema and namespaces like below.
<mule xmlns:jms="http://www.mulesoft.org/schema/mule/jms" xsi:schemaLocation= "http://www.mulesoft.org/schema/mule/jms http://www.mulesoft.org/schema/mule/jms/current/mule-jms.xsd">