pom.xml 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  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"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <modules>
  6. <module>common</module>
  7. <module>model</module>
  8. <module>service</module>
  9. <module>server-gateway</module>
  10. <module>service-client</module>
  11. <module>hospital-manage</module>
  12. </modules>
  13. <parent>
  14. <groupId>org.springframework.boot</groupId>
  15. <artifactId>spring-boot-starter-parent</artifactId>
  16. <version>2.2.1.RELEASE</version>
  17. </parent>
  18. <groupId>com.atguigu.yygh</groupId>
  19. <artifactId>yygh-parent</artifactId>
  20. <version>1.0</version>
  21. <packaging>pom</packaging>
  22. <properties>
  23. <java.version>1.8</java.version>
  24. <cloud.version>Hoxton.RELEASE</cloud.version>
  25. <alibaba.version>2.2.0.RELEASE</alibaba.version>
  26. <mybatis-plus.version>3.3.1</mybatis-plus.version>
  27. <mysql.version>5.1.46</mysql.version>
  28. <swagger.version>2.7.0</swagger.version>
  29. <jwt.version>0.7.0</jwt.version>
  30. <fastjson.version>1.2.29</fastjson.version>
  31. <httpclient.version>4.5.1</httpclient.version>
  32. <easyexcel.version>2.2.0-beta2</easyexcel.version>
  33. <aliyun.version>4.1.1</aliyun.version>
  34. <oss.version>3.9.1</oss.version>
  35. <jodatime.version>2.10.1</jodatime.version>
  36. </properties>
  37. <!--配置dependencyManagement锁定依赖的版本-->
  38. <dependencyManagement>
  39. <dependencies>
  40. <dependency>
  41. <groupId>org.springframework.cloud</groupId>
  42. <artifactId>spring-cloud-dependencies</artifactId>
  43. <version>${cloud.version}</version>
  44. <type>pom</type>
  45. <scope>import</scope>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.alibaba.cloud</groupId>
  49. <artifactId>spring-cloud-alibaba-dependencies</artifactId>
  50. <version>${alibaba.version}</version>
  51. <type>pom</type>
  52. <scope>import</scope>
  53. </dependency>
  54. <!--mybatis-plus 持久层-->
  55. <dependency>
  56. <groupId>com.baomidou</groupId>
  57. <artifactId>mybatis-plus-boot-starter</artifactId>
  58. <version>${mybatis-plus.version}</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>mysql</groupId>
  62. <artifactId>mysql-connector-java</artifactId>
  63. <version>${mysql.version}</version>
  64. </dependency>
  65. <!--swagger-->
  66. <dependency>
  67. <groupId>io.springfox</groupId>
  68. <artifactId>springfox-swagger2</artifactId>
  69. <version>${swagger.version}</version>
  70. </dependency>
  71. <!--swagger ui-->
  72. <dependency>
  73. <groupId>io.springfox</groupId>
  74. <artifactId>springfox-swagger-ui</artifactId>
  75. <version>${swagger.version}</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>io.jsonwebtoken</groupId>
  79. <artifactId>jjwt</artifactId>
  80. <version>${jwt.version}</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.apache.httpcomponents</groupId>
  84. <artifactId>httpclient</artifactId>
  85. <version>${httpclient.version}</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>com.alibaba</groupId>
  89. <artifactId>fastjson</artifactId>
  90. <version>${fastjson.version}</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>com.alibaba</groupId>
  94. <artifactId>easyexcel</artifactId>
  95. <version>${easyexcel.version}</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>com.aliyun</groupId>
  99. <artifactId>aliyun-java-sdk-core</artifactId>
  100. <version>${aliyun.version}</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>com.aliyun.oss</groupId>
  104. <artifactId>aliyun-sdk-oss</artifactId>
  105. <version>${oss.version}</version>
  106. </dependency>
  107. <!--日期时间工具-->
  108. <dependency>
  109. <groupId>joda-time</groupId>
  110. <artifactId>joda-time</artifactId>
  111. <version>${jodatime.version}</version>
  112. </dependency>
  113. </dependencies>
  114. </dependencyManagement>
  115. <repositories>
  116. <repository>
  117. <id>nexus-aliyun</id>
  118. <name>Nexus aliyun</name>
  119. <layout>default</layout>
  120. <url>http://maven.aliyun.com/nexus/content/groups/public</url>
  121. <snapshots>
  122. <enabled>false</enabled>
  123. </snapshots>
  124. <releases>
  125. <enabled>true</enabled>
  126. </releases>
  127. </repository>
  128. </repositories>
  129. </project>