117 lines
4.6 KiB
XML
117 lines
4.6 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.0</version>
|
|
<relativePath>../pom.xml</relativePath>
|
|
</parent>
|
|
|
|
<groupId>ru.entaxy.esb.system.management.connector.manager</groupId>
|
|
<artifactId>connector-manager</artifactId>
|
|
<packaging>bundle</packaging>
|
|
|
|
<name>SYSTEM :: ENTAXY :: SYSTEM :: MANAGEMENT :: CONNECTOR :: MANAGER</name>
|
|
<description>SYSTEM :: ENTAXY :: SYSTEM :: MANAGEMENT :: CONNECTOR :: MANAGER</description>
|
|
|
|
<properties>
|
|
<bundle.osgi.export.pkg>
|
|
ru.entaxy.esb.system.management.connector.manager.*
|
|
</bundle.osgi.export.pkg>
|
|
<bundle.osgi.import.pkg>
|
|
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.core.template,
|
|
ru.entaxy.esb.system.jpa,
|
|
ru.entaxy.esb.system.profile.commons,
|
|
ru.entaxy.esb.system.profile.commons.connectors,
|
|
ru.entaxy.esb.system.core.dispatcher,
|
|
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>
|
|
</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.core</groupId>
|
|
<artifactId>template</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ru.entaxy.esb.system.registry.connector</groupId>
|
|
<artifactId>connector-api</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>
|
|
</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.registry.connector</groupId>
|
|
<artifactId>connector-impl</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-context</artifactId>
|
|
</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> |