entaxy-public/platform/runtime/core/management/pom.xml

67 lines
2.2 KiB
XML
Raw Normal View History

2021-09-06 17:46:59 +03:00
<?xml version="1.0" encoding="UTF-8"?>
2023-08-03 04:44:09 +03:00
<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">
2021-09-06 17:46:59 +03:00
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>ru.entaxy.esb.platform.runtime</groupId>
<artifactId>core</artifactId>
2024-10-07 18:42:55 +03:00
<version>1.10.0</version>
2021-09-06 17:46:59 +03:00
</parent>
<groupId>ru.entaxy.esb.platform.runtime.core</groupId>
<artifactId>management</artifactId>
<packaging>pom</packaging>
<name>ENTAXY :: PLATFORM :: RUNTIME :: CORE :: MANAGEMENT</name>
<description>ENTAXY :: PLATFORM :: RUNTIME :: CORE :: MANAGEMENT</description>
2024-10-07 18:42:55 +03:00
<dependencies>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.service.component.annotations</artifactId>
<version>1.4.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.scr</artifactId>
<version>2.1.20</version>
</dependency>
<dependency>
<groupId>
ru.entaxy.esb.platform.runtime.base
</groupId>
<artifactId>base-support</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>ru.entaxy.esb.platform.runtime.base</groupId>
<artifactId>management-core</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
2021-09-06 17:46:59 +03:00
<modules>
2022-02-28 15:20:38 +03:00
<module>connection-management</module>
2024-10-07 18:42:55 +03:00
<!-- @MOVED root/platform-backward-compat-->
<!--
2022-02-28 15:20:38 +03:00
<module>blueprint-generator-service</module>
2024-10-07 18:42:55 +03:00
-->
2022-02-28 15:20:38 +03:00
<module>profile-management</module>
2023-08-11 03:05:45 +03:00
<module>connector-management</module>
2022-02-28 15:20:38 +03:00
<module>node-management</module>
<module>cluster-node-management</module>
2024-10-07 18:42:55 +03:00
<!-- @MOVED root/platform-backward-compat-->
<!--
2022-02-28 15:20:38 +03:00
<module>profile-management-service-adapters</module>
2024-10-07 18:42:55 +03:00
-->
2023-08-11 03:05:45 +03:00
<module>service-management</module>
2024-10-07 18:42:55 +03:00
<module>object-management</module>
<module>repository-management</module>
<module>config-management</module>
<module>route-management</module>
2021-09-06 17:46:59 +03:00
</modules>
2023-08-11 03:05:45 +03:00
</project>