pom.xml 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  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. <groupId>com.bosshand.virgo</groupId>
  6. <artifactId>ringzle</artifactId>
  7. <!-- Inherit defaults from Spring Boot -->
  8. <parent>
  9. <groupId>com.bosshand</groupId>
  10. <artifactId>virgo</artifactId>
  11. <version>0.0.1-SNAPSHOT</version>
  12. <relativePath>../pom.xml</relativePath>
  13. </parent>
  14. <!-- Add typical dependencies for a web application -->
  15. <dependencies>
  16. <dependency>
  17. <groupId>org.springframework.boot</groupId>
  18. <artifactId>spring-boot-starter-web</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.springframework.cloud</groupId>
  22. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.bosshand.virgo</groupId>
  26. <artifactId>core</artifactId>
  27. <version>0.0.1-SNAPSHOT</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.squareup.okhttp3</groupId>
  31. <artifactId>okhttp</artifactId>
  32. <version>3.6.0</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework.cloud</groupId>
  36. <artifactId>spring-cloud-starter-openfeign</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>cn.hutool</groupId>
  40. <artifactId>hutool-all</artifactId>
  41. <version>5.8.5</version>
  42. </dependency>
  43. <!--规则引擎-->
  44. <dependency>
  45. <groupId>org.jeasy</groupId>
  46. <artifactId>easy-rules-core</artifactId>
  47. <version>4.1.0</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.jeasy</groupId>
  51. <artifactId>easy-rules-mvel</artifactId>
  52. <version>3.4.0</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.jeasy</groupId>
  56. <artifactId>easy-rules-spel</artifactId>
  57. <version>3.4.0</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.eclipse.paho</groupId>
  61. <artifactId>org.eclipse.paho.client.mqttv3</artifactId>
  62. <version>1.2.0</version>
  63. </dependency>
  64. <!--web模块的启动器 -->
  65. <dependency>
  66. <groupId>org.springframework.boot</groupId>
  67. <artifactId>spring-boot-starter-web</artifactId>
  68. </dependency>
  69. <!-- netty依赖 springboot2.x⾃动导⼊版本 -->
  70. <dependency>
  71. <groupId>io.netty</groupId>
  72. <artifactId>netty-all</artifactId>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.springframework.boot</groupId>
  76. <artifactId>spring-boot-starter-websocket</artifactId>
  77. </dependency>
  78. </dependencies>
  79. <!-- Package as an executable jar -->
  80. <build>
  81. <plugins>
  82. <plugin>
  83. <groupId>org.springframework.boot</groupId>
  84. <artifactId>spring-boot-maven-plugin</artifactId>
  85. </plugin>
  86. </plugins>
  87. </build>
  88. </project>