pom.xml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  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. <groupId>com.scytl.products.ov.channel.cc</groupId>
  5. <version>2.1.7</version>
  6. <artifactId>choice-codes-generation</artifactId>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <artifactId>choice-codes-generation-service</artifactId>
  10. <name>Online Voting - Choice Codes - Generation Phase - 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>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-actuator</artifactId>
  24. <exclusions>
  25. <exclusion>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-logging</artifactId>
  28. </exclusion>
  29. </exclusions>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.scytl.products.ov.channel.commons</groupId>
  33. <artifactId>ov-commons-dto</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.scytl.products.ov.channel.commons</groupId>
  37. <artifactId>ov-commons-sign</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.scytl.products.ov.channel.commons</groupId>
  41. <artifactId>ov-commons-messaging</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.scytl.products.oscore</groupId>
  45. <artifactId>logging-core</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>junit</groupId>
  49. <artifactId>junit</artifactId>
  50. <scope>test</scope>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.mockito</groupId>
  54. <artifactId>mockito-core</artifactId>
  55. <scope>test</scope>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.springframework</groupId>
  59. <artifactId>spring-test</artifactId>
  60. <scope>test</scope>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.bouncycastle</groupId>
  64. <artifactId>bcprov-jdk15on</artifactId>
  65. <scope>test</scope>
  66. </dependency>
  67. </dependencies>
  68. <build>
  69. <finalName>${project.artifactId}</finalName>
  70. <plugins>
  71. <plugin>
  72. <groupId>org.springframework.boot</groupId>
  73. <artifactId>spring-boot-maven-plugin</artifactId>
  74. <version>${spring-boot.version}</version>
  75. <configuration>
  76. <mainClass>com.scytl.products.ov.channel.cc.choicecodes.generation.Application</mainClass>
  77. </configuration>
  78. <executions>
  79. <execution>
  80. <goals>
  81. <goal>repackage</goal>
  82. </goals>
  83. </execution>
  84. </executions>
  85. </plugin>
  86. <!-- Generates a jar with the production classes that can be used in other modules for tests-->
  87. <plugin>
  88. <groupId>org.apache.maven.plugins</groupId>
  89. <artifactId>maven-jar-plugin</artifactId>
  90. <executions>
  91. <execution>
  92. <phase>package</phase>
  93. <goals>
  94. <goal>jar</goal>
  95. </goals>
  96. <configuration>
  97. <classifier>original</classifier>
  98. </configuration>
  99. </execution>
  100. </executions>
  101. </plugin>
  102. </plugins>
  103. </build>
  104. </project>