When you say maven uses convention over configuration?
Answer Posted / Prabhat Yadav
Apache Maven follows the principle of Convention Over Configuration. This means that it provides a default configuration for common tasks, and developers only need to specify deviations from these defaults. For example, by default, Maven assumes that your source code is located in `src/main/java`, tests are in `src/test/java`, and the compiled classes go into the `target` directory.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers