pom.xml 3.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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. <relativePath/> <!-- lookup parent from repository -->
  22. </parent>
  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-security</artifactId>
  36. </dependency>
  37. <!--redis依赖配置-->
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-data-redis</artifactId>
  41. </dependency>
  42. <!--集成消息队列-->
  43. <dependency>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-starter-amqp</artifactId>
  46. </dependency>
  47. <!--lombok依赖-->
  48. <dependency>
  49. <groupId>org.projectlombok</groupId>
  50. <artifactId>lombok</artifactId>
  51. <optional>true</optional>
  52. </dependency>
  53. </dependencies>
  54. <build>
  55. <plugins>
  56. <plugin>
  57. <groupId>org.springframework.boot</groupId>
  58. <artifactId>spring-boot-maven-plugin</artifactId>
  59. </plugin>
  60. <!--<plugin>-->
  61. <!--<groupId>com.spotify</groupId>-->
  62. <!--<artifactId>docker-maven-plugin</artifactId>-->
  63. <!--<version>1.1.0</version>-->
  64. <!--<executions>-->
  65. <!--<execution>-->
  66. <!--<id>build-image</id>-->
  67. <!--<phase>package</phase>-->
  68. <!--<goals>-->
  69. <!--<goal>build</goal>-->
  70. <!--</goals>-->
  71. <!--</execution>-->
  72. <!--</executions>-->
  73. <!--<configuration>-->
  74. <!--<imageName>mall/${project.artifactId}:${project.version}</imageName>-->
  75. <!--<dockerHost>http://39.98.190.128:2375</dockerHost>-->
  76. <!--<baseImage>java:8</baseImage>-->
  77. <!--<entryPoint>["java", "-jar","-Dspring.profiles.active=prod","/${project.build.finalName}.jar"]</entryPoint>-->
  78. <!--<resources>-->
  79. <!--<resource>-->
  80. <!--<targetPath>/</targetPath>-->
  81. <!--<directory>${project.build.directory}</directory>-->
  82. <!--<include>${project.build.finalName}.jar</include>-->
  83. <!--</resource>-->
  84. <!--</resources>-->
  85. <!--</configuration>-->
  86. <!--</plugin>-->
  87. </plugins>
  88. </build>
  89. </project>