A simple Java project managed with Maven.
src/main/java/— Application source codesrc/test/java/— Unit teststarget/— Maven build output.gitignore— Files and folders excluded from version controlpom.xml— Maven project configuration
To compile the project, run:
mvn compileTo run the application:
java -cp target/classes main.AppTo run all tests:
mvn test- Java 17 is required.
- JUnit 5 is used for testing.
- Special characters (like
ø) are supported in input.
MIT