pom.xml 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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>jetlinks-components</artifactId>
  7. <groupId>org.jetlinks.community</groupId>
  8. <version>2.0.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>common-component</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.jetlinks</groupId>
  15. <artifactId>jetlinks-core</artifactId>
  16. <version>${jetlinks.version}</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.hswebframework.web</groupId>
  20. <artifactId>hsweb-authorization-api</artifactId>
  21. <version>${hsweb.framework.version}</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.hswebframework.web</groupId>
  25. <artifactId>hsweb-starter</artifactId>
  26. <version>${hsweb.framework.version}</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>io.micrometer</groupId>
  30. <artifactId>micrometer-core</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.jetlinks</groupId>
  34. <artifactId>reactor-ql</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework</groupId>
  38. <artifactId>spring-webflux</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>de.ruedigermoeller</groupId>
  42. <artifactId>fst</artifactId>
  43. <version>2.57</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.h2database</groupId>
  47. <artifactId>h2</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.github.ben-manes.caffeine</groupId>
  51. <artifactId>caffeine</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.cronutils</groupId>
  55. <artifactId>cron-utils</artifactId>
  56. <version>9.2.0</version>
  57. <scope>compile</scope>
  58. <exclusions>
  59. <exclusion>
  60. <groupId>org.glassfish</groupId>
  61. <artifactId>javax.el</artifactId>
  62. </exclusion>
  63. </exclusions>
  64. </dependency>
  65. </dependencies>
  66. </project>