I try to push an asset with maven command, only I get this error;
[ERROR] Failed to execute goal org.mule.tools.maven:exchange-mule-maven-plugin:0.0.15:exchange-pre-deploy (validate) on project json-logger:
I also use this plugin to deploy it to exchange.
<plugin>
<groupId>org.mule.tools.maven</groupId>
<artifactId>exchange-mule-maven-plugin</artifactId>
<version>0.0.15</version>
<executions>
<execution>
<id>validate</id>
<phase>validate</phase>
<goals>
<goal>exchange-pre-deploy</goal>
</goals>
</execution>
<execution>
<id>deploy</id>
<phase>deploy</phase>
<goals>
<goal>exchange-deploy</goal>
</goals>
</execution>
</executions>
</plugin>
The plugin above seems to be mandatory following Mulesoft documentation. Al the user names and passwords are working fine and also the endpoints. Does anybody have any idea why is throwing this error?