75 lines
2.5 KiB
XML
75 lines
2.5 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/maven-v4_0_0.xsd">
|
||
|
|
||
|
<parent>
|
||
|
<groupId>ru.entaxy.esb.system.core.permission</groupId>
|
||
|
<artifactId>permission</artifactId>
|
||
|
<version>1.8.0</version>
|
||
|
<relativePath>../../security/pom.xml</relativePath>
|
||
|
</parent>
|
||
|
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
||
|
<artifactId>permission-component</artifactId>
|
||
|
<packaging>bundle</packaging>
|
||
|
|
||
|
<name>SYSTEM :: ENTAXY :: CORE :: PERMISSION :: COMPONENT</name>
|
||
|
<description>SYSTEM :: ENTAXY :: CORE :: PERMISSION :: COMPONENT</description>
|
||
|
|
||
|
<properties>
|
||
|
<bundle.osgi.export.service>org.apache.camel.spi.ComponentResolver;component=permission
|
||
|
</bundle.osgi.export.service>
|
||
|
<bundle.osgi.import.pkg>
|
||
|
ru.entaxy.esb.system.common.osgi,
|
||
|
ru.entaxy.esb.system.common.osgi.impl,
|
||
|
javax.persistence;version="[2,3)",
|
||
|
*
|
||
|
</bundle.osgi.import.pkg>
|
||
|
</properties>
|
||
|
|
||
|
<dependencies>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>ru.entaxy.esb.system.registry.systems</groupId>
|
||
|
<artifactId>system-api</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
<scope>compile</scope>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>ru.entaxy.esb.system.commons</groupId>
|
||
|
<artifactId>system-commons</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>ru.entaxy.esb.system.core.permission</groupId>
|
||
|
<artifactId>permission-api</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>ru.entaxy.esb.system.core.permission</groupId>
|
||
|
<artifactId>permission-common</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
|
||
|
|
||
|
<!-- testing -->
|
||
|
<dependency>
|
||
|
<groupId>org.apache.camel</groupId>
|
||
|
<artifactId>camel-test</artifactId>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.camel</groupId>
|
||
|
<artifactId>camel-core</artifactId>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
</project>
|