pom.xml 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~ /*
  4. ~ * Copyright 2016 http://www.hswebframework.org
  5. ~ *
  6. ~ * Licensed under the Apache License, Version 2.0 (the "License");
  7. ~ * you may not use this file except in compliance with the License.
  8. ~ * You may obtain a copy of the License at
  9. ~ *
  10. ~ * http://www.apache.org/licenses/LICENSE-2.0
  11. ~ *
  12. ~ * Unless required by applicable law or agreed to in writing, software
  13. ~ * distributed under the License is distributed on an "AS IS" BASIS,
  14. ~ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. ~ * See the License for the specific language governing permissions and
  16. ~ * limitations under the License.
  17. ~ */
  18. -->
  19. <project xmlns="http://maven.apache.org/POM/4.0.0"
  20. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  21. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  22. <parent>
  23. <artifactId>hsweb-authorization</artifactId>
  24. <groupId>org.hswebframework.web</groupId>
  25. <version>3.0-SNAPSHOT</version>
  26. </parent>
  27. <modelVersion>4.0.0</modelVersion>
  28. <artifactId>hsweb-authorization-shiro</artifactId>
  29. <properties>
  30. <shiro.version>1.3.2</shiro.version>
  31. </properties>
  32. <dependencies>
  33. <dependency>
  34. <groupId>${project.parent.groupId}</groupId>
  35. <artifactId>hsweb-authorization-api</artifactId>
  36. <version>${project.parent.version}</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.hswebframework.web</groupId>
  40. <artifactId>hsweb-commons-controller</artifactId>
  41. <version>${project.version}</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.apache.shiro</groupId>
  45. <artifactId>shiro-core</artifactId>
  46. <version>${shiro.version}</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.apache.shiro</groupId>
  50. <artifactId>shiro-spring</artifactId>
  51. <version>${shiro.version}</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.springframework.boot</groupId>
  55. <artifactId>spring-boot-starter</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.aspectj</groupId>
  59. <artifactId>aspectjweaver</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.slf4j</groupId>
  63. <artifactId>slf4j-api</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.springframework.boot</groupId>
  67. <artifactId>spring-boot-starter-web</artifactId>
  68. <optional>true</optional>
  69. </dependency>
  70. <dependency>
  71. <groupId>javax.servlet</groupId>
  72. <artifactId>servlet-api</artifactId>
  73. <version>2.5</version>
  74. <optional>true</optional>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.hswebframework.web</groupId>
  78. <artifactId>hsweb-authorization-oauth2-client</artifactId>
  79. <version>${project.version}</version>
  80. <optional>true</optional>
  81. </dependency>
  82. </dependencies>
  83. </project>