pom.xml 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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.yonge.cooleshow</groupId>
  7. <artifactId>cooleshow</artifactId>
  8. <version>1.0</version>
  9. </parent>
  10. <artifactId>cooleshow-mall</artifactId>
  11. <version>1.0</version>
  12. <packaging>pom</packaging>
  13. <name>cooleshow-mall</name>
  14. <description>cooleshow-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>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-aop</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>cn.hutool</groupId>
  31. <artifactId>hutool-all</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.projectlombok</groupId>
  35. <artifactId>lombok</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-configuration-processor</artifactId>
  40. <optional>true</optional>
  41. </dependency>
  42. </dependencies>
  43. <dependencyManagement>
  44. <dependencies>
  45. <!--MyBatis分页插件starter-->
  46. <dependency>
  47. <groupId>com.github.pagehelper</groupId>
  48. <artifactId>pagehelper-spring-boot-starter</artifactId>
  49. <version>1.2.7</version>
  50. </dependency>
  51. <!--MyBatis分页插件-->
  52. <dependency>
  53. <groupId>com.github.pagehelper</groupId>
  54. <artifactId>pagehelper</artifactId>
  55. <version>5.2.0</version>
  56. </dependency>
  57. <!--Hutool Java工具包-->
  58. <dependency>
  59. <groupId>cn.hutool</groupId>
  60. <artifactId>hutool-all</artifactId>
  61. <version>5.4.0</version>
  62. </dependency>
  63. <!--JWT(Json Web Token)登录支持-->
  64. <dependency>
  65. <groupId>io.jsonwebtoken</groupId>
  66. <artifactId>jjwt</artifactId>
  67. <version>0.9.0</version>
  68. </dependency>
  69. <!-- 阿里云OSS -->
  70. <dependency>
  71. <groupId>com.aliyun.oss</groupId>
  72. <artifactId>aliyun-sdk-oss</artifactId>
  73. <version>2.8.3</version>
  74. </dependency>
  75. <!--集成logstash-->
  76. <dependency>
  77. <groupId>net.logstash.logback</groupId>
  78. <artifactId>logstash-logback-encoder</artifactId>
  79. <version>5.3</version>
  80. </dependency>
  81. </dependencies>
  82. </dependencyManagement>
  83. <modules>
  84. <module>mall-mbg</module>
  85. <module>mall-admin</module>
  86. <module>mall-common</module>
  87. <module>mall-portal</module>
  88. </modules>
  89. </project>