pom.xml 3.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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. <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. </dependency>
  27. <dependency>
  28. <groupId>com.macro.mall</groupId>
  29. <artifactId>mall-security</artifactId>
  30. </dependency>
  31. <!--mongodb依赖配置-->
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-data-mongodb</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. </dependencies>
  47. <build>
  48. <plugins>
  49. <plugin>
  50. <groupId>org.springframework.boot</groupId>
  51. <artifactId>spring-boot-maven-plugin</artifactId>
  52. </plugin>
  53. <!--<plugin>-->
  54. <!--<groupId>com.spotify</groupId>-->
  55. <!--<artifactId>docker-maven-plugin</artifactId>-->
  56. <!--<version>${docker.maven.plugin.version}</version>-->
  57. <!--<executions>-->
  58. <!--<execution>-->
  59. <!--<id>build-image</id>-->
  60. <!--<phase>package</phase>-->
  61. <!--<goals>-->
  62. <!--<goal>build</goal>-->
  63. <!--</goals>-->
  64. <!--</execution>-->
  65. <!--</executions>-->
  66. <!--<configuration>-->
  67. <!--<imageName>mall/${project.artifactId}:${project.version}</imageName>-->
  68. <!--<dockerHost>${docker.host}</dockerHost>-->
  69. <!--<baseImage>java:8</baseImage>-->
  70. <!--<entryPoint>["java", "-jar","-Dspring.profiles.active=prod","/${project.build.finalName}.jar"]-->
  71. <!--</entryPoint>-->
  72. <!--<resources>-->
  73. <!--<resource>-->
  74. <!--<targetPath>/</targetPath>-->
  75. <!--<directory>${project.build.directory}</directory>-->
  76. <!--<include>${project.build.finalName}.jar</include>-->
  77. <!--</resource>-->
  78. <!--</resources>-->
  79. <!--</configuration>-->
  80. <!--</plugin>-->
  81. </plugins>
  82. </build>
  83. </project>