<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.baeldung</groupId> <artifactId>spring-remoting</artifactId> <packaging>pom</packaging> <version>1.0-SNAPSHOT</version> <name>spring-remoting</name> <description>Parent for all projects related to Spring Remoting.</description> <parent> <artifactId>parent-boot-1</artifactId> <groupId>com.baeldung</groupId> <version>0.0.1-SNAPSHOT</version> <relativePath>../parent-boot-1</relativePath> </parent> <dependencyManagement> <dependencies> <!-- companion modules --> <dependency> <groupId>${project.groupId}</groupId> <artifactId>api</artifactId> <version>${project.version}</version> </dependency> </dependencies> </dependencyManagement> <modules> <module>remoting-http</module> <module>remoting-hessian-burlap</module> <module>remoting-amqp</module> <module>remoting-jms</module> <module>spring-remoting-rmi</module> </modules> </project>