pom.xml 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <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">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>com.scytl.products.ov.sdm</groupId>
  6. <artifactId>ov-secure-data-manager-backend</artifactId>
  7. <version>2.1.6</version>
  8. </parent>
  9. <artifactId>ov-secure-data-manager-backend-assembly</artifactId>
  10. <packaging>pom</packaging>
  11. <name>Secure Data Manager - Backend - Assembly</name>
  12. <description>OV Secure Data Manager Backend Assembly</description>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.scytl.products.ov.sdm</groupId>
  16. <artifactId>sdm-db-utils</artifactId>
  17. <version>${project.version}</version>
  18. <type>pom</type>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.scytl.products.ov.sdm.ui</groupId>
  22. <artifactId>sdm-ws-rest</artifactId>
  23. <version>${project.version}</version>
  24. <type>pom</type>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.scytl.products.ov.sdm.ui</groupId>
  28. <artifactId>sdm-ws-rest</artifactId>
  29. <version>${project.version}</version>
  30. <type>jar</type>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.scytl.products.ov.sdm.services</groupId>
  34. <artifactId>secure-data-manager-services</artifactId>
  35. <version>${project.version}</version>
  36. </dependency>
  37. </dependencies>
  38. <build>
  39. <plugins>
  40. <plugin>
  41. <artifactId>maven-assembly-plugin</artifactId>
  42. <configuration>
  43. <descriptor>package.xml</descriptor>
  44. <appendAssemblyId>false</appendAssemblyId>
  45. <finalName>ov-secure-data-manager-backend-assembly-${project.version}</finalName>
  46. </configuration>
  47. <executions>
  48. <execution>
  49. <id>create-archive</id>
  50. <phase>package</phase>
  51. <goals>
  52. <goal>single</goal>
  53. </goals>
  54. </execution>
  55. </executions>
  56. <dependencies>
  57. <dependency>
  58. <groupId>com.scytl.products.ov.sdm</groupId>
  59. <artifactId>sdm-db-utils</artifactId>
  60. <version>${project.version}</version>
  61. <type>zip</type>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.scytl.products.ov.sdm.ui</groupId>
  65. <artifactId>sdm-ws-rest</artifactId>
  66. <version>${project.version}</version>
  67. <type>zip</type>
  68. </dependency>
  69. </dependencies>
  70. </plugin>
  71. </plugins>
  72. </build>
  73. </project>