pom.xml 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  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. <parent>
  6. <artifactId>ruoyi</artifactId>
  7. <groupId>com.ruoyi</groupId>
  8. <version>3.3.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <packaging>jar</packaging>
  12. <artifactId>student</artifactId>
  13. <description>
  14. web服务入口
  15. </description>
  16. <properties>
  17. <docker.dockerHost>http://172.16.90.64:22375</docker.dockerHost>
  18. <docker.serviceId>DockerHub</docker.serviceId>
  19. <docker.image.version>1.0</docker.image.version>
  20. </properties>
  21. <dependencies>
  22. <!-- spring-boot-devtools -->
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-devtools</artifactId>
  26. <optional>true</optional> <!-- 表示依赖不会传递 -->
  27. </dependency>
  28. <!-- swagger2-->
  29. <dependency>
  30. <groupId>io.springfox</groupId>
  31. <artifactId>springfox-swagger2</artifactId>
  32. </dependency>
  33. <!-- knife4j ui-->
  34. <dependency>
  35. <groupId>com.github.xiaoymin</groupId>
  36. <artifactId>knife4j-spring-ui</artifactId>
  37. <version>2.0.8</version>
  38. </dependency>
  39. <!--防止进入swagger页面报类型转换错误,排除2.9.2中的引用,手动增加1.5.21版本-->
  40. <dependency>
  41. <groupId>io.swagger</groupId>
  42. <artifactId>swagger-annotations</artifactId>
  43. <version>1.5.21</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>io.swagger</groupId>
  47. <artifactId>swagger-models</artifactId>
  48. <version>1.5.21</version>
  49. </dependency>
  50. <!-- swagger2-UI-->
  51. <dependency>
  52. <groupId>io.springfox</groupId>
  53. <artifactId>springfox-swagger-ui</artifactId>
  54. </dependency>
  55. <!-- Mysql驱动包 -->
  56. <dependency>
  57. <groupId>mysql</groupId>
  58. <artifactId>mysql-connector-java</artifactId>
  59. </dependency>
  60. <!-- 核心模块-->
  61. <dependency>
  62. <groupId>com.ruoyi</groupId>
  63. <artifactId>ruoyi-framework</artifactId>
  64. </dependency>
  65. <!-- 定时任务-->
  66. <dependency>
  67. <groupId>com.ruoyi</groupId>
  68. <artifactId>ruoyi-quartz</artifactId>
  69. </dependency>
  70. <!-- 代码生成-->
  71. <dependency>
  72. <groupId>com.ruoyi</groupId>
  73. <artifactId>ruoyi-generator</artifactId>
  74. </dependency>
  75. </dependencies>
  76. <build>
  77. <plugins>
  78. <plugin>
  79. <groupId>org.springframework.boot</groupId>
  80. <artifactId>spring-boot-maven-plugin</artifactId>
  81. <version>2.1.1.RELEASE</version>
  82. <configuration>
  83. <fork>true</fork> <!-- 如果没有该配置,devtools不会生效 -->
  84. </configuration>
  85. <executions>
  86. <execution>
  87. <goals>
  88. <goal>repackage</goal>
  89. </goals>
  90. </execution>
  91. </executions>
  92. </plugin>
  93. <plugin>
  94. <groupId>org.apache.maven.plugins</groupId>
  95. <artifactId>maven-war-plugin</artifactId>
  96. <version>3.1.0</version>
  97. <configuration>
  98. <failOnMissingWebXml>false</failOnMissingWebXml>
  99. <warName>${project.artifactId}</warName>
  100. </configuration>
  101. </plugin>
  102. <plugin>
  103. <groupId>com.spotify</groupId>
  104. <artifactId>docker-maven-plugin</artifactId>
  105. <version>1.0.0</version>
  106. <configuration>
  107. <serverId>${docker.serviceId}</serverId>
  108. <dockerHost>${docker.dockerHost}</dockerHost>
  109. <imageName>docker.io/${project.artifactId}:${docker.image.version}</imageName>
  110. <dockerDirectory>${project.basedir}/src/main/docker</dockerDirectory>
  111. <resources>
  112. <resource>
  113. <targetPath>/</targetPath>
  114. <directory>${project.build.directory}</directory>
  115. <include>${project.build.finalName}.jar</include>
  116. </resource>
  117. </resources>
  118. </configuration>
  119. </plugin>
  120. </plugins>
  121. <finalName>${project.artifactId}</finalName>
  122. </build>
  123. </project>