12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <?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/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>com.scytl.products.ov.sdm</groupId>
- <artifactId>ov-secure-data-manager-backend</artifactId>
- <version>2.1.6</version>
- </parent>
- <artifactId>ov-secure-data-manager-backend-assembly</artifactId>
- <packaging>pom</packaging>
- <name>Secure Data Manager - Backend - Assembly</name>
- <description>OV Secure Data Manager Backend Assembly</description>
-
- <dependencies>
-
- <dependency>
- <groupId>com.scytl.products.ov.sdm</groupId>
- <artifactId>sdm-db-utils</artifactId>
- <version>${project.version}</version>
- <type>pom</type>
- </dependency>
-
- <dependency>
- <groupId>com.scytl.products.ov.sdm.ui</groupId>
- <artifactId>sdm-ws-rest</artifactId>
- <version>${project.version}</version>
- <type>pom</type>
- </dependency>
-
- <dependency>
- <groupId>com.scytl.products.ov.sdm.ui</groupId>
- <artifactId>sdm-ws-rest</artifactId>
- <version>${project.version}</version>
- <type>jar</type>
- </dependency>
-
- <dependency>
- <groupId>com.scytl.products.ov.sdm.services</groupId>
- <artifactId>secure-data-manager-services</artifactId>
- <version>${project.version}</version>
- </dependency>
- </dependencies>
-
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-assembly-plugin</artifactId>
- <configuration>
- <descriptor>package.xml</descriptor>
- <appendAssemblyId>false</appendAssemblyId>
- <finalName>ov-secure-data-manager-backend-assembly-${project.version}</finalName>
- </configuration>
- <executions>
- <execution>
- <id>create-archive</id>
- <phase>package</phase>
- <goals>
- <goal>single</goal>
- </goals>
- </execution>
- </executions>
- <dependencies>
- <dependency>
- <groupId>com.scytl.products.ov.sdm</groupId>
- <artifactId>sdm-db-utils</artifactId>
- <version>${project.version}</version>
- <type>zip</type>
- </dependency>
- <dependency>
- <groupId>com.scytl.products.ov.sdm.ui</groupId>
- <artifactId>sdm-ws-rest</artifactId>
- <version>${project.version}</version>
- <type>zip</type>
- </dependency>
- </dependencies>
- </plugin>
- </plugins>
- </build>
- </project>
-
|