pom.xml 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>org.example</groupId>
  7. <artifactId>code-test</artifactId>
  8. <version>1.0.0</version>
  9. <!--导入springboot 父工程-->
  10. <parent>
  11. <artifactId>spring-boot-starter-parent</artifactId>
  12. <groupId>org.springframework.boot</groupId>
  13. <version>2.5.3</version>
  14. </parent>
  15. <!--导入web项目场景启动器 会自动导入和web开发相关的依赖-->
  16. <dependencies>
  17. <dependency>
  18. <groupId>org.springframework.boot</groupId>
  19. <artifactId>spring-boot-starter-web</artifactId>
  20. </dependency>
  21. </dependencies>
  22. <profiles>
  23. <profile>
  24. <id>dev</id>
  25. <!--默认激活当前配置-->
  26. <activation>
  27. <activeByDefault>true</activeByDefault>
  28. </activation>
  29. <properties>
  30. <profiles.active>dev</profiles.active>
  31. <!-- Docker 配置 -->
  32. <docker.dockerHost>http://172.16.90.64:22375</docker.dockerHost>
  33. <docker.serviceId>DockerHub</docker.serviceId>
  34. <docker.image.version>1.0.0</docker.image.version>
  35. </properties>
  36. </profile>
  37. </profiles>
  38. <build>
  39. <plugins>
  40. <plugin>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-maven-plugin</artifactId>
  43. </plugin>
  44. <plugin>
  45. <groupId>org.apache.maven.plugins</groupId>
  46. <artifactId>maven-surefire-plugin</artifactId>
  47. <version>2.18.1</version>
  48. <configuration>
  49. <skipTests>true</skipTests>
  50. </configuration>
  51. </plugin>
  52. <plugin>
  53. <groupId>com.spotify</groupId>
  54. <artifactId>docker-maven-plugin</artifactId>
  55. <version>1.2.2</version>
  56. <configuration>
  57. <serverId>${docker.serviceId}</serverId>
  58. <dockerHost>${docker.dockerHost}</dockerHost>
  59. <imageName>docker.io/${project.artifactId}:${docker.image.version}</imageName>
  60. <dockerDirectory>${project.basedir}</dockerDirectory>
  61. <resources>
  62. <resource>
  63. <targetPath>/</targetPath>
  64. <directory>${project.build.directory}</directory>
  65. <include>${project.build.finalName}.jar</include>
  66. </resource>
  67. </resources>
  68. </configuration>
  69. </plugin>
  70. </plugins>
  71. </build>
  72. </project>