pom.xml 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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>mall-portal project for mall</description>
  11. <parent>
  12. <groupId>com.macro.mall</groupId>
  13. <artifactId>mall</artifactId>
  14. <version>1.0-SNAPSHOT</version>
  15. </parent>
  16. <dependencies>
  17. <dependency>
  18. <groupId>com.macro.mall</groupId>
  19. <artifactId>mall-mbg</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.macro.mall</groupId>
  23. <artifactId>mall-security</artifactId>
  24. </dependency>
  25. <!--mongodb依赖配置-->
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-starter-data-mongodb</artifactId>
  29. </dependency>
  30. <!--redis依赖配置-->
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-starter-data-redis</artifactId>
  34. </dependency>
  35. <!--集成消息队列-->
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-amqp</artifactId>
  39. </dependency>
  40. </dependencies>
  41. <build>
  42. <plugins>
  43. <plugin>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-maven-plugin</artifactId>
  46. </plugin>
  47. <!--<plugin>-->
  48. <!--<groupId>com.spotify</groupId>-->
  49. <!--<artifactId>docker-maven-plugin</artifactId>-->
  50. <!--<version>${docker.maven.plugin.version}</version>-->
  51. <!--<executions>-->
  52. <!--<execution>-->
  53. <!--<id>build-image</id>-->
  54. <!--<phase>package</phase>-->
  55. <!--<goals>-->
  56. <!--<goal>build</goal>-->
  57. <!--</goals>-->
  58. <!--</execution>-->
  59. <!--</executions>-->
  60. <!--<configuration>-->
  61. <!--<imageName>mall/${project.artifactId}:${project.version}</imageName>-->
  62. <!--<dockerHost>${docker.host}</dockerHost>-->
  63. <!--<baseImage>java:8</baseImage>-->
  64. <!--<entryPoint>["java", "-jar","-Dspring.profiles.active=prod","/${project.build.finalName}.jar"]-->
  65. <!--</entryPoint>-->
  66. <!--<resources>-->
  67. <!--<resource>-->
  68. <!--<targetPath>/</targetPath>-->
  69. <!--<directory>${project.build.directory}</directory>-->
  70. <!--<include>${project.build.finalName}.jar</include>-->
  71. <!--</resource>-->
  72. <!--</resources>-->
  73. <!--</configuration>-->
  74. <!--</plugin>-->
  75. </plugins>
  76. </build>
  77. </project>