pom.xml 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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>1.0-SNAPSHOT</version>
  8. <packaging>jar</packaging>
  9. <name>mall-search</name>
  10. <description>mall-search 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. <properties>
  17. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  19. <java.version>1.8</java.version>
  20. <skipTests>true</skipTests>
  21. </properties>
  22. <dependencies>
  23. <dependency>
  24. <groupId>com.macro.mall</groupId>
  25. <artifactId>mall-mbg</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-data-elasticsearch</artifactId>
  30. </dependency>
  31. </dependencies>
  32. <build>
  33. <plugins>
  34. <plugin>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-maven-plugin</artifactId>
  37. </plugin>
  38. <!--<plugin>-->
  39. <!--<groupId>com.spotify</groupId>-->
  40. <!--<artifactId>docker-maven-plugin</artifactId>-->
  41. <!--<version>1.1.0</version>-->
  42. <!--<executions>-->
  43. <!--<execution>-->
  44. <!--<id>build-image</id>-->
  45. <!--<phase>package</phase>-->
  46. <!--<goals>-->
  47. <!--<goal>build</goal>-->
  48. <!--</goals>-->
  49. <!--</execution>-->
  50. <!--</executions>-->
  51. <!--<configuration>-->
  52. <!--<imageName>mall/${project.artifactId}:${project.version}</imageName>-->
  53. <!--<dockerHost>${docker.host}</dockerHost>-->
  54. <!--<baseImage>java:8</baseImage>-->
  55. <!--<entryPoint>["java", "-jar", "-Dspring.profiles.active=prod","/${project.build.finalName}.jar"]-->
  56. <!--</entryPoint>-->
  57. <!--<resources>-->
  58. <!--<resource>-->
  59. <!--<targetPath>/</targetPath>-->
  60. <!--<directory>${project.build.directory}</directory>-->
  61. <!--<include>${project.build.finalName}.jar</include>-->
  62. <!--</resource>-->
  63. <!--</resources>-->
  64. <!--</configuration>-->
  65. <!--</plugin>-->
  66. </plugins>
  67. </build>
  68. </project>