pom.xml 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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.vm</groupId>
  6. <artifactId>voter-material</artifactId>
  7. <version>2.1.7</version>
  8. </parent>
  9. <groupId>com.scytl.products.ov.channel.vm.services</groupId>
  10. <artifactId>voter-material-services</artifactId>
  11. <packaging>jar</packaging>
  12. <name>Online Voting - Voter Material - Services</name>
  13. <dependencies>
  14. <!-- JPA Service provider -->
  15. <dependency>
  16. <groupId>org.hibernate</groupId>
  17. <artifactId>hibernate-entitymanager</artifactId>
  18. </dependency>
  19. <!-- Local dependencies -->
  20. <!-- OV Commons -->
  21. <dependency>
  22. <groupId>com.scytl.products.ov.channel.commons</groupId>
  23. <artifactId>ov-commons-logging</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.scytl.products.ov.channel.commons.lib</groupId>
  27. <artifactId>ov-commons-lib-persistence</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.scytl.products.ov.channel.commons</groupId>
  31. <artifactId>ov-commons-beans</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.scytl.products.ov.channel.commons</groupId>
  35. <artifactId>ov-commons-infrastructure</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>de.akquinet.jbosscc</groupId>
  39. <artifactId>jbosscc-needle</artifactId>
  40. <version>2.1</version>
  41. <scope>test</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.hsqldb</groupId>
  45. <artifactId>hsqldb</artifactId>
  46. <version>2.3.4</version>
  47. <scope>test</scope>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.apache.geronimo.specs</groupId>
  51. <artifactId>geronimo-osgi-locator</artifactId>
  52. <version>1.1</version>
  53. <scope>test</scope>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.easymock</groupId>
  57. <artifactId>easymock</artifactId>
  58. <version>3.4</version>
  59. <scope>test</scope>
  60. </dependency>
  61. </dependencies>
  62. <profiles>
  63. <profile>
  64. <id>skipTestRun</id>
  65. <activation>
  66. <property>
  67. <name>skipTests</name>
  68. <value>!true</value>
  69. </property>
  70. </activation>
  71. <dependencies>
  72. <dependency>
  73. <groupId>com.scytl.products.ov.channel.commons.lib</groupId>
  74. <artifactId>ov-commons-lib-persistence</artifactId>
  75. <version>${project.version}</version>
  76. <type>test-jar</type>
  77. <scope>test</scope>
  78. </dependency>
  79. </dependencies>
  80. </profile>
  81. </profiles>
  82. </project>