123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>se.citerus.dddsample.external</groupId>
  5. <artifactId>reporting</artifactId>
  6. <parent>
  7. <groupId>se.citerus.dddsample</groupId>
  8. <artifactId>external</artifactId>
  9. <version>1.2-SNAPSHOT</version>
  10. </parent>
  11. <packaging>war</packaging>
  12. <name>External: Reporting context</name>
  13. <version>${project.parent.version}</version>
  14. <description>Reporting context</description>
  15. <dependencies>
  16. <dependency>
  17. <groupId>se.citerus.dddsample.external</groupId>
  18. <artifactId>reporting-api</artifactId>
  19. <version>1.2-SNAPSHOT</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.springframework</groupId>
  23. <artifactId>spring</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework</groupId>
  27. <artifactId>spring-test</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>commons-dbcp</groupId>
  31. <artifactId>commons-dbcp</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.apache.activemq</groupId>
  35. <artifactId>activemq-core</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.apache.cxf</groupId>
  39. <artifactId>cxf-rt-transports-http</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.apache.cxf</groupId>
  43. <artifactId>cxf-rt-transports-http-jetty</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.apache.cxf</groupId>
  47. <artifactId>cxf-rt-frontend-jaxrs</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>javax.ws.rs</groupId>
  51. <artifactId>jsr311-api</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>hsqldb</groupId>
  55. <artifactId>hsqldb</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>cglib</groupId>
  59. <artifactId>cglib-nodep</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.lowagie</groupId>
  63. <artifactId>itext</artifactId>
  64. </dependency>
  65. </dependencies>
  66. <build>
  67. <plugins>
  68. <plugin>
  69. <groupId>org.mortbay.jetty</groupId>
  70. <artifactId>maven-jetty-plugin</artifactId>
  71. </plugin>
  72. </plugins>
  73. </build>
  74. </project>