2023-08-03 04:45:45 +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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>ru.entaxy.esb.platform.runtime.base</groupId>
|
|
|
|
<artifactId>resources</artifactId>
|
2023-08-11 03:05:45 +03:00
|
|
|
<version>1.9.0</version>
|
2023-08-03 04:45:45 +03:00
|
|
|
</parent>
|
|
|
|
<groupId>ru.entaxy.esb.platform.runtime.base.resources</groupId>
|
|
|
|
<artifactId>resources-service</artifactId>
|
|
|
|
<packaging>bundle</packaging>
|
|
|
|
<name>ENTAXY :: PLATFORM :: BASE :: RESOURCES :: SERVICE</name>
|
|
|
|
<description>ENTAXY :: PLATFORM :: BASE :: RESOURCES :: SERVICE</description>
|
|
|
|
|
|
|
|
<properties>
|
2023-08-11 03:05:45 +03:00
|
|
|
<bundle.osgi.export.pkg>
|
|
|
|
ru.entaxy.esb.resources.provider,
|
|
|
|
ru.entaxy.esb.resources.impl
|
|
|
|
</bundle.osgi.export.pkg>
|
2023-08-03 04:45:45 +03:00
|
|
|
<bundle.osgi.private.pkg>
|
2023-08-11 03:05:45 +03:00
|
|
|
ru.entaxy.esb.resources.impl.service,
|
|
|
|
ru.entaxy.esb.resources.tracker,
|
|
|
|
ru.entaxy.esb.resources.shell,
|
|
|
|
ru.entaxy.esb.resources.support
|
2023-08-03 04:45:45 +03:00
|
|
|
</bundle.osgi.private.pkg>
|
2023-08-11 03:05:45 +03:00
|
|
|
<bundle.osgi.remove.headers>none</bundle.osgi.remove.headers>
|
2023-08-03 04:45:45 +03:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.osgi</groupId>
|
|
|
|
<artifactId>org.osgi.service.component.annotations</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.felix</groupId>
|
|
|
|
<artifactId>org.apache.felix.scr</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
<version>${commons-io.version}</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.resources</groupId>
|
|
|
|
<artifactId>resources-api</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2023-08-11 03:05:45 +03:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.karaf.shell</groupId>
|
|
|
|
<artifactId>org.apache.karaf.shell.core</artifactId>
|
|
|
|
<version>${karaf.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
<version>${commons-io.version}</version>
|
|
|
|
</dependency>
|
2023-08-03 04:45:45 +03:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
2023-08-11 03:05:45 +03:00
|
|
|
</project>
|