pom.xml 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  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. <exclusions>
  30. <exclusion>
  31. <artifactId>mybatis-plus-annotation</artifactId>
  32. <groupId>com.baomidou</groupId>
  33. </exclusion>
  34. </exclusions>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-aop</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>cn.hutool</groupId>
  42. <artifactId>hutool-all</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.projectlombok</groupId>
  46. <artifactId>lombok</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-configuration-processor</artifactId>
  51. <optional>true</optional>
  52. </dependency>
  53. </dependencies>
  54. <dependencyManagement>
  55. <dependencies>
  56. <!--MyBatis分页插件starter-->
  57. <dependency>
  58. <groupId>com.github.pagehelper</groupId>
  59. <artifactId>pagehelper-spring-boot-starter</artifactId>
  60. <version>1.2.7</version>
  61. </dependency>
  62. <!--MyBatis分页插件-->
  63. <dependency>
  64. <groupId>com.github.pagehelper</groupId>
  65. <artifactId>pagehelper</artifactId>
  66. <version>5.2.0</version>
  67. </dependency>
  68. <!--Hutool Java工具包-->
  69. <dependency>
  70. <groupId>cn.hutool</groupId>
  71. <artifactId>hutool-all</artifactId>
  72. <version>5.4.0</version>
  73. </dependency>
  74. <!--JWT(Json Web Token)登录支持-->
  75. <dependency>
  76. <groupId>io.jsonwebtoken</groupId>
  77. <artifactId>jjwt</artifactId>
  78. <version>0.9.0</version>
  79. </dependency>
  80. <!-- 阿里云OSS -->
  81. <dependency>
  82. <groupId>com.aliyun.oss</groupId>
  83. <artifactId>aliyun-sdk-oss</artifactId>
  84. <version>2.8.3</version>
  85. </dependency>
  86. <!--集成logstash-->
  87. <dependency>
  88. <groupId>net.logstash.logback</groupId>
  89. <artifactId>logstash-logback-encoder</artifactId>
  90. <version>5.3</version>
  91. </dependency>
  92. </dependencies>
  93. </dependencyManagement>
  94. <modules>
  95. <module>mall-mbg</module>
  96. <module>mall-admin</module>
  97. <module>mall-common</module>
  98. <module>mall-portal</module>
  99. </modules>
  100. </project>