forked from mulesoft-catalyst/error-handler-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
94 lines (83 loc) · 3.03 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<?xml version="1.0" encoding="UTF-8"?>
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>ORG_ID_TOKEN</groupId>
<artifactId>api-error-handler</artifactId>
<version>6.3.0</version>
<packaging>mule-extension</packaging>
<name>API Error Handler</name>
<description>Provides standard REST API error responses</description>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<!-- Overridden by build.sh -->
<repo.id>Exchange2</repo.id>
<repo.url>https://maven.anypoint.mulesoft.com/api/v1/organizations/${project.groupId}/maven</repo.url>
<!-- XML SDK properties -->
<mule.version>4.6.0</mule.version>
<mule.extensions.maven.plugin.version>1.6.1</mule.extensions.maven.plugin.version>
<app.runtime>4.6.0</app.runtime>
</properties>
<distributionManagement>
<repository>
<id>${repo.id}</id>
<name>Deployment Repo</name>
<url>${repo.url}</url>
<layout>default</layout>
</repository>
</distributionManagement>
<dependencies>
<!--Needed to discover the 'xml-based' XmlExtensionLoader -->
<dependency>
<groupId>org.mule.runtime</groupId>
<artifactId>mule-module-extensions-xml-support</artifactId>
<version>${mule.version}</version>
<scope>provided</scope>
</dependency>
<!-- EE Dependency: Required for DataWeave -->
<dependency>
<groupId>com.mulesoft.mule.runtime.modules</groupId>
<artifactId>mule-module-spring-config-ee</artifactId>
<version>${mule.version}</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<!-- Build plugin for XML SDK extension -->
<groupId>org.mule.runtime.plugins</groupId>
<artifactId>mule-extensions-maven-plugin</artifactId>
<version>${mule.extensions.maven.plugin.version}</version>
<extensions>true</extensions>
</plugin>
<!-- MUnit: Definition is required even if MUnit is not used -->
<plugin>
<groupId>com.mulesoft.munit</groupId>
<artifactId>munit-extensions-maven-plugin</artifactId>
<dependencies>
<dependency>
<!-- Ensure using correct version for runtime. This plugin may not have latest in its POM. -->
<groupId> org.mule.runtime</groupId>
<artifactId>mule-core</artifactId>
<version>${mule.version}</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>mulesoft-releases</id>
<name>MuleSoft Releases Repository</name>
<url>https://repository.mulesoft.org/releases/</url>
<layout>default</layout>
</repository>
<repository>
<id>anypoint-exchange-v3</id>
<name>Anypoint Exchange V3</name>
<url>https://maven.anypoint.mulesoft.com/api/v3/maven</url>
<layout>default</layout>
</repository>
</repositories>
</project>