pom.xml 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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</artifactId>
  7. <groupId>org.jetlinks</groupId>
  8. <version>1.1.7-SNAPSHOT</version>
  9. <relativePath/>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>jetlinks-core</artifactId>
  13. <name>JetLinks Core</name>
  14. <description>JetLinks 核心包</description>
  15. <dependencies>
  16. <!-- https://mvnrepository.com/artifact/com.alibaba/fastjson -->
  17. <dependency>
  18. <groupId>com.alibaba</groupId>
  19. <artifactId>fastjson</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>io.projectreactor</groupId>
  23. <artifactId>reactor-core</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>io.projectreactor.addons</groupId>
  27. <artifactId>reactor-extra</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>io.projectreactor</groupId>
  31. <artifactId>reactor-test</artifactId>
  32. <scope>test</scope>
  33. </dependency>
  34. <dependency>
  35. <groupId>io.netty</groupId>
  36. <artifactId>netty-buffer</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.google.code.findbugs</groupId>
  40. <artifactId>jsr305</artifactId>
  41. <version>2.0.1</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>io.vavr</groupId>
  45. <artifactId>vavr</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>io.vavr</groupId>
  49. <artifactId>vavr-match</artifactId>
  50. <version>0.9.2</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.hswebframework.web</groupId>
  54. <artifactId>hsweb-core</artifactId>
  55. <version>${hsweb.framework.version}</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>commons-codec</groupId>
  59. <artifactId>commons-codec</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.eclipse.californium</groupId>
  63. <artifactId>californium-core</artifactId>
  64. <version>2.0.0</version>
  65. <optional>true</optional>
  66. </dependency>
  67. <dependency>
  68. <groupId>com.github.ben-manes.caffeine</groupId>
  69. <artifactId>guava</artifactId>
  70. <optional>true</optional>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.redisson</groupId>
  74. <artifactId>redisson-spring-boot-starter</artifactId>
  75. <version>3.13.6</version>
  76. <exclusions>
  77. <exclusion>
  78. <groupId>org.springframework.boot</groupId>
  79. <artifactId>spring-boot-starter-web</artifactId>
  80. </exclusion>
  81. </exclusions>
  82. <scope>provided</scope>
  83. </dependency>
  84. </dependencies>
  85. </project>