pom.xml 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.macro.mall</groupId>
  6. <artifactId>mall-portal</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <packaging>jar</packaging>
  9. <name>mall-portal</name>
  10. <description>Demo project for Spring Boot</description>
  11. <parent>
  12. <groupId>org.springframework.boot</groupId>
  13. <artifactId>spring-boot-starter-parent</artifactId>
  14. <version>2.1.3.RELEASE</version>
  15. <relativePath/> <!-- lookup parent from repository -->
  16. </parent>
  17. <properties>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  20. <java.version>1.8</java.version>
  21. <skipTests>true</skipTests>
  22. </properties>
  23. <dependencies>
  24. <dependency>
  25. <groupId>com.macro.mall</groupId>
  26. <artifactId>mall-mbg</artifactId>
  27. <version>1.0-SNAPSHOT</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-data-mongodb</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-web</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-security</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-starter-test</artifactId>
  44. <scope>test</scope>
  45. </dependency>
  46. <!--MyBatis分页插件-->
  47. <dependency>
  48. <groupId>com.github.pagehelper</groupId>
  49. <artifactId>pagehelper-spring-boot-starter</artifactId>
  50. <version>1.2.3</version>
  51. </dependency>
  52. <!--Swagger-UI API文档生产工具-->
  53. <dependency>
  54. <groupId>io.springfox</groupId>
  55. <artifactId>springfox-swagger2</artifactId>
  56. <version>2.6.1</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>io.springfox</groupId>
  60. <artifactId>springfox-swagger-ui</artifactId>
  61. <version>2.6.1</version>
  62. </dependency>
  63. <!--redis依赖配置-->
  64. <dependency>
  65. <groupId>org.springframework.boot</groupId>
  66. <artifactId>spring-boot-starter-cache</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.springframework.boot</groupId>
  70. <artifactId>spring-boot-starter-redis</artifactId>
  71. <version>1.3.8.RELEASE</version>
  72. </dependency>
  73. <!--集成druid连接池-->
  74. <dependency>
  75. <groupId>com.alibaba</groupId>
  76. <artifactId>druid-spring-boot-starter</artifactId>
  77. <version>1.1.10</version>
  78. </dependency>
  79. <!--集成消息队列-->
  80. <dependency>
  81. <groupId>org.springframework.boot</groupId>
  82. <artifactId>spring-boot-starter-amqp</artifactId>
  83. </dependency>
  84. <!--lombok依赖-->
  85. <dependency>
  86. <groupId>org.projectlombok</groupId>
  87. <artifactId>lombok</artifactId>
  88. <optional>true</optional>
  89. </dependency>
  90. </dependencies>
  91. <build>
  92. <plugins>
  93. <plugin>
  94. <groupId>org.springframework.boot</groupId>
  95. <artifactId>spring-boot-maven-plugin</artifactId>
  96. </plugin>
  97. <!--<plugin>-->
  98. <!--<groupId>com.spotify</groupId>-->
  99. <!--<artifactId>docker-maven-plugin</artifactId>-->
  100. <!--<version>1.1.0</version>-->
  101. <!--<executions>-->
  102. <!--<execution>-->
  103. <!--<id>build-image</id>-->
  104. <!--<phase>package</phase>-->
  105. <!--<goals>-->
  106. <!--<goal>build</goal>-->
  107. <!--</goals>-->
  108. <!--</execution>-->
  109. <!--</executions>-->
  110. <!--<configuration>-->
  111. <!--<imageName>mall/${project.artifactId}:${project.version}</imageName>-->
  112. <!--<dockerHost>http://39.98.190.128:2375</dockerHost>-->
  113. <!--<baseImage>java:8</baseImage>-->
  114. <!--<entryPoint>["java", "-jar","-Dspring.profiles.active=prod","/${project.build.finalName}.jar"]</entryPoint>-->
  115. <!--<resources>-->
  116. <!--<resource>-->
  117. <!--<targetPath>/</targetPath>-->
  118. <!--<directory>${project.build.directory}</directory>-->
  119. <!--<include>${project.build.finalName}.jar</include>-->
  120. <!--</resource>-->
  121. <!--</resources>-->
  122. <!--</configuration>-->
  123. <!--</plugin>-->
  124. </plugins>
  125. </build>
  126. </project>