Complete the code to define the parent project packaging type.
<project> <modelVersion>4.0.0</modelVersion> <groupId>com.example</groupId> <artifactId>parent-project</artifactId> <version>1.0.0</version> <packaging>[1]</packaging> </project>
The parent project in a multi-module Spring Boot project uses pom packaging to manage modules.
Complete the code to include a module named 'service' in the parent POM.
<modules>
<module>[1]</module>
</modules>The service module is included as a child module in the parent POM.
Fix the error in the child module POM to inherit from the parent project.
<parent>
<groupId>com.example</groupId>
<artifactId>parent-project</artifactId>
<version>[1]</version>
</parent>The child module must specify the exact version of the parent project to inherit correctly.
Fill both blanks to define the parent and artifact IDs in a child module POM.
<parent> <groupId>[1]</groupId> <artifactId>[2]</artifactId> <version>1.0.0</version> </parent>
The child module must reference the parent's groupId and artifactId to inherit configuration.
Fill all three blanks to define a dependency in a child module POM.
<dependency> <groupId>[1]</groupId> <artifactId>[2]</artifactId> <version>[3]</version> </dependency>
This dependency adds Spring Boot web starter with the specified version.