pom.xml 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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.0-SNAPSHOT</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>commons-codec</groupId>
  25. <artifactId>commons-codec</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.springframework</groupId>
  29. <artifactId>spring-aspects</artifactId>
  30. <scope>test</scope>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-test</artifactId>
  35. <scope>test</scope>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-jdbc</artifactId>
  40. <scope>test</scope>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.h2database</groupId>
  44. <artifactId>h2</artifactId>
  45. <scope>test</scope>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.springframework.boot.experimental</groupId>
  49. <artifactId>spring-boot-starter-data-r2dbc</artifactId>
  50. <scope>test</scope>
  51. </dependency>
  52. <!-- https://mvnrepository.com/artifact/com.zaxxer/HikariCP -->
  53. <dependency>
  54. <groupId>com.zaxxer</groupId>
  55. <artifactId>HikariCP</artifactId>
  56. <version>3.4.1</version>
  57. <scope>test</scope>
  58. </dependency>
  59. <dependency>
  60. <groupId>io.r2dbc</groupId>
  61. <artifactId>r2dbc-h2</artifactId>
  62. <scope>test</scope>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.hswebframework.web</groupId>
  66. <artifactId>hsweb-authorization-api</artifactId>
  67. <version>${project.version}</version>
  68. <scope>compile</scope>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.springframework.boot</groupId>
  72. <artifactId>spring-boot-starter-data-redis-reactive</artifactId>
  73. <scope>test</scope>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.springframework.boot</groupId>
  77. <artifactId>spring-boot-starter-webflux</artifactId>
  78. <scope>test</scope>
  79. </dependency>
  80. </dependencies>
  81. </project>