2019-10-31 21:43:47 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2022-05-08 07:06:25 -04:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
2019-10-31 21:43:47 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>com.mycompany</groupId>
|
|
|
|
<artifactId>muleesb</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
<name>muleesb</name>
|
2019-12-05 09:56:52 -05:00
|
|
|
<packaging>mule</packaging>
|
|
|
|
|
2019-10-31 21:43:47 -04:00
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>parent-modules</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<!-- Mule Dependencies -->
|
|
|
|
<dependencies>
|
|
|
|
<!-- Xml configuration -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mule.modules</groupId>
|
|
|
|
<artifactId>mule-module-spring-config</artifactId>
|
2020-02-29 09:30:39 -05:00
|
|
|
<version>${mule.version}</version>
|
2019-10-31 21:43:47 -04:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<!-- Mule Transports -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mule.transports</groupId>
|
|
|
|
<artifactId>mule-transport-file</artifactId>
|
2020-02-29 09:30:39 -05:00
|
|
|
<version>${mule.version}</version>
|
2019-10-31 21:43:47 -04:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mule.transports</groupId>
|
|
|
|
<artifactId>mule-transport-http</artifactId>
|
2020-02-29 09:30:39 -05:00
|
|
|
<version>${mule.version}</version>
|
2019-10-31 21:43:47 -04:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mule.transports</groupId>
|
|
|
|
<artifactId>mule-transport-jdbc</artifactId>
|
2020-02-29 09:30:39 -05:00
|
|
|
<version>${mule.version}</version>
|
2019-10-31 21:43:47 -04:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mule.transports</groupId>
|
|
|
|
<artifactId>mule-transport-jms</artifactId>
|
2020-02-29 09:30:39 -05:00
|
|
|
<version>${mule.version}</version>
|
2019-10-31 21:43:47 -04:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mule.transports</groupId>
|
|
|
|
<artifactId>mule-transport-vm</artifactId>
|
2020-02-29 09:30:39 -05:00
|
|
|
<version>${mule.version}</version>
|
2019-10-31 21:43:47 -04:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<!-- Mule Modules -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mule.modules</groupId>
|
|
|
|
<artifactId>mule-module-scripting</artifactId>
|
2020-02-29 09:30:39 -05:00
|
|
|
<version>${mule.version}</version>
|
2019-10-31 21:43:47 -04:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mule.modules</groupId>
|
|
|
|
<artifactId>mule-module-xml</artifactId>
|
2020-02-29 09:30:39 -05:00
|
|
|
<version>${mule.version}</version>
|
2019-10-31 21:43:47 -04:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<!-- for testing -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mule.tests</groupId>
|
|
|
|
<artifactId>mule-tests-functional</artifactId>
|
2020-02-29 09:30:39 -05:00
|
|
|
<version>${mule.version}</version>
|
2019-10-31 21:43:47 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mule.modules</groupId>
|
|
|
|
<artifactId>mule-module-apikit</artifactId>
|
2020-02-29 09:30:39 -05:00
|
|
|
<version>${mule.version}</version>
|
2019-10-31 21:43:47 -04:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.mulesoft.munit</groupId>
|
|
|
|
<artifactId>mule-munit-support</artifactId>
|
2020-02-29 09:30:39 -05:00
|
|
|
<version>${mule.version}</version>
|
2019-10-31 21:43:47 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.mulesoft.munit</groupId>
|
|
|
|
<artifactId>munit-runner</artifactId>
|
|
|
|
<version>${munit.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.mule.tools.maven</groupId>
|
|
|
|
<artifactId>mule-app-maven-plugin</artifactId>
|
|
|
|
<version>${mule.tools.version}</version>
|
|
|
|
<extensions>true</extensions>
|
|
|
|
<configuration>
|
|
|
|
<copyToAppsDirectory>true</copyToAppsDirectory>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
2020-02-25 08:17:27 -05:00
|
|
|
<groupId>org.mule.tools.maven</groupId>
|
|
|
|
<artifactId>mule-maven-plugin</artifactId>
|
2022-03-04 10:47:50 -05:00
|
|
|
<version>${mule-maven-plugin.version}</version>
|
2019-10-31 21:43:47 -04:00
|
|
|
<configuration>
|
2020-02-25 08:17:27 -05:00
|
|
|
<deploymentType>standalone</deploymentType>
|
|
|
|
<muleVersion>${mule.version}</muleVersion>
|
2019-10-31 21:43:47 -04:00
|
|
|
</configuration>
|
2020-02-25 08:17:27 -05:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>deploy</id>
|
|
|
|
<phase>deploy</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>deploy</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2019-10-31 21:43:47 -04:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>build-helper-maven-plugin</artifactId>
|
|
|
|
<version>${build-helper-maven-plugin.version}</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>add-resource</id>
|
|
|
|
<phase>generate-resources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>add-resource</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/app/</directory>
|
|
|
|
</resource>
|
|
|
|
<resource>
|
|
|
|
<directory>mappings/</directory>
|
|
|
|
</resource>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/api/</directory>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>com.mulesoft.munit.tools</groupId>
|
|
|
|
<artifactId>munit-maven-plugin</artifactId>
|
|
|
|
<version>${munit.version}</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>test</id>
|
|
|
|
<phase>test</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>test</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<coverage>
|
|
|
|
<runCoverage>true</runCoverage>
|
|
|
|
<formats>
|
|
|
|
<format>html</format>
|
|
|
|
</formats>
|
|
|
|
</coverage>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
<testResources>
|
|
|
|
<testResource>
|
|
|
|
<directory>src/test/munit</directory>
|
|
|
|
</testResource>
|
|
|
|
<testResource>
|
|
|
|
<directory>src/test/resources</directory>
|
|
|
|
</testResource>
|
|
|
|
</testResources>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>Central</id>
|
|
|
|
<name>Central</name>
|
2020-07-07 07:18:10 -04:00
|
|
|
<url>https://repo1.maven.org/maven2/</url>
|
2019-10-31 21:43:47 -04:00
|
|
|
<layout>default</layout>
|
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<id>mulesoft-releases</id>
|
|
|
|
<name>MuleSoft Releases Repository</name>
|
2020-07-07 07:18:10 -04:00
|
|
|
<url>https://repository.mulesoft.org/releases/</url>
|
2019-10-31 21:43:47 -04:00
|
|
|
<layout>default</layout>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<pluginRepositories>
|
|
|
|
<pluginRepository>
|
|
|
|
<id>mulesoft-release</id>
|
|
|
|
<name>mulesoft release repository</name>
|
|
|
|
<layout>default</layout>
|
2022-03-04 10:47:50 -05:00
|
|
|
<url>https://repository.mulesoft.org/nexus/content/repositories/public/</url>
|
2019-10-31 21:43:47 -04:00
|
|
|
<snapshots>
|
|
|
|
<enabled>false</enabled>
|
|
|
|
</snapshots>
|
|
|
|
</pluginRepository>
|
|
|
|
</pluginRepositories>
|
|
|
|
|
|
|
|
<properties>
|
2020-02-29 09:30:39 -05:00
|
|
|
<mule.version>3.9.0</mule.version>
|
2022-03-04 10:47:50 -05:00
|
|
|
<mule.tools.version>1.8</mule.tools.version>
|
2019-10-31 21:43:47 -04:00
|
|
|
<munit.version>1.3.6</munit.version>
|
2022-03-04 10:47:50 -05:00
|
|
|
<build-helper-maven-plugin.version>1.10</build-helper-maven-plugin.version>
|
|
|
|
<mule-maven-plugin.version>2.2.1</mule-maven-plugin.version>
|
2019-10-31 21:43:47 -04:00
|
|
|
</properties>
|
|
|
|
|
2022-05-08 07:06:25 -04:00
|
|
|
</project>
|