pom.xml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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>jeecg-visual</artifactId>
  7. <groupId>org.jeecgframework.boot3</groupId>
  8. <version>3.9.1</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>jeecg-cloud-xxljob</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.springframework.boot</groupId>
  15. <artifactId>spring-boot-starter-web</artifactId>
  16. </dependency>
  17. <!-- starter-test:junit + spring-test + mockito -->
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-starter-test</artifactId>
  21. <scope>test</scope>
  22. </dependency>
  23. <!-- freemarker-starter -->
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-freemarker</artifactId>
  27. </dependency>
  28. <!-- starter-actuator -->
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-actuator</artifactId>
  32. </dependency>
  33. <!-- mybatis-starter:mybatis + mybatis-spring + hikari(default) -->
  34. <dependency>
  35. <groupId>org.mybatis.spring.boot</groupId>
  36. <artifactId>mybatis-spring-boot-starter</artifactId>
  37. <version>3.0.3</version>
  38. </dependency>
  39. <!-- mysql -->
  40. <dependency>
  41. <groupId>mysql</groupId>
  42. <artifactId>mysql-connector-java</artifactId>
  43. <version>${mysql-connector-java.version}</version>
  44. <scope>runtime</scope>
  45. </dependency>
  46. <!-- mail-starter -->
  47. <dependency>
  48. <groupId>org.springframework.boot</groupId>
  49. <artifactId>spring-boot-starter-mail</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.xuxueli</groupId>
  53. <artifactId>xxl-job-core</artifactId>
  54. <version>${xxl-job-core.version}</version>
  55. </dependency>
  56. </dependencies>
  57. <!-- update-begin-author:taoyan date:20210226 for:docker部署报错:no main manifest attribute -->
  58. <build>
  59. <plugins>
  60. <plugin>
  61. <groupId>org.springframework.boot</groupId>
  62. <artifactId>spring-boot-maven-plugin</artifactId>
  63. <executions>
  64. <execution>
  65. <phase>package</phase>
  66. <goals>
  67. <goal>repackage</goal>
  68. </goals>
  69. </execution>
  70. </executions>
  71. <configuration>
  72. <includeSystemScope>true</includeSystemScope>
  73. <mainClass>com.xxl.job.admin.XxlJobAdminApplication</mainClass>
  74. </configuration>
  75. </plugin>
  76. <plugin>
  77. <groupId>org.apache.maven.plugins</groupId>
  78. <artifactId>maven-resources-plugin</artifactId>
  79. <configuration>
  80. <nonFilteredFileExtensions>
  81. <nonFilteredFileExtension>otf</nonFilteredFileExtension>
  82. <nonFilteredFileExtension>ttf</nonFilteredFileExtension>
  83. <nonFilteredFileExtension>woff</nonFilteredFileExtension>
  84. <nonFilteredFileExtension>woff2</nonFilteredFileExtension>
  85. <nonFilteredFileExtension>eot</nonFilteredFileExtension>
  86. </nonFilteredFileExtensions>
  87. </configuration>
  88. </plugin>
  89. </plugins>
  90. </build>
  91. <!-- update-end-author:taoyan date:20210226 for:docker部署报错:no main manifest attribute -->
  92. </project>