2019-10-31 20:43:47 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2021-05-06 17:14:43 +05:30
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
2020-03-15 18:22:24 +05:30
|
|
|
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">
|
2019-10-31 20:43:47 -05:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2023-04-12 08:27:20 +05:30
|
|
|
<artifactId>aws-lambda-modules</artifactId>
|
|
|
|
<name>aws-lambda-modules</name>
|
2020-08-29 00:07:53 +01:00
|
|
|
<packaging>pom</packaging>
|
2019-10-31 20:43:47 -05:00
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
2022-04-19 22:39:54 +05:30
|
|
|
<artifactId>aws-modules</artifactId>
|
2019-10-31 20:43:47 -05:00
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
2020-08-29 00:07:53 +01:00
|
|
|
<modules>
|
2023-04-15 10:01:14 +05:30
|
|
|
<module>lambda-function</module>
|
|
|
|
<module>shipping-tracker-lambda/ShippingFunction</module>
|
|
|
|
<module>todo-reminder-lambda/ToDoFunction</module>
|
2020-08-29 00:07:53 +01:00
|
|
|
</modules>
|
2019-12-05 16:56:52 +02:00
|
|
|
|
2021-08-03 00:27:15 +05:30
|
|
|
</project>
|