This repository has been archived by the owner on Jan 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
pom.xml
60 lines (55 loc) · 2.18 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
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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>com.dejim</groupId>
<artifactId>aws-lambda</artifactId>
<version>1.0.11</version>
<packaging>mule-extension</packaging>
<name>AWS Lambda Connector - Mule 4</name>
<parent>
<groupId>com.mulesoft.connectors</groupId>
<artifactId>mule-connectivity-parent</artifactId>
<version>1.3.8</version>
</parent>
<properties>
<!-- Property added to comply with a faulty feature on SDK 1.1 which makes the connector fail. -->
<extensionsAnnotationProcessor>
org.mule.runtime.module.extension.internal.resources.ExtensionResourcesGeneratorAnnotationProcessor
</extensionsAnnotationProcessor>
<!-- Property added to comply with a faulty feature on SDK 1.1 which makes the connector fail. -->
<apt.phase>compile</apt.phase>
</properties>
<dependencies>
<dependency>
<groupId>com.mulesoft.connectors</groupId>
<artifactId>aws-connector-commons</artifactId>
<version>2.2.4</version>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-lambda</artifactId>
<version>1.11.856</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.6</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<version>2.5.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
</plugin>
</plugins>
</build>
</project>