122 lines
4.9 KiB
XML
122 lines
4.9 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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>ru.entaxy.esb.system</groupId>
|
|
<artifactId>management</artifactId>
|
|
<version>1.8.3</version>
|
|
<relativePath>../pom.xml</relativePath>
|
|
</parent>
|
|
|
|
<groupId>ru.entaxy.esb.system.management.profile.manager</groupId>
|
|
<artifactId>profile-manager</artifactId>
|
|
<packaging>bundle</packaging>
|
|
|
|
<name>SYSTEM :: ENTAXY :: SYSTEM :: MANAGEMENT :: PROFILE :: MANAGER</name>
|
|
<description>SYSTEM :: ENTAXY :: SYSTEM :: MANAGEMENT :: PROFILE :: MANAGER</description>
|
|
|
|
<properties>
|
|
<bundle.osgi.export.pkg>
|
|
ru.entaxy.esb.system.management.profile.manager.*
|
|
</bundle.osgi.export.pkg>
|
|
<bundle.osgi.import.pkg>
|
|
!com.sun.org.apache.xml.internal.dtm.ref,
|
|
!org.mapstruct.*,
|
|
org.springframework.beans.factory.annotation,
|
|
ru.entaxy.esb.system.management.bundle.jpa,
|
|
ru.entaxy.esb.system.management.bundle.jpa.entity,
|
|
ru.entaxy.esb.system.management.bundle.jpa.dto,
|
|
ru.entaxy.esb.system.jpa,
|
|
ru.entaxy.esb.system.profile.commons,
|
|
ru.entaxy.esb.system.profile.commons.connectors,
|
|
ru.entaxy.esb.system.core.dispatcher,
|
|
ru.entaxy.esb.system.management.route.manager.*,
|
|
org.apache.commons.logging,
|
|
org.osgi.service.blueprint;version="[1.0.0,2.0.0)",
|
|
*
|
|
</bundle.osgi.import.pkg>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>javax.interceptor</groupId>
|
|
<artifactId>javax.interceptor-api</artifactId>
|
|
<version>${javax.interceptor.version}</version>
|
|
</dependency>
|
|
<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.registry.profile.commons</groupId>
|
|
<artifactId>profile-commons</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ru.entaxy.esb.system.management.bundle.jpa</groupId>
|
|
<artifactId>bundle-service</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.mapstruct</groupId>
|
|
<artifactId>mapstruct</artifactId>
|
|
<version>${mapstruct.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.mapstruct</groupId>
|
|
<artifactId>mapstruct-processor</artifactId>
|
|
<version>${mapstruct.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ru.entaxy.esb.system.management.bundle.manager</groupId>
|
|
<artifactId>bundle-manager</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ru.entaxy.esb.system.management.bridge.profile.manager</groupId>
|
|
<artifactId>bridge-profile-manager</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ru.entaxy.esb.system.management.connector.manager</groupId>
|
|
<artifactId>connector-manager</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ru.entaxy.esb.system.management.permission.manager</groupId>
|
|
<artifactId>permission-manager</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ru.entaxy.esb.system.management.route.manager</groupId>
|
|
<artifactId>route-manager</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.5.1</version>
|
|
<configuration>
|
|
<source>1.8</source>
|
|
<target>1.8</target>
|
|
<annotationProcessorPaths>
|
|
<path>
|
|
<groupId>org.mapstruct</groupId>
|
|
<artifactId>mapstruct-processor</artifactId>
|
|
<version>${mapstruct.version}</version>
|
|
</path>
|
|
</annotationProcessorPaths>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project> |