1. EC2에 프로젝트 clone 받기 git hurb에서 코드를 받아 올 수 있게 EC2에 git을 설치합니다. > sudo apt install git 프로젝트를 저장할 디렉토리를 생성합니다. > mkdir ~/app && mkdir ~/app/footprinter_server > cd ~/app/footprinter_server git hurb 웹페이지에서 복사할 repository의 https 주소 (.git으로 끝남)를 복사합니다. > git clone 복사한 주소 > cd 프로젝트명 gradle build > ./gradlew build //코드가 잘 수행되는지 확인 > chmod +x ./gradlew maven build > mvn package 공교롭게도 아래와 같이 빌드 에러가 발생했습..