An assignment for the Software Engineering in Practice course about the maven project management and comprehension tool. More specifically in this assignment we will create a Histogram with some grades(0-10) using java for coding and maven for packaging and deploying the program.
So, in order to run the program you simply go to the pom.xml file and run the command: mvn package
and then it will compile the source code and also package it as a jar file and put it into the target folder.
Then you can simply use the following command:
java -jar gradeshistogram/target/gradeshistogram-0.0.1-SNAPSHOT-jar-with-dependencies.jar <Give the path of grades.txt file in your computer>
and the output should be the following image:
Supervisor: zkotti
Proceed to the Unittesting README.md.
Proceed to the SourceCodeAnalyzer README.md.