You are on page 1of 2

DevOps

Maven: Building and Deploying Java based projects

References:

https://www.youtube.com/watch?v=zPg5aPjh-sA

It’s about Project Object Model ( POM )

 Compile source code


 Copy resource
 Compile and run tests
 Package project
 Deploy project
 Cleanup

Installation of Maven

Windows:

 Download Maven

http://maven.apache.org/download.cgi

 Extract the zip of Maven

Pre-requisites

 Jdk 1.7 or above


 Set the environment
 User variable
MAVEN_HOME - C:\Program Files\apache-maven-3.6.3
M2_HOME - C:\Program Files\apache-maven-3.6.3
 System variable
Path - C:\Program Files\apache-maven-3.6.3\bin

CMD

Mvn - version

Linux or Ubuntu:
 sudo apt update
 sudo apt install maven
 mvn –version

POM is an XML file that it contains information about project and configuration details used by
maven to build the project.
Boto3

Reference

https://boto3.amazonaws.com/v1/documentation/api/latest/index.html

Boto is the Amazon Web Services (AWS) SDK for Python. It enables Python developers to create,
configure, and manage AWS services, such as EC2 and S3.

Installation of Boto3

 pip install boto3

Pre-requisites

PIP need be installed

You might also like