/
NikolayIvkin
/
tutorials1
Обзор
Документация
Войти
/
NikolayIvkin
/
tutorials1
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
spring-remoting-modules/pom.xml
54 строки
2 KB
vunamtien
JAVA-37857-Fix-formatting-of-POMs (#17276)
15 авг 2024, 16:02
Не верифицирован
15 авг 2024, 16:02
e7c2498
Код
Авторство
О чём код?
<?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> <packaging>pom</packaging> <name>spring-remoting-modules</name> <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> cannot upgrade logback due to usage of old spring boot 1 version--> <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>