pom.xml 3.2 KB

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