66 lines
2.9 KiB
XML
66 lines
2.9 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>modules</artifactId>
|
|
<version>1.10.0</version>
|
|
</parent>
|
|
<groupId>ru.entaxy.esb.platform.runtime.modules</groupId>
|
|
<artifactId>uniform-service</artifactId>
|
|
<packaging>pom</packaging>
|
|
<name>ENTAXY :: PLATFORM :: RUNTIME :: MODULES :: UNIFORM :: SERVICE</name>
|
|
<description>ENTAXY :: PLATFORM :: RUNTIME :: MODULES :: UNIFORM :: SERVICE</description>
|
|
<modules>
|
|
<module>connector</module>
|
|
<module>support</module>
|
|
<module>service</module>
|
|
</modules>
|
|
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>attach-uniform-passive-service-resources</id>
|
|
<activation>
|
|
<file>
|
|
<exists>src/main/resources/etc/init</exists>
|
|
</file>
|
|
</activation>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>build-helper-maven-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>attach-uniform-passive-service-resources</id>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>attach-artifact</goal>
|
|
</goals>
|
|
<configuration>
|
|
<artifacts>
|
|
<artifact>
|
|
<file>
|
|
${project.build.outputDirectory}/etc/init/artifacts/shared/uniform-passive-service-blueprint.xml
|
|
</file>
|
|
<type>xml</type>
|
|
<classifier>uniform.service</classifier>
|
|
</artifact>
|
|
|
|
<artifact>
|
|
<file>${project.build.outputDirectory}/etc/init/install/uniform-service.properties</file>
|
|
<type>properties</type>
|
|
<classifier>uniform-service</classifier>
|
|
</artifact>
|
|
</artifacts>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</profile>
|
|
</profiles>
|
|
</project>
|