-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
47 lines (42 loc) · 2.11 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
<?xml version="1.0" encoding="UTF-8"?>
<!--suppress HtmlUnknownTag -->
<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>
<name>Yapily</name>
<description>The Yapily API enables connections between your application and users'' banks. For more information check out our [documentation](https://docs.yapily.com/).<br><br>In particular, make sure to view our [Getting Started](https://docs.yapily.com/pages/home/getting-started/) steps if this is your first time here.<br><br>While testing the API, our list of [sandbox credentials](https://docs.yapily.com/pages/key-concepts/sandbox-credentials/) maybe useful.</description>
<parent>
<groupId>com.mulesoft.connectivity</groupId>
<artifactId>rest-sdk-connector-parent-pom</artifactId>
<version>0.8.0-RC3</version>
</parent>
<groupId>com.mulesoft.connectors</groupId>
<artifactId>yapily-api-connector</artifactId>
<version>1.0.0</version>
<packaging>mule-extension</packaging>
<properties>
<rest.sdk.commons.version>${project.parent.version}</rest.sdk.commons.version>
<rest.sdk.mojo.version>${project.parent.version}</rest.sdk.mojo.version>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.mule.runtime.plugins</groupId>
<artifactId>mule-extensions-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
</plugin>
<plugin>
<groupId>com.mulesoft.munit</groupId>
<artifactId>munit-extensions-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>