A simple DropWizard-ish framework for building REST apps in Jersey/JAX-RS
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

121 linhas
4.2 KiB

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. (c) Copyright 2013-2014 Jonathan Cobb
  4. This code is available under the Apache License, version 2: http://www.apache.org/licenses/LICENSE-2.0.html
  5. -->
  6. <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">
  7. <modelVersion>4.0.0</modelVersion>
  8. <parent>
  9. <groupId>org.cobbzilla</groupId>
  10. <artifactId>cobbzilla-wizard</artifactId>
  11. <version>1.0.0-SNAPSHOT</version>
  12. </parent>
  13. <artifactId>wizard-common</artifactId>
  14. <version>1.0.0-SNAPSHOT</version>
  15. <dependencies>
  16. <!-- Validation -->
  17. <dependency>
  18. <groupId>javax.validation</groupId>
  19. <artifactId>validation-api</artifactId>
  20. <version>${javax.validation.version}</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.hibernate</groupId>
  24. <artifactId>hibernate-validator</artifactId>
  25. <version>${hibernate.validator.version}</version>
  26. </dependency>
  27. <!-- Spring -->
  28. <dependency>
  29. <groupId>org.springframework</groupId>
  30. <artifactId>spring-orm</artifactId>
  31. <version>${org.springframework.version}</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework</groupId>
  35. <artifactId>spring-aop</artifactId>
  36. <version>${org.springframework.version}</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.aspectj</groupId>
  40. <artifactId>aspectjrt</artifactId>
  41. <version>1.8.7</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.aspectj</groupId>
  45. <artifactId>aspectjweaver</artifactId>
  46. <version>1.8.7</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.springframework</groupId>
  50. <artifactId>spring-context</artifactId>
  51. <version>${org.springframework.version}</version>
  52. <exclusions>
  53. <exclusion>
  54. <groupId>commons-logging</groupId>
  55. <artifactId>commons-logging</artifactId>
  56. </exclusion>
  57. </exclusions>
  58. </dependency>
  59. <!-- For PSQLExceptionMapper and JSONBUserType -->
  60. <dependency>
  61. <groupId>${jdbcDriver.postgres.groupId}</groupId>
  62. <artifactId>${jdbcDriver.postgres.artifactId}</artifactId>
  63. <version>${jdbcDriver.postgres.version}</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.apache.httpcomponents</groupId>
  67. <artifactId>httpcore</artifactId>
  68. <version>${httpcore.version}</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.apache.httpcomponents</groupId>
  72. <artifactId>httpclient</artifactId>
  73. <version>${httpclient.version}</version>
  74. </dependency>
  75. <!-- transparent data encryption -->
  76. <dependency>
  77. <groupId>org.jasypt</groupId>
  78. <artifactId>jasypt</artifactId>
  79. <version>${jasypt.version}</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.jasypt</groupId>
  83. <artifactId>jasypt-hibernate4</artifactId>
  84. <version>${jasypt.version}</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>javax.xml.bind</groupId>
  88. <artifactId>jaxb-api</artifactId>
  89. <version>2.3.0</version>
  90. </dependency>
  91. <!-- API docs -->
  92. <dependency>
  93. <groupId>io.swagger.core.v3</groupId>
  94. <artifactId>swagger-jaxrs2</artifactId>
  95. <version>${swagger.version}</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>io.swagger.core.v3</groupId>
  99. <artifactId>swagger-integration</artifactId>
  100. <version>${swagger.version}</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>io.swagger.core.v3</groupId>
  104. <artifactId>swagger-annotations</artifactId>
  105. <version>${swagger.version}</version>
  106. </dependency>
  107. </dependencies>
  108. </project>