pom.xml 3.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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. <parent>
  6. <groupId>com.ym</groupId>
  7. <artifactId>mec</artifactId>
  8. <version>1.0</version>
  9. </parent>
  10. <artifactId>mec-mall</artifactId>
  11. <version>1.0</version>
  12. <packaging>pom</packaging>
  13. <name>mec-mall</name>
  14. <description>mec-mall</description>
  15. <properties>
  16. <java.version>1.8</java.version>
  17. <swagger2.version>2.9.2</swagger2.version>
  18. <swagger-models.version>1.6.0</swagger-models.version>
  19. <swagger-annotations.version>1.6.0</swagger-annotations.version>
  20. <mall-common.version>1.0</mall-common.version>
  21. <mall-mbg.version>1.0</mall-mbg.version>
  22. <mall-security.version>1.0</mall-security.version>
  23. </properties>
  24. <dependencies>
  25. <dependency>
  26. <groupId>com.microsvc.toolkit.middleware</groupId>
  27. <artifactId>microsvc-middleware-payment</artifactId>
  28. <version>${microsvc.version}</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-starter-aop</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>cn.hutool</groupId>
  36. <artifactId>hutool-all</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.projectlombok</groupId>
  40. <artifactId>lombok</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-configuration-processor</artifactId>
  45. <optional>true</optional>
  46. </dependency>
  47. </dependencies>
  48. <dependencyManagement>
  49. <dependencies>
  50. <!--MyBatis分页插件starter-->
  51. <dependency>
  52. <groupId>com.github.pagehelper</groupId>
  53. <artifactId>pagehelper-spring-boot-starter</artifactId>
  54. <version>1.2.7</version>
  55. </dependency>
  56. <!--MyBatis分页插件-->
  57. <dependency>
  58. <groupId>com.github.pagehelper</groupId>
  59. <artifactId>pagehelper</artifactId>
  60. <version>5.2.0</version>
  61. </dependency>
  62. <!--Hutool Java工具包-->
  63. <dependency>
  64. <groupId>cn.hutool</groupId>
  65. <artifactId>hutool-all</artifactId>
  66. <version>5.4.0</version>
  67. </dependency>
  68. <!--JWT(Json Web Token)登录支持-->
  69. <dependency>
  70. <groupId>io.jsonwebtoken</groupId>
  71. <artifactId>jjwt</artifactId>
  72. <version>0.9.0</version>
  73. </dependency>
  74. <!-- 阿里云OSS -->
  75. <dependency>
  76. <groupId>com.aliyun.oss</groupId>
  77. <artifactId>aliyun-sdk-oss</artifactId>
  78. <version>2.8.3</version>
  79. </dependency>
  80. <!--集成logstash-->
  81. <dependency>
  82. <groupId>net.logstash.logback</groupId>
  83. <artifactId>logstash-logback-encoder</artifactId>
  84. <version>5.3</version>
  85. </dependency>
  86. </dependencies>
  87. </dependencyManagement>
  88. <modules>
  89. <module>mall-mbg</module>
  90. <module>mall-admin</module>
  91. <module>mall-common</module>
  92. <module>mall-portal</module>
  93. </modules>
  94. </project>