2
0

pom.xml 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  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. <parent>
  4. <artifactId>distributed-mixing</artifactId>
  5. <groupId>com.scytl.products.ov.channel.cc</groupId>
  6. <version>2.1.7</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <artifactId>distributed-mixing-service</artifactId>
  10. <name>Online Voting - Distributed Mixing - Service</name>
  11. <dependencies>
  12. <dependency>
  13. <groupId>com.scytl.products.ov.channel.cc</groupId>
  14. <artifactId>control-components-commons</artifactId>
  15. <version>${project.version}</version>
  16. </dependency>
  17. <dependency>
  18. <groupId>javax.transaction</groupId>
  19. <artifactId>javax.transaction-api</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.scytl.math</groupId>
  23. <artifactId>scytl-math</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-actuator</artifactId>
  28. <exclusions>
  29. <exclusion>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-logging</artifactId>
  32. </exclusion>
  33. </exclusions>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.scytl.products.ov.channel.commons</groupId>
  37. <artifactId>ov-commons-beans</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.scytl.products.ov.channel.commons</groupId>
  41. <artifactId>ov-commons-dto</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.scytl.products.ov.channel.commons</groupId>
  45. <artifactId>ov-commons-sign</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.scytl.products.ov.channel.commons</groupId>
  49. <artifactId>ov-commons-messaging</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.scytl.mixing</groupId>
  53. <artifactId>mixing-mixer</artifactId>
  54. <version>${mixing.version}</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.scytl.mixing</groupId>
  58. <artifactId>mixing-spring</artifactId>
  59. <version>${mixing.version}</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.scytl.mixing</groupId>
  63. <artifactId>mixing-engine</artifactId>
  64. <version>${mixing.version}</version>
  65. <exclusions>
  66. <!-- Mockito is wrongly exported by mixing-engine -->
  67. <!-- https://scm.scytl.net/stash/projects/COMP/repos/online-voting-mixing/pull-requests/47/ -->
  68. <exclusion>
  69. <artifactId>mockito-all</artifactId>
  70. <groupId>org.mockito</groupId>
  71. </exclusion>
  72. </exclusions>
  73. </dependency>
  74. <dependency>
  75. <groupId>com.scytl.mixing</groupId>
  76. <artifactId>mixing-commons</artifactId>
  77. <version>${mixing.version}</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>com.scytl.mixing</groupId>
  81. <artifactId>mixing-shuffler</artifactId>
  82. <version>${mixing.version}</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.springframework</groupId>
  86. <artifactId>spring-test</artifactId>
  87. <scope>test</scope>
  88. </dependency>
  89. <dependency>
  90. <groupId>junit</groupId>
  91. <artifactId>junit</artifactId>
  92. <scope>test</scope>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.mockito</groupId>
  96. <artifactId>mockito-core</artifactId>
  97. <scope>test</scope>
  98. </dependency>
  99. </dependencies>
  100. <build>
  101. <finalName>${project.artifactId}</finalName>
  102. <plugins>
  103. <plugin>
  104. <groupId>org.springframework.boot</groupId>
  105. <artifactId>spring-boot-maven-plugin</artifactId>
  106. <version>${spring-boot.version}</version>
  107. <configuration>
  108. <mainClass>com.scytl.products.ov.channel.cc.mixing.Application</mainClass>
  109. </configuration>
  110. <executions>
  111. <execution>
  112. <goals>
  113. <goal>repackage</goal>
  114. </goals>
  115. </execution>
  116. </executions>
  117. </plugin>
  118. </plugins>
  119. </build>
  120. <profiles>
  121. <profile>
  122. <id>skipTestRun</id>
  123. <activation>
  124. <property>
  125. <name>skipTests</name>
  126. <value>!true</value>
  127. </property>
  128. </activation>
  129. <dependencies>
  130. <dependency>
  131. <groupId>com.scytl.products.ov.channel.commons</groupId>
  132. <artifactId>ov-commons-sign</artifactId>
  133. <type>test-jar</type>
  134. <scope>test</scope>
  135. <version>${project.version}</version>
  136. </dependency>
  137. </dependencies>
  138. </profile>
  139. </profiles>
  140. </project>