pom.xml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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-search</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <packaging>jar</packaging>
  9. <name>mall-search</name>
  10. <description>mall-search project for mall</description>
  11. <parent>
  12. <groupId>org.springframework.boot</groupId>
  13. <artifactId>spring-boot-starter-parent</artifactId>
  14. <version>1.5.14.RELEASE</version>
  15. <relativePath/> <!-- lookup parent from repository -->
  16. </parent>
  17. <properties>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  20. <java.version>1.8</java.version>
  21. <skipTests>true</skipTests>
  22. </properties>
  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-elasticsearch</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-web</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-test</artifactId>
  40. <scope>test</scope>
  41. </dependency>
  42. <!--MyBatis分页插件-->
  43. <dependency>
  44. <groupId>com.github.pagehelper</groupId>
  45. <artifactId>pagehelper-spring-boot-starter</artifactId>
  46. <version>1.2.3</version>
  47. </dependency>
  48. <!--Swagger-UI API文档生产工具-->
  49. <dependency>
  50. <groupId>io.springfox</groupId>
  51. <artifactId>springfox-swagger2</artifactId>
  52. <version>2.6.1</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>io.springfox</groupId>
  56. <artifactId>springfox-swagger-ui</artifactId>
  57. <version>2.6.1</version>
  58. </dependency>
  59. </dependencies>
  60. <build>
  61. <plugins>
  62. <plugin>
  63. <groupId>org.springframework.boot</groupId>
  64. <artifactId>spring-boot-maven-plugin</artifactId>
  65. </plugin>
  66. <plugin>
  67. <groupId>com.spotify</groupId>
  68. <artifactId>docker-maven-plugin</artifactId>
  69. <version>1.1.0</version>
  70. <executions>
  71. <execution>
  72. <id>build-image</id>
  73. <phase>package</phase>
  74. <goals>
  75. <goal>build</goal>
  76. </goals>
  77. </execution>
  78. </executions>
  79. <configuration>
  80. <imageName>mall/${project.artifactId}:${project.version}</imageName>
  81. <dockerHost>http://192.168.1.71:2375</dockerHost>
  82. <baseImage>java:8</baseImage>
  83. <entryPoint>["java", "-jar", "-Dspring.profiles.active=prod","/${project.build.finalName}.jar"]</entryPoint>
  84. <resources>
  85. <resource>
  86. <targetPath>/</targetPath>
  87. <directory>${project.build.directory}</directory>
  88. <include>${project.build.finalName}.jar</include>
  89. </resource>
  90. </resources>
  91. </configuration>
  92. </plugin>
  93. </plugins>
  94. </build>
  95. </project>