pom.xml 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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.6.3</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. <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. </plugins>
  77. </build>
  78. <!-- update-end-author:taoyan date:20210226 for:docker部署报错:no main manifest attribute -->
  79. </project>