pom.xml 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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. <repositories>
  23. <repository>
  24. <id>nexus</id>
  25. <url>http://172.16.90.201:8081/repository/maven-public/</url>
  26. <releases>
  27. <enabled>true</enabled>
  28. </releases>
  29. <snapshots>
  30. <enabled>true</enabled>
  31. <updatePolicy>always</updatePolicy>
  32. <checksumPolicy>fail</checksumPolicy>
  33. </snapshots>
  34. </repository>
  35. </repositories>
  36. <profiles>
  37. <profile>
  38. <id>dev</id>
  39. <!--默认激活当前配置-->
  40. <activation>
  41. <activeByDefault>true</activeByDefault>
  42. </activation>
  43. <properties>
  44. <profiles.active>dev</profiles.active>
  45. <!-- Docker 配置 -->
  46. <docker.dockerHost>http://172.16.90.64:22375</docker.dockerHost>
  47. <docker.serviceId>DockerHub</docker.serviceId>
  48. <docker.image.version>1.0.0</docker.image.version>
  49. </properties>
  50. </profile>
  51. </profiles>
  52. <build>
  53. <plugins>
  54. <plugin>
  55. <groupId>org.springframework.boot</groupId>
  56. <artifactId>spring-boot-maven-plugin</artifactId>
  57. </plugin>
  58. <plugin>
  59. <groupId>org.apache.maven.plugins</groupId>
  60. <artifactId>maven-surefire-plugin</artifactId>
  61. <version>2.18.1</version>
  62. <configuration>
  63. <skipTests>true</skipTests>
  64. </configuration>
  65. </plugin>
  66. <plugin>
  67. <groupId>com.spotify</groupId>
  68. <artifactId>docker-maven-plugin</artifactId>
  69. <version>1.2.2</version>
  70. <configuration>
  71. <serverId>${docker.serviceId}</serverId>
  72. <dockerHost>${docker.dockerHost}</dockerHost>
  73. <imageName>docker.io/${project.artifactId}:${docker.image.version}</imageName>
  74. <dockerDirectory>${project.basedir}</dockerDirectory>
  75. <resources>
  76. <resource>
  77. <targetPath>/</targetPath>
  78. <directory>${project.build.directory}</directory>
  79. <include>${project.build.finalName}.jar</include>
  80. </resource>
  81. </resources>
  82. </configuration>
  83. </plugin>
  84. </plugins>
  85. </build>
  86. </project>