minor
minor
defect
When a new app is created, a pom.xml file is populated based on the parameters provided.
In some cases, properties are hard-coded here where variables should actually be used.
Test
- Create a new app.
- Expected: Except in the definition of the parent and the definitions of groupId, artifactId, and version, there are no "hard" references to these values.
- Run `mvn install `.
- Expected: There is a ".deb" file in the target folder whose name is composed of the artifact ID and the version.
- Change the version. Run ` mvn install `.
- Expected: There is a different ".deb" file in the Target folder, whose name is composed of the artifact ID and the new version.