pom.xml 2.6 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. <parent>
  6. <groupId>com.zlt</groupId>
  7. <artifactId>zlt-web</artifactId>
  8. <version>2.7.0</version>
  9. </parent>
  10. <artifactId>back-web</artifactId>
  11. <description>后台管理前端</description>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.springframework.boot</groupId>
  15. <artifactId>spring-boot-starter-web</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>org.springframework.boot</groupId>
  19. <artifactId>spring-boot-devtools</artifactId>
  20. <optional>true</optional>
  21. </dependency>
  22. </dependencies>
  23. <build>
  24. <plugins>
  25. <plugin>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-maven-plugin</artifactId>
  28. <executions>
  29. <execution>
  30. <goals>
  31. <goal>repackage</goal>
  32. </goals>
  33. </execution>
  34. </executions>
  35. </plugin>
  36. <plugin>
  37. <groupId>com.spotify</groupId>
  38. <artifactId>docker-maven-plugin</artifactId>
  39. <configuration>
  40. <imageName>${docker.image.prefix}/${project.artifactId}</imageName>
  41. <imageTags>
  42. <imageTag>${project.version}</imageTag>
  43. <imageTag>latest</imageTag>
  44. </imageTags>
  45. <forceTags>true</forceTags>
  46. <baseImage>${docker.baseImage}</baseImage>
  47. <volumes>${docker.volumes}</volumes>
  48. <env>
  49. <JAVA_OPTS>${docker.java.opts}</JAVA_OPTS>
  50. </env>
  51. <entryPoint>["sh","-c","java $JAVA_OPTS ${docker.java.security.egd} -jar /${project.build.finalName}.jar"]</entryPoint>
  52. <resources>
  53. <resource>
  54. <targetPath>/</targetPath>
  55. <directory>${project.build.directory}</directory>
  56. <include>${project.build.finalName}.jar</include>
  57. </resource>
  58. </resources>
  59. </configuration>
  60. </plugin>
  61. </plugins>
  62. <finalName>${project.artifactId}</finalName>
  63. </build>
  64. </project>