Skip to content

Commit cbaae1a

Browse files
authored
Create pom.xml
1 parent 50e3acf commit cbaae1a

File tree

1 file changed

+46
-0
lines changed

1 file changed

+46
-0
lines changed

pom.xml

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project>
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>com.octopus</groupId>
5+
<artifactId>randomquotesapi-lambda</artifactId>
6+
<version>1.0</version>
7+
8+
<properties>
9+
<maven.compiler.target>1.8</maven.compiler.target>
10+
<maven.compiler.source>1.8</maven.compiler.source>
11+
</properties>
12+
13+
<dependencies>
14+
<dependency>
15+
<groupId>com.amazonaws</groupId>
16+
<artifactId>aws-lambda-java-core</artifactId>
17+
<version>1.1.0</version>
18+
</dependency>
19+
<dependency>
20+
<groupId>com.google.code.gson</groupId>
21+
<artifactId>gson</artifactId>
22+
<version>2.8.6</version>
23+
</dependency>
24+
</dependencies>
25+
26+
<build>
27+
<plugins>
28+
<plugin>
29+
<groupId>org.apache.maven.plugins</groupId>
30+
<artifactId>maven-shade-plugin</artifactId>
31+
<version>2.4.3</version>
32+
<configuration>
33+
<createDependencyReducedPom>false</createDependencyReducedPom>
34+
</configuration>
35+
<executions>
36+
<execution>
37+
<phase>package</phase>
38+
<goals>
39+
<goal>shade</goal>
40+
</goals>
41+
</execution>
42+
</executions>
43+
</plugin>
44+
</plugins>
45+
</build>
46+
</project>

0 commit comments

Comments
 (0)