pom.xml 2.7 KB

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