pom.xml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  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. <version>1.0.0-SNAPSHOT</version>
  7. <parent>
  8. <groupId>com.ywt</groupId>
  9. <artifactId>ywt-platform-outpatient-parent</artifactId>
  10. <version>1.0.0-SNAPSHOT</version>
  11. <relativePath>../pom.xml</relativePath>
  12. </parent>
  13. <artifactId>ywt-platform-outpatient-common</artifactId>
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.ywt</groupId>
  17. <artifactId>ywt-biz-common</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.ywt</groupId>
  21. <artifactId>ywt-platform-outpatient-base</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter-data-jpa</artifactId>
  26. <exclusions>
  27. <exclusion>
  28. <groupId>org.slf4j</groupId>
  29. <artifactId>jcl-over-slf4j</artifactId>
  30. </exclusion>
  31. <exclusion>
  32. <groupId>org.slf4j</groupId>
  33. <artifactId>jul-to-slf4j</artifactId>
  34. </exclusion>
  35. </exclusions>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework</groupId>
  39. <artifactId>spring-jdbc</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.fasterxml.jackson.core</groupId>
  43. <artifactId>jackson-databind</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.fasterxml.jackson.datatype</groupId>
  47. <artifactId>jackson-datatype-jsr310</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.slf4j</groupId>
  51. <artifactId>slf4j-api</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.zaxxer</groupId>
  55. <artifactId>HikariCP</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.springframework.boot</groupId>
  59. <artifactId>spring-boot-autoconfigure</artifactId>
  60. <scope>provided</scope>
  61. </dependency>
  62. <dependency>
  63. <groupId>io.springfox</groupId>
  64. <artifactId>springfox-swagger2</artifactId>
  65. <scope>provided</scope>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.springframework</groupId>
  69. <artifactId>spring-web</artifactId>
  70. <scope>provided</scope>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.springframework</groupId>
  74. <artifactId>spring-tx</artifactId>
  75. <scope>provided</scope>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.springframework</groupId>
  79. <artifactId>spring-jdbc</artifactId>
  80. <scope>provided</scope>
  81. </dependency>
  82. <dependency>
  83. <groupId>javax.servlet</groupId>
  84. <artifactId>javax.servlet-api</artifactId>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.apache.httpcomponents</groupId>
  88. <artifactId>httpclient</artifactId>
  89. </dependency>
  90. <dependency>
  91. <groupId>com.auth0</groupId>
  92. <artifactId>java-jwt</artifactId>
  93. </dependency>
  94. </dependencies>
  95. <properties>
  96. <maven.compiler.source>8</maven.compiler.source>
  97. <maven.compiler.target>8</maven.compiler.target>
  98. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  99. </properties>
  100. </project>