pom.xml 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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</groupId>
  6. <artifactId>tallying</artifactId>
  7. <version>2.1.6</version>
  8. </parent>
  9. <artifactId>ov-tallying-assembly</artifactId>
  10. <packaging>pom</packaging>
  11. <name>Secure Data Manager - Tallying - Assembly</name>
  12. <description>OV Tallying Assembly</description>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.scytl.products.ov</groupId>
  16. <artifactId>tallying-webapp</artifactId>
  17. <type>war</type>
  18. <version>${project.version}</version>
  19. </dependency>
  20. </dependencies>
  21. <build>
  22. <plugins>
  23. <plugin>
  24. <artifactId>maven-assembly-plugin</artifactId>
  25. <configuration>
  26. <descriptor>package.xml</descriptor>
  27. <appendAssemblyId>false</appendAssemblyId>
  28. <finalName>ov-tallying-assembly-${project.version}</finalName>
  29. </configuration>
  30. <executions>
  31. <execution>
  32. <id>create-archive</id>
  33. <phase>package</phase>
  34. <goals>
  35. <goal>single</goal>
  36. </goals>
  37. </execution>
  38. </executions>
  39. </plugin>
  40. </plugins>
  41. </build>
  42. </project>