pom.xml 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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.boot</groupId>
  8. <version>3.5.0</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>2.1.3</version>
  38. </dependency>
  39. <!-- mysql -->
  40. <dependency>
  41. <groupId>mysql</groupId>
  42. <artifactId>mysql-connector-java</artifactId>
  43. </dependency>
  44. <!-- mail-starter -->
  45. <dependency>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-starter-mail</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.xuxueli</groupId>
  51. <artifactId>xxl-job-core</artifactId>
  52. <version>${xxl-job-core.version}</version>
  53. </dependency>
  54. </dependencies>
  55. <!-- update-begin-author:taoyan date:20210226 for:docker部署报错:no main manifest attribute -->
  56. <build>
  57. <plugins>
  58. <plugin>
  59. <groupId>org.springframework.boot</groupId>
  60. <artifactId>spring-boot-maven-plugin</artifactId>
  61. <executions>
  62. <execution>
  63. <phase>package</phase>
  64. <goals>
  65. <goal>repackage</goal>
  66. </goals>
  67. </execution>
  68. </executions>
  69. <configuration>
  70. <includeSystemScope>true</includeSystemScope>
  71. <mainClass>com.xxl.job.admin.XxlJobAdminApplication</mainClass>
  72. </configuration>
  73. </plugin>
  74. </plugins>
  75. </build>
  76. <!-- update-end-author:taoyan date:20210226 for:docker部署报错:no main manifest attribute -->
  77. </project>