pom.xml 3.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>com.zlt</groupId>
  6. <artifactId>search-center</artifactId>
  7. <version>2.7.0</version>
  8. </parent>
  9. <artifactId>search-server</artifactId>
  10. <description>搜索中心服务端</description>
  11. <dependencies>
  12. <!-- 公共实体类模块 -->
  13. <dependency>
  14. <groupId>com.zlt</groupId>
  15. <artifactId>zlt-config</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>com.zlt</groupId>
  19. <artifactId>search-client</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.alibaba.cloud</groupId>
  23. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.baomidou</groupId>
  27. <artifactId>mybatis-plus-extension</artifactId>
  28. </dependency>
  29. <!-- swagger -->
  30. <dependency>
  31. <groupId>com.zlt</groupId>
  32. <artifactId>zlt-swagger2-spring-boot-starter</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter-actuator</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>io.micrometer</groupId>
  40. <artifactId>micrometer-registry-prometheus</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-starter-data-elasticsearch</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. <executions>
  53. <execution>
  54. <goals>
  55. <goal>repackage</goal>
  56. </goals>
  57. </execution>
  58. </executions>
  59. </plugin>
  60. <plugin>
  61. <groupId>com.spotify</groupId>
  62. <artifactId>docker-maven-plugin</artifactId>
  63. <configuration>
  64. <imageName>${docker.image.prefix}/${project.artifactId}</imageName>
  65. <imageTags>
  66. <imageTag>${project.version}</imageTag>
  67. <imageTag>latest</imageTag>
  68. </imageTags>
  69. <forceTags>true</forceTags>
  70. <baseImage>${docker.baseImage}</baseImage>
  71. <volumes>${docker.volumes}</volumes>
  72. <env>
  73. <JAVA_OPTS>${docker.java.opts}</JAVA_OPTS>
  74. </env>
  75. <entryPoint>["sh","-c","java $JAVA_OPTS ${docker.java.security.egd} -jar /${project.build.finalName}.jar"]</entryPoint>
  76. <resources>
  77. <resource>
  78. <targetPath>/</targetPath>
  79. <directory>${project.build.directory}</directory>
  80. <include>${project.build.finalName}.jar</include>
  81. </resource>
  82. </resources>
  83. </configuration>
  84. </plugin>
  85. </plugins>
  86. <finalName>${project.artifactId}</finalName>
  87. </build>
  88. </project>