-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
86 lines (77 loc) · 3.04 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
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>078efef1-d139-48ed-92f5-f8d4a0592374</groupId>
<artifactId>common-parent-pom</artifactId>
<version>1.0.30</version>
<relativePath/>
</parent>
<groupId>078efef1-d139-48ed-92f5-f8d4a0592374</groupId>
<artifactId>micorp-customer-sapi-asset</artifactId>
<version>1.3.58</version>
<packaging>mule-application</packaging>
<name>micorp-customer-sapi</name>
<description>Mulesoft service for creating customers in Salesforce using data from the Corporate Orders System</description>
<properties>
<!-- Exchange documentation. Details on https://docs.mulesoft.com/exchange/to-publish-assets-maven#publish-an-asset-with-mutable-data -->
<categories key="API layer">System</categories>
<categories key="Backend">Salesforce</categories>
<categories key="Asset type">API</categories>
<tags>Micorp, Salesforce, System, Customer</tags>
<fields key="sourceCode">https://github.com/jpontdia/micorp-customer-sapi</fields>
<!-- RAML specification -->
<restconnector.api.spec.group>${project.groupId}</restconnector.api.spec.group>
<restconnector.api.spec.artifact>micorp-customer-sapi</restconnector.api.spec.artifact>
<restconnector.api.spec.version>1.0.6</restconnector.api.spec.version>
</properties>
<dependencies>
<!-- RAML specification -->
<dependency>
<groupId>${restconnector.api.spec.group}</groupId>
<artifactId>${restconnector.api.spec.artifact}</artifactId>
<version>${restconnector.api.spec.version}</version>
<classifier>raml</classifier>
<type>zip</type>
</dependency>
<!-- Common Assets -->
<dependency>
<groupId>078efef1-d139-48ed-92f5-f8d4a0592374</groupId>
<artifactId>common-core</artifactId>
<version>1.0.23</version>
<classifier>mule-plugin</classifier>
</dependency>
<!-- Salesforce connector -->
<dependency>
<groupId>com.mulesoft.connectors</groupId>
<artifactId>mule-salesforce-connector</artifactId>
<classifier>mule-plugin</classifier>
</dependency>
<!-- Logging Dependencies-->
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
</dependency>
<dependency>
<groupId>io.logz.log4j2</groupId>
<artifactId>logzio-log4j2-appender</artifactId>
</dependency>
<dependency>
<groupId>io.logz.sender</groupId>
<artifactId>logzio-sender</artifactId>
</dependency>
</dependencies>
<!--Repository to get the artifacts for your Anypoint organization -->
<repositories>
<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>