pom.xml 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>com.macro.mall</groupId>
  5. <artifactId>mall-admin</artifactId>
  6. <version>0.0.1-SNAPSHOT</version>
  7. <packaging>jar</packaging>
  8. <name>mall-admin</name>
  9. <description>mall-admin project for mall</description>
  10. <parent>
  11. <groupId>org.springframework.boot</groupId>
  12. <artifactId>spring-boot-starter-parent</artifactId>
  13. <version>2.1.3.RELEASE</version>
  14. <relativePath/> <!-- lookup parent from repository -->
  15. </parent>
  16. <properties>
  17. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  19. <java.version>1.8</java.version>
  20. <skipTests>true</skipTests>
  21. </properties>
  22. <dependencies>
  23. <dependency>
  24. <groupId>com.macro.mall</groupId>
  25. <artifactId>mall-mbg</artifactId>
  26. <version>1.0-SNAPSHOT</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-web</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-security</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-actuator</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-starter-aop</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-starter-test</artifactId>
  47. <scope>test</scope>
  48. </dependency>
  49. <!--MyBatis分页插件-->
  50. <dependency>
  51. <groupId>com.github.pagehelper</groupId>
  52. <artifactId>pagehelper-spring-boot-starter</artifactId>
  53. <version>1.2.10</version>
  54. </dependency>
  55. <!--Swagger-UI API文档生产工具-->
  56. <dependency>
  57. <groupId>io.springfox</groupId>
  58. <artifactId>springfox-swagger2</artifactId>
  59. <version>2.6.1</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>io.springfox</groupId>
  63. <artifactId>springfox-swagger-ui</artifactId>
  64. <version>2.6.1</version>
  65. </dependency>
  66. <!--JWT(Json Web Token)登录支持-->
  67. <dependency>
  68. <groupId>io.jsonwebtoken</groupId>
  69. <artifactId>jjwt</artifactId>
  70. <version>0.9.0</version>
  71. </dependency>
  72. <!-- 阿里云OSS -->
  73. <dependency>
  74. <groupId>com.aliyun.oss</groupId>
  75. <artifactId>aliyun-sdk-oss</artifactId>
  76. <version>2.5.0</version>
  77. </dependency>
  78. <!--集成logstash-->
  79. <dependency>
  80. <groupId>net.logstash.logback</groupId>
  81. <artifactId>logstash-logback-encoder</artifactId>
  82. <version>4.8</version>
  83. </dependency>
  84. <!--集成druid连接池-->
  85. <dependency>
  86. <groupId>com.alibaba</groupId>
  87. <artifactId>druid-spring-boot-starter</artifactId>
  88. <version>1.1.10</version>
  89. </dependency>
  90. <!--lombok依赖-->
  91. <dependency>
  92. <groupId>org.projectlombok</groupId>
  93. <artifactId>lombok</artifactId>
  94. <optional>true</optional>
  95. </dependency>
  96. </dependencies>
  97. <build>
  98. <plugins>
  99. <plugin>
  100. <groupId>org.springframework.boot</groupId>
  101. <artifactId>spring-boot-maven-plugin</artifactId>
  102. </plugin>
  103. <!--<plugin>-->
  104. <!--<groupId>com.spotify</groupId>-->
  105. <!--<artifactId>docker-maven-plugin</artifactId>-->
  106. <!--<version>1.1.0</version>-->
  107. <!--<executions>-->
  108. <!--<execution>-->
  109. <!--<id>build-image</id>-->
  110. <!--<phase>package</phase>-->
  111. <!--<goals>-->
  112. <!--<goal>build</goal>-->
  113. <!--</goals>-->
  114. <!--</execution>-->
  115. <!--</executions>-->
  116. <!--<configuration>-->
  117. <!--<imageName>mall/${project.artifactId}:${project.version}</imageName>-->
  118. <!--<dockerHost>http://39.98.190.128:2375</dockerHost>-->
  119. <!--<baseImage>java:8</baseImage>-->
  120. <!--<entryPoint>["java", "-jar", "-Dspring.profiles.active=prod","/${project.build.finalName}.jar"]</entryPoint>-->
  121. <!--<resources>-->
  122. <!--<resource>-->
  123. <!--<targetPath>/</targetPath>-->
  124. <!--<directory>${project.build.directory}</directory>-->
  125. <!--<include>${project.build.finalName}.jar</include>-->
  126. <!--</resource>-->
  127. <!--</resources>-->
  128. <!--</configuration>-->
  129. <!--</plugin>-->
  130. </plugins>
  131. </build>
  132. </project>