java-tutorials/aws-lambda/pom.xml

23 lines
722 B
XML
Raw Normal View History

<?xml version="1.0" encoding="UTF-8"?>
2021-05-06 07:44:43 -04:00
<project xmlns="http://maven.apache.org/POM/4.0.0"
2020-03-15 08:52:24 -04:00
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>
<artifactId>aws-lambda</artifactId>
<name>aws-lambda</name>
2020-08-28 19:07:53 -04:00
<packaging>pom</packaging>
<parent>
<groupId>com.baeldung</groupId>
2019-12-05 09:56:52 -05:00
<artifactId>parent-modules</artifactId>
<version>1.0.0-SNAPSHOT</version>
2020-08-28 19:07:53 -04:00
<relativePath>../</relativePath>
</parent>
2020-08-28 19:07:53 -04:00
<modules>
<module>lambda</module>
<module>shipping-tracker/ShippingFunction</module>
</modules>
2019-12-05 09:56:52 -05:00
2020-08-28 19:07:53 -04:00
</project>