pom.xml 2.9 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.channel.au</groupId>
  6. <artifactId>authentication</artifactId>
  7. <version>2.1.7</version>
  8. </parent>
  9. <groupId>com.scytl.products.ov.channel.au.services</groupId>
  10. <artifactId>authentication-services</artifactId>
  11. <packaging>jar</packaging>
  12. <name>Online Voting - Authentication - Services</name>
  13. <dependencies>
  14. <!-- Local dependencies -->
  15. <!-- OV Commons -->
  16. <dependency>
  17. <groupId>com.scytl.products.ov.channel.commons</groupId>
  18. <artifactId>ov-commons-logging</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.scytl.products.ov.channel.commons</groupId>
  22. <artifactId>ov-commons-beans</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.scytl.products.ov.channel.commons</groupId>
  26. <artifactId>ov-commons-infrastructure</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.scytl.products.ov.channel.commons.lib</groupId>
  30. <artifactId>ov-commons-lib-persistence</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.scytl.products.ov.channel.commons.lib</groupId>
  34. <artifactId>ov-commons-lib</artifactId>
  35. </dependency>
  36. <!-- JPA Service provider -->
  37. <dependency>
  38. <groupId>org.hibernate</groupId>
  39. <artifactId>hibernate-entitymanager</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.hibernate</groupId>
  43. <artifactId>hibernate-validator</artifactId>
  44. <scope>test</scope>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.apache.commons</groupId>
  48. <artifactId>commons-lang3</artifactId>
  49. </dependency>
  50. </dependencies>
  51. <profiles>
  52. <profile>
  53. <id>skipTestRun</id>
  54. <activation>
  55. <property>
  56. <name>skipTests</name>
  57. <value>!true</value>
  58. </property>
  59. </activation>
  60. <dependencies>
  61. <dependency>
  62. <groupId>com.scytl.products.ov.channel.commons.lib</groupId>
  63. <artifactId>ov-commons-lib-persistence</artifactId>
  64. <type>test-jar</type>
  65. <scope>test</scope>
  66. </dependency>
  67. <dependency>
  68. <groupId>com.scytl.products.ov.channel.commons.lib</groupId>
  69. <artifactId>ov-commons-lib</artifactId>
  70. <scope>test</scope>
  71. <type>test-jar</type>
  72. </dependency>
  73. </dependencies>
  74. </profile>
  75. </profiles>
  76. </project>