53 lines
1.8 KiB
XML
53 lines
1.8 KiB
XML
<?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>
|
|
<artifactId>spring-remoting-modules</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<name>spring-remoting-modules</name>
|
|
<packaging>pom</packaging>
|
|
<description>Parent for all projects related to Spring Remoting, except remoting-hessian-burlap</description>
|
|
<!-- remoting-hessian-burlap needs to stick to spring-boot-1, -->
|
|
<!-- some classes were removed in spring 5 -->
|
|
<!-- Upgrade to Boot 3 not possible as since Spring 6 the remoting modules has been removed
|
|
from Spring completely. -->
|
|
|
|
<parent>
|
|
<groupId>com.baeldung</groupId>
|
|
<artifactId>parent-boot-2</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
<relativePath>../parent-boot-2</relativePath>
|
|
</parent>
|
|
|
|
<modules>
|
|
<!-- <module>remoting-hessian-burlap</module>-->
|
|
<module>remoting-http</module>
|
|
<module>remoting-amqp</module>
|
|
<module>remoting-jms</module>
|
|
<module>remoting-rmi</module>
|
|
</modules>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<!-- companion modules -->
|
|
<dependency>
|
|
<groupId>${project.groupId}</groupId>
|
|
<artifactId>api</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<properties>
|
|
</properties>
|
|
|
|
</project> |