pom.xml 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.yihu.hos</groupId>
  8. <artifactId>hos-parent</artifactId>
  9. <version>1.3.0</version>
  10. <relativePath>../hos-parent</relativePath>
  11. </parent>
  12. <artifactId>hos-web-framework</artifactId>
  13. <version>1.3.0</version>
  14. <dependencies>
  15. <dependency>
  16. <groupId>eu.medsea.mimeutil</groupId>
  17. <artifactId>mime-util</artifactId>
  18. <version>2.1.3</version>
  19. <exclusions>
  20. <exclusion>
  21. <groupId>org.slf4j</groupId>
  22. <artifactId>slf4j-log4j12</artifactId>
  23. </exclusion>
  24. </exclusions>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-starter-web</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-starter-data-mongodb</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.mongodb</groupId>
  36. <artifactId>mongo-java-driver</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>mysql</groupId>
  40. <artifactId>mysql-connector-java</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.yihu.hos</groupId>
  44. <artifactId>hos-core</artifactId>
  45. <version>1.3.0</version>
  46. </dependency>
  47. <!-- swagger start -->
  48. <dependency>
  49. <groupId>io.springfox</groupId>
  50. <artifactId>springfox-swagger2</artifactId>
  51. <version>2.4.0</version>
  52. <exclusions>
  53. <exclusion>
  54. <artifactId>classmate</artifactId>
  55. <groupId>com.fasterxml</groupId>
  56. </exclusion>
  57. </exclusions>
  58. </dependency>
  59. <dependency>
  60. <groupId>io.springfox</groupId>
  61. <artifactId>springfox-swagger-ui</artifactId>
  62. <version>2.4.0</version>
  63. </dependency>
  64. <!-- swagger end -->
  65. <!-- test start -->
  66. <dependency>
  67. <groupId>org.springframework.boot</groupId>
  68. <artifactId>spring-boot-starter-test</artifactId>
  69. <scope>test</scope>
  70. </dependency>
  71. <!-- test end -->
  72. <dependency>
  73. <groupId>javax.transaction</groupId>
  74. <artifactId>javax.transaction-api</artifactId>
  75. <version>1.2</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.springframework.boot</groupId>
  79. <artifactId>spring-boot-starter-data-jpa</artifactId>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.springframework.boot</groupId>
  83. <artifactId>spring-boot-starter-logging</artifactId>
  84. <exclusions>
  85. <exclusion>
  86. <groupId>org.slf4j</groupId>
  87. <artifactId>log4j-over-slf4j</artifactId>
  88. </exclusion>
  89. </exclusions>
  90. </dependency>
  91. </dependencies>
  92. </project>