pom.xml 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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-authorization</artifactId>
  7. <groupId>org.hswebframework.web</groupId>
  8. <version>3.1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>hsweb-authorization-basic</artifactId>
  12. <description>实现hsweb-authorization-api的相关接口以及使用aop实现RBAC和数据权限的控制</description>
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.hswebframework.web</groupId>
  16. <artifactId>hsweb-authorization-api</artifactId>
  17. <version>${project.version}</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.hswebframework</groupId>
  21. <artifactId>hsweb-expands-script</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter-aop</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-configuration-processor</artifactId>
  30. <optional>true</optional>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework</groupId>
  34. <artifactId>spring-webmvc</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>commons-beanutils</groupId>
  38. <artifactId>commons-beanutils</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.hswebframework</groupId>
  42. <artifactId>hsweb-easy-orm-rdb</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.hswebframework.web</groupId>
  46. <artifactId>hsweb-commons-controller</artifactId>
  47. <version>${project.version}</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>javax.servlet</groupId>
  51. <artifactId>javax.servlet-api</artifactId>
  52. <scope>provided</scope>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.hswebframework.web</groupId>
  56. <artifactId>hsweb-commons-entity</artifactId>
  57. <version>${project.version}</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>junit</groupId>
  61. <artifactId>junit</artifactId>
  62. <scope>test</scope>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.redisson</groupId>
  66. <artifactId>redisson</artifactId>
  67. <scope>test</scope>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.mockito</groupId>
  71. <artifactId>mockito-all</artifactId>
  72. <version>1.10.19</version>
  73. <scope>test</scope>
  74. </dependency>
  75. </dependencies>
  76. </project>