pom.xml 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  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.ea</groupId>
  6. <artifactId>extended-authentication</artifactId>
  7. <version>2.1.7</version>
  8. </parent>
  9. <groupId>com.scytl.products.ov.channel.ea.services</groupId>
  10. <artifactId>extended-authentication-services</artifactId>
  11. <packaging>jar</packaging>
  12. <name>Online Voting - Extended Authentication - Services</name>
  13. <properties>
  14. <system-rules.version>1.16.1</system-rules.version>
  15. </properties>
  16. <dependencies>
  17. <!-- Local dependencies -->
  18. <!-- OV Commons -->
  19. <dependency>
  20. <groupId>com.scytl.products.ov.channel.commons</groupId>
  21. <artifactId>ov-commons-logging</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.scytl.products.ov.channel.commons.lib</groupId>
  25. <artifactId>ov-commons-lib</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.scytl.products.ov.channel.commons.lib</groupId>
  29. <artifactId>ov-commons-lib-persistence</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.scytl.products.ov.channel.commons</groupId>
  33. <artifactId>ov-commons-infrastructure</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>de.akquinet.jbosscc</groupId>
  41. <artifactId>jbosscc-needle</artifactId>
  42. <scope>test</scope>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.easymock</groupId>
  46. <artifactId>easymock</artifactId>
  47. <scope>test</scope>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.github.stefanbirkner</groupId>
  51. <artifactId>system-rules</artifactId>
  52. <version>${system-rules.version}</version>
  53. <scope>test</scope>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.jmockit</groupId>
  57. <artifactId>jmockit</artifactId>
  58. <version>${jmockit.version}</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.hsqldb</groupId>
  62. <artifactId>hsqldb</artifactId>
  63. <scope>test</scope>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.apache.geronimo.specs</groupId>
  67. <artifactId>geronimo-osgi-locator</artifactId>
  68. <scope>test</scope>
  69. </dependency>
  70. <!-- JPA Service provider -->
  71. <dependency>
  72. <groupId>org.hibernate</groupId>
  73. <artifactId>hibernate-entitymanager</artifactId>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.bouncycastle</groupId>
  77. <artifactId>bcprov-jdk15on</artifactId>
  78. <scope>provided</scope>
  79. </dependency>
  80. <dependency>
  81. <groupId>com.fasterxml.jackson.dataformat</groupId>
  82. <artifactId>jackson-dataformat-csv</artifactId>
  83. <version>${jackson.version}</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>commons-io</groupId>
  87. <artifactId>commons-io</artifactId>
  88. </dependency>
  89. </dependencies>
  90. <build>
  91. <plugins>
  92. <!-- Generates a jar with the junits that can be reused in other modules -->
  93. <plugin>
  94. <groupId>org.apache.maven.plugins</groupId>
  95. <artifactId>maven-jar-plugin</artifactId>
  96. <version>2.6</version>
  97. <executions>
  98. <execution>
  99. <goals>
  100. <goal>test-jar</goal>
  101. </goals>
  102. </execution>
  103. </executions>
  104. </plugin>
  105. </plugins>
  106. </build>
  107. <profiles>
  108. <profile>
  109. <id>skipTestRun</id>
  110. <activation>
  111. <property>
  112. <name>skipTests</name>
  113. <value>!true</value>
  114. </property>
  115. </activation>
  116. <dependencies>
  117. <dependency>
  118. <groupId>com.scytl.products.ov.channel.commons.lib</groupId>
  119. <artifactId>ov-commons-lib-persistence</artifactId>
  120. <type>test-jar</type>
  121. <scope>test</scope>
  122. </dependency>
  123. <dependency>
  124. <groupId>com.scytl.products.ov.channel.commons.lib</groupId>
  125. <artifactId>ov-commons-lib</artifactId>
  126. <version>${project.version}</version>
  127. <scope>test</scope>
  128. <type>test-jar</type>
  129. </dependency>
  130. </dependencies>
  131. </profile>
  132. </profiles>
  133. </project>