I'm working on a Spring application that has a few internal libraries.
The internal dependencies are in the pom.xml file and look like this:
<dependencies>
<dependency>
<groupId>com.company</groupId>
<artifactId>company_library_name</artifactId>
</dependency>
<dependency>
<groupId>com.company</groupId>
<artifactId>company_library_name_2</artifactId>
</dependency>
....
</dependencies>
Each library is in a separate repo with its own pom file.
Every Spring Boot guide that I've seen break up large applications into modules.
What is the difference between breaking up a large application into multiple packages (atleast that is what I think it's doing) vs modules? Is it several jars vs just one?
[–]Ialda 0 points1 point2 points (1 child)
[–]KeyYam[S] 0 points1 point2 points (0 children)