pom.xml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  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.0.0-RC-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>hsweb-authorization-basic</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.hswebframework.web</groupId>
  15. <artifactId>hsweb-authorization-api</artifactId>
  16. <version>${project.version}</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.hswebframework</groupId>
  20. <artifactId>hsweb-expands-script</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-aop</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-configuration-processor</artifactId>
  29. <optional>true</optional>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.springframework</groupId>
  33. <artifactId>spring-webmvc</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>commons-beanutils</groupId>
  37. <artifactId>commons-beanutils</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.hswebframework</groupId>
  41. <artifactId>hsweb-easy-orm-rdb</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.hswebframework.web</groupId>
  45. <artifactId>hsweb-spring-boot-starter</artifactId>
  46. <version>${project.version}</version>
  47. <scope>test</scope>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.hswebframework.web</groupId>
  51. <artifactId>hsweb-tests</artifactId>
  52. <version>${project.version}</version>
  53. <scope>test</scope>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.alibaba</groupId>
  57. <artifactId>druid</artifactId>
  58. <version>1.0.26</version>
  59. <scope>test</scope>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.h2database</groupId>
  63. <artifactId>h2</artifactId>
  64. <scope>test</scope>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.hswebframework.web</groupId>
  68. <artifactId>hsweb-commons-controller</artifactId>
  69. <version>${project.version}</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>javax.servlet</groupId>
  73. <artifactId>servlet-api</artifactId>
  74. <version>2.5</version>
  75. <scope>provided</scope>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.hswebframework.web</groupId>
  79. <artifactId>hsweb-commons-entity</artifactId>
  80. <version>${project.version}</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>junit</groupId>
  84. <artifactId>junit</artifactId>
  85. <scope>test</scope>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.redisson</groupId>
  89. <artifactId>redisson</artifactId>
  90. <scope>test</scope>
  91. </dependency>
  92. <dependency>
  93. <groupId>org.mockito</groupId>
  94. <artifactId>mockito-all</artifactId>
  95. <version>1.10.19</version>
  96. <scope>test</scope>
  97. </dependency>
  98. </dependencies>
  99. </project>