pom.xml 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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>hsweb-system-authorization</artifactId>
  7. <groupId>org.hswebframework.web</groupId>
  8. <version>4.0.15</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>hsweb-system-authorization-default</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.hswebframework.web</groupId>
  15. <artifactId>hsweb-system-authorization-api</artifactId>
  16. <version>${project.version}</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.hswebframework.web</groupId>
  20. <artifactId>hsweb-commons-crud</artifactId>
  21. <version>${project.version}</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.hswebframework.web</groupId>
  25. <artifactId>hsweb-concurrent-cache</artifactId>
  26. <version>${project.version}</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>commons-codec</groupId>
  30. <artifactId>commons-codec</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework</groupId>
  34. <artifactId>spring-aspects</artifactId>
  35. <scope>test</scope>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-test</artifactId>
  40. <scope>test</scope>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-starter-jdbc</artifactId>
  45. <scope>test</scope>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.h2database</groupId>
  49. <artifactId>h2</artifactId>
  50. <scope>test</scope>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.springframework.boot</groupId>
  54. <artifactId>spring-boot-starter-data-r2dbc</artifactId>
  55. <scope>test</scope>
  56. </dependency>
  57. <!-- https://mvnrepository.com/artifact/com.zaxxer/HikariCP -->
  58. <dependency>
  59. <groupId>com.zaxxer</groupId>
  60. <artifactId>HikariCP</artifactId>
  61. <version>3.4.1</version>
  62. <scope>test</scope>
  63. </dependency>
  64. <dependency>
  65. <groupId>io.r2dbc</groupId>
  66. <artifactId>r2dbc-h2</artifactId>
  67. <scope>test</scope>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.hswebframework.web</groupId>
  71. <artifactId>hsweb-authorization-api</artifactId>
  72. <version>${project.version}</version>
  73. <scope>compile</scope>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.springframework.boot</groupId>
  77. <artifactId>spring-boot-starter-data-redis-reactive</artifactId>
  78. <scope>test</scope>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.springframework.boot</groupId>
  82. <artifactId>spring-boot-starter-webflux</artifactId>
  83. <scope>test</scope>
  84. </dependency>
  85. </dependencies>
  86. </project>