Merge pull request #8693 from Maiklins/BAEL-20604-fix-muleesb-module

BAEL-20604 fix muleesb module
This commit is contained in:
Josh Cummings 2020-03-10 19:50:27 -06:00 committed by GitHub
commit d61941fc79

View File

@ -83,7 +83,7 @@
<dependency> <dependency>
<groupId>com.mulesoft.munit</groupId> <groupId>com.mulesoft.munit</groupId>
<artifactId>mule-munit-support</artifactId> <artifactId>mule-munit-support</artifactId>
<version>${mule.munit.support.version}</version> <version>${mule.version}</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency> <dependency>
@ -106,18 +106,19 @@
</configuration> </configuration>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.mule.tools</groupId> <groupId>org.mule.tools.maven</groupId>
<artifactId>muleesb-maven-plugin</artifactId> <artifactId>mule-maven-plugin</artifactId>
<version>${muleesb-maven-plugin.version}</version> <version>2.2.1</version>
<configuration> <configuration>
<deploymentType>standalone</deploymentType>
<muleVersion>${mule.version}</muleVersion> <muleVersion>${mule.version}</muleVersion>
<applications>/home/abir/AnypointStudio/workspace/variablescopetest</applications>
</configuration> </configuration>
<executions> <executions>
<execution> <execution>
<id>deploy</id> <id>deploy</id>
<phase>deploy</phase>
<goals> <goals>
<goal>start</goal> <goal>deploy</goal>
</goals> </goals>
</execution> </execution>
</executions> </executions>
@ -210,11 +211,9 @@
</pluginRepositories> </pluginRepositories>
<properties> <properties>
<mule.version>3.8.1</mule.version> <mule.version>3.9.0</mule.version>
<mule.tools.version>1.2</mule.tools.version> <mule.tools.version>1.2</mule.tools.version>
<munit.version>1.3.6</munit.version> <munit.version>1.3.6</munit.version>
<mule.munit.support.version>3.9.0</mule.munit.support.version>
<muleesb-maven-plugin.version>1.0</muleesb-maven-plugin.version>
<build-helper-maven-plugin.version>1.7</build-helper-maven-plugin.version> <build-helper-maven-plugin.version>1.7</build-helper-maven-plugin.version>
</properties> </properties>