January 2019
Intermediate to advanced
490 pages
15h 37m
English
We will create our first Lambda with Java as a Maven project. The javadoc comments and package-info.java files required for checkstyle checks from the parent are not shown here. We are also making use of the Maven shade plugin from the parent for generating the JAR files. You may refer to the code files for each recipe for the complete code:
Create a Java project based on Maven with our common parent, declared as shown next in the POM file:
<groupId>tech.heartin.books.serverless-cookbook</groupId><artifactId>helloworld-lambda</artifactId><version>0.0.1-SNAPSHOT</version><parent> <groupId>tech.heartin.books.serverlesscookbook</groupId> ...
Read now
Unlock full access