pom.xml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>cc.mrbird</groupId>
  7. <artifactId>febs-server</artifactId>
  8. <version>2.0-RELEASE</version>
  9. <relativePath>../pom.xml</relativePath>
  10. </parent>
  11. <artifactId>febs-server-job</artifactId>
  12. <name>FEBS-Server-Job</name>
  13. <description>FEBS-Server-Job任务调度服务</description>
  14. <properties>
  15. <febs-cloud.version>2.0-RELEASE</febs-cloud.version>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>cc.mrbird</groupId>
  20. <artifactId>febs-common-datasource-starter</artifactId>
  21. <version>${febs-cloud.version}</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>cc.mrbird</groupId>
  25. <artifactId>febs-common-doc-starter</artifactId>
  26. <version>${febs-cloud.version}</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>cc.mrbird</groupId>
  30. <artifactId>febs-common-security-starter</artifactId>
  31. <version>${febs-cloud.version}</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework</groupId>
  35. <artifactId>spring-context-support</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.quartz-scheduler</groupId>
  39. <artifactId>quartz</artifactId>
  40. </dependency>
  41. </dependencies>
  42. <build>
  43. <plugins>
  44. <plugin>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-maven-plugin</artifactId>
  47. </plugin>
  48. </plugins>
  49. </build>
  50. </project>