47 lines
1.6 KiB
XML
47 lines
1.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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>ru.entaxy.platform.security</groupId>
|
|
<artifactId>jaas</artifactId>
|
|
<version>1.10.0</version>
|
|
</parent>
|
|
<groupId>ru.entaxy.platform.security.jaas</groupId>
|
|
<artifactId>jaas-producing</artifactId>
|
|
<packaging>bundle</packaging>
|
|
|
|
<properties>
|
|
<bundle.osgi.private.pkg>ru.entaxy.platform.base.security.jaas.producing</bundle.osgi.private.pkg>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>ru.entaxy.esb.platform.runtime.core.object-producing</groupId>
|
|
<artifactId>object-producer-api</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ru.entaxy.esb.platform.runtime.core.object-producing</groupId>
|
|
<artifactId>object-producer-core</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.felix</groupId>
|
|
<artifactId>maven-bundle-plugin</artifactId>
|
|
<extensions>true</extensions>
|
|
<configuration>
|
|
<instructions>
|
|
<Entaxy-Factory-Provider>true</Entaxy-Factory-Provider>
|
|
<Entaxy-Template-Provider>true</Entaxy-Template-Provider>
|
|
<Entaxy-Extensions-Provider>true</Entaxy-Extensions-Provider>
|
|
</instructions>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|