entaxy-public/platform/runtime/modules/uniform-service/pom.xml

66 lines
2.9 KiB
XML
Raw Normal View History

2024-10-07 18:42:55 +03:00
<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">
2021-09-06 17:46:59 +03:00
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>ru.entaxy.esb.platform.runtime</groupId>
<artifactId>modules</artifactId>
2024-10-07 18:42:55 +03:00
<version>1.10.0</version>
2021-09-06 17:46:59 +03:00
</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>
2024-10-07 18:42:55 +03:00
<module>service</module>
2021-09-06 17:46:59 +03:00
</modules>
<profiles>
2024-10-07 18:42:55 +03:00
<profile>
<id>attach-uniform-passive-service-resources</id>
2022-02-28 15:20:38 +03:00
<activation>
<file>
2024-10-07 18:42:55 +03:00
<exists>src/main/resources/etc/init</exists>
2022-02-28 15:20:38 +03:00
</file>
</activation>
2021-09-06 17:46:59 +03:00
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
2024-10-07 18:42:55 +03:00
<id>attach-uniform-passive-service-resources</id>
2021-09-06 17:46:59 +03:00
<phase>package</phase>
<goals>
<goal>attach-artifact</goal>
</goals>
<configuration>
<artifacts>
<artifact>
2024-10-07 18:42:55 +03:00
<file>
${project.build.outputDirectory}/etc/init/artifacts/shared/uniform-passive-service-blueprint.xml
</file>
2021-09-06 17:46:59 +03:00
<type>xml</type>
2024-10-07 18:42:55 +03:00
<classifier>uniform.service</classifier>
2021-09-06 17:46:59 +03:00
</artifact>
2024-10-07 18:42:55 +03:00
2021-09-06 17:46:59 +03:00
<artifact>
2024-10-07 18:42:55 +03:00
<file>${project.build.outputDirectory}/etc/init/install/uniform-service.properties</file>
<type>properties</type>
<classifier>uniform-service</classifier>
2021-09-06 17:46:59 +03:00
</artifact>
</artifacts>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
2023-08-11 03:05:45 +03:00
</project>