物管理后端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

112 lines
3.6 KiB

  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. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.thing</groupId>
  8. <artifactId>modules</artifactId>
  9. <version>5.1</version>
  10. </parent>
  11. <groupId>com.thing.modules</groupId>
  12. <artifactId>quartz</artifactId>
  13. <packaging>jar</packaging>
  14. <name>ThingBI Server Modules quartz</name>
  15. <properties>
  16. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  17. <quartz.version>2.3.2</quartz.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>com.thing.common</groupId>
  22. <artifactId>core</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.thing.modules</groupId>
  26. <artifactId>thing</artifactId>
  27. <exclusions>
  28. <exclusion>
  29. <groupId>com.thing.common</groupId>
  30. <artifactId>core</artifactId>
  31. </exclusion>
  32. <exclusion>
  33. <groupId>com.thing.common</groupId>
  34. <artifactId>script</artifactId>
  35. </exclusion>
  36. </exclusions>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.thing.modules</groupId>
  40. <artifactId>calculation</artifactId>
  41. <exclusions>
  42. <exclusion>
  43. <groupId>com.thing.common</groupId>
  44. <artifactId>core</artifactId>
  45. </exclusion>
  46. </exclusions>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.thing.modules</groupId>
  50. <artifactId>report-analysis</artifactId>
  51. <exclusions>
  52. <exclusion>
  53. <groupId>com.thing.common</groupId>
  54. <artifactId>core</artifactId>
  55. </exclusion>
  56. <exclusion>
  57. <groupId>com.thing.common</groupId>
  58. <artifactId>script</artifactId>
  59. </exclusion>
  60. </exclusions>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.thing.common</groupId>
  64. <artifactId>script</artifactId>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.thing.modules</groupId>
  68. <artifactId>msg</artifactId>
  69. <exclusions>
  70. <exclusion>
  71. <groupId>com.thing.common</groupId>
  72. <artifactId>core</artifactId>
  73. </exclusion>
  74. </exclusions>
  75. </dependency>
  76. <dependency>
  77. <groupId>jakarta.validation</groupId>
  78. <artifactId>jakarta.validation-api</artifactId>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.quartz-scheduler</groupId>
  82. <artifactId>quartz</artifactId>
  83. <version>${quartz.version}</version>
  84. </dependency>
  85. <!-- <dependency>-->
  86. <!-- <groupId>org.aspectj</groupId>-->
  87. <!-- <artifactId>aspectj weaver</artifactId>-->
  88. <!-- </dependency>-->
  89. <!-- <dependency>-->
  90. <!-- <groupId>org.aspectj</groupId>-->
  91. <!-- <artifactId>aspectjrt</artifactId>-->
  92. <!-- </dependency>-->
  93. <!-- <dependency>-->
  94. <!-- <groupId>org.aspectj</groupId>-->
  95. <!-- <artifactId>aspectjtools</artifactId>-->
  96. <!-- </dependency>-->
  97. </dependencies>
  98. </project>