|
| 1 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 2 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd"> |
| 4 | + <modelVersion>4.0.0</modelVersion> |
| 5 | + |
| 6 | + <groupId>com.amazonaws</groupId> |
| 7 | + <artifactId>aws-lambda-java-events-examples</artifactId> |
| 8 | + <version>1.0.0</version> |
| 9 | + <packaging>jar</packaging> |
| 10 | + |
| 11 | + <name>AWS Lambda Java Events Samples - KinesisFirehose</name> |
| 12 | + <description> |
| 13 | + AWS Lambda Java Function Examples |
| 14 | + </description> |
| 15 | + <url>https://aws.amazon.com/lambda/</url> |
| 16 | + <licenses> |
| 17 | + <license> |
| 18 | + <name>Apache License, Version 2.0</name> |
| 19 | + <url>https://aws.amazon.com/apache2.0</url> |
| 20 | + <distribution>repo</distribution> |
| 21 | + </license> |
| 22 | + </licenses> |
| 23 | + <scm> |
| 24 | + <url>https://github.com/aws/aws-lambda-java-libs.git</url> |
| 25 | + </scm> |
| 26 | + <developers> |
| 27 | + <developer> |
| 28 | + <name>AWS Lambda team</name> |
| 29 | + <organization>Amazon Web Services</organization> |
| 30 | + <organizationUrl>https://aws.amazon.com/</organizationUrl> |
| 31 | + </developer> |
| 32 | + </developers> |
| 33 | + |
| 34 | + <properties> |
| 35 | + <maven.compiler.source>1.8</maven.compiler.source> |
| 36 | + <maven.compiler.target>1.8</maven.compiler.target> |
| 37 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 38 | + </properties> |
| 39 | + |
| 40 | + <dependencies> |
| 41 | + <dependency> |
| 42 | + <groupId>com.amazonaws</groupId> |
| 43 | + <artifactId>aws-lambda-java-core</artifactId> |
| 44 | + <version>1.2.1</version> |
| 45 | + </dependency> |
| 46 | + <dependency> |
| 47 | + <groupId>com.amazonaws</groupId> |
| 48 | + <artifactId>aws-lambda-java-events</artifactId> |
| 49 | + <version>3.10.0</version> |
| 50 | + </dependency> |
| 51 | + |
| 52 | + <dependency> |
| 53 | + <groupId>org.junit.jupiter</groupId> |
| 54 | + <artifactId>junit-jupiter</artifactId> |
| 55 | + <version>RELEASE</version> |
| 56 | + <scope>test</scope> |
| 57 | + </dependency> |
| 58 | + <dependency> |
| 59 | + <groupId>com.amazonaws</groupId> |
| 60 | + <artifactId>aws-lambda-java-tests</artifactId> |
| 61 | + <version>1.1.0</version> |
| 62 | + <scope>test</scope> |
| 63 | + </dependency> |
| 64 | + </dependencies> |
| 65 | + |
| 66 | + <build> |
| 67 | + <plugins> |
| 68 | + <plugin> |
| 69 | + <groupId>org.apache.maven.plugins</groupId> |
| 70 | + <artifactId>maven-surefire-plugin</artifactId> |
| 71 | + <version>2.22.2</version> |
| 72 | + </plugin> |
| 73 | + </plugins> |
| 74 | + </build> |
| 75 | +</project> |
0 commit comments