47 lines
1.7 KiB
XML
47 lines
1.7 KiB
XML
<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</groupId>
|
|
<artifactId>base</artifactId>
|
|
<version>1.10.0</version>
|
|
</parent>
|
|
<groupId>ru.entaxy.esb.platform.runtime.base</groupId>
|
|
<artifactId>base-extensions-support</artifactId>
|
|
<packaging>bundle</packaging>
|
|
<name>ENTAXY :: PLATFORM :: BASE :: EXTENSIONS SUPPORT</name>
|
|
<description>ENTAXY :: PLATFORM :: BASE :: EXTENSIONS SUPPORT</description>
|
|
|
|
<properties>
|
|
<bundle.osgi.export.pkg>
|
|
ru.entaxy.esb.platform.runtime.base.extensions.api
|
|
</bundle.osgi.export.pkg>
|
|
<bundle.osgi.private.pkg>
|
|
ru.entaxy.esb.platform.runtime.base.extensions.impl,
|
|
ru.entaxy.esb.platform.runtime.base.extensions.shell
|
|
</bundle.osgi.private.pkg>
|
|
<bundle.osgi.remove.headers>none</bundle.osgi.remove.headers>
|
|
</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>ru.entaxy.esb.platform.runtime.base</groupId>
|
|
<artifactId>base-support</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.karaf.shell</groupId>
|
|
<artifactId>org.apache.karaf.shell.core</artifactId>
|
|
<version>${karaf.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project>
|