From the course: Software Design: From Requirements to Release

Unlock the full course today

Join today to access over 24,800 courses taught by industry experts.

Proof of concept (POC) setup

Proof of concept (POC) setup

- [Narrator] To build our proof of concept, we need to set up our Dev environment that has several elements that require careful configuration. I already set up the environment, and we will now take a brief tour, looking at each of the elements. First, let us take a look at Eclipse. Here, I have created a Maven project that is linked with Git Repo. To create this project, I used Maven Webapp Archetype, which generates this folder structure. A key element in Maven projects is pom.xml. In this, starting from the top, in line number five and six, the GROUP_ID is com.hplussport, and artifact ID is red30. The packaging in line number seven is set to war, which we will deploy on our production server. After that, I have included some dependencies for Java and mysql. I am finally in build. The important elements are these directories. Source directory in line 54, test source directory in line 55, and…

Contents