pom.xml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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>1.0-SNAPSHOT</version>
  8. <packaging>jar</packaging>
  9. <name>mall-portal</name>
  10. <description>Demo project for Spring Boot</description>
  11. <properties>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  14. <java.version>1.8</java.version>
  15. <skipTests>true</skipTests>
  16. </properties>
  17. <parent>
  18. <groupId>com.macro.mall</groupId>
  19. <artifactId>mall</artifactId>
  20. <version>1.0-SNAPSHOT</version>
  21. </parent>
  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-data-mongodb</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-security</artifactId>
  35. </dependency>
  36. <!--redis依赖配置-->
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-data-redis</artifactId>
  40. </dependency>
  41. <!--集成消息队列-->
  42. <dependency>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-starter-amqp</artifactId>
  45. </dependency>
  46. <!--lombok依赖-->
  47. <dependency>
  48. <groupId>org.projectlombok</groupId>
  49. <artifactId>lombok</artifactId>
  50. <optional>true</optional>
  51. </dependency>
  52. </dependencies>
  53. <build>
  54. <plugins>
  55. <plugin>
  56. <groupId>org.springframework.boot</groupId>
  57. <artifactId>spring-boot-maven-plugin</artifactId>
  58. </plugin>
  59. <!--<plugin>-->
  60. <!--<groupId>com.spotify</groupId>-->
  61. <!--<artifactId>docker-maven-plugin</artifactId>-->
  62. <!--<version>1.1.0</version>-->
  63. <!--<executions>-->
  64. <!--<execution>-->
  65. <!--<id>build-image</id>-->
  66. <!--<phase>package</phase>-->
  67. <!--<goals>-->
  68. <!--<goal>build</goal>-->
  69. <!--</goals>-->
  70. <!--</execution>-->
  71. <!--</executions>-->
  72. <!--<configuration>-->
  73. <!--<imageName>mall/${project.artifactId}:${project.version}</imageName>-->
  74. <!--<dockerHost>http://192.168.3.101:2375</dockerHost>-->
  75. <!--<baseImage>java:8</baseImage>-->
  76. <!--<entryPoint>["java", "-jar","-Dspring.profiles.active=prod","/${project.build.finalName}.jar"]</entryPoint>-->
  77. <!--<resources>-->
  78. <!--<resource>-->
  79. <!--<targetPath>/</targetPath>-->
  80. <!--<directory>${project.build.directory}</directory>-->
  81. <!--<include>${project.build.finalName}.jar</include>-->
  82. <!--</resource>-->
  83. <!--</resources>-->
  84. <!--</configuration>-->
  85. <!--</plugin>-->
  86. </plugins>
  87. </build>
  88. </project>