pom.xml 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~ Copyright 2016 http://www.hswebframework.org
  4. ~
  5. ~ Licensed under the Apache License, Version 2.0 (the "License");
  6. ~ you may not use this file except in compliance with the License.
  7. ~ You may obtain a copy of the License at
  8. ~
  9. ~ http://www.apache.org/licenses/LICENSE-2.0
  10. ~
  11. ~ Unless required by applicable law or agreed to in writing, software
  12. ~ distributed under the License is distributed on an "AS IS" BASIS,
  13. ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. ~ See the License for the specific language governing permissions and
  15. ~ limitations under the License.
  16. ~
  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-examples-oauth2</artifactId>
  24. <groupId>org.hswebframework.web</groupId>
  25. <version>3.0-SNAPSHOT</version>
  26. </parent>
  27. <modelVersion>4.0.0</modelVersion>
  28. <artifactId>hsweb-examples-oauth2-server</artifactId>
  29. <build>
  30. <plugins>
  31. <plugin>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-maven-plugin</artifactId>
  34. <version>${spring.boot.version}</version>
  35. <configuration>
  36. <mainClass>org.hswebframework.web.example.oauth2.org.hswebframework.web.example.oauth2.OAuth2ServerApplication</mainClass>
  37. <layout>ZIP</layout>
  38. </configuration>
  39. <executions>
  40. <execution>
  41. <goals>
  42. <goal>repackage</goal>
  43. </goals>
  44. </execution>
  45. </executions>
  46. </plugin>
  47. </plugins>
  48. </build>
  49. <dependencies>
  50. <dependency>
  51. <groupId>org.codehaus.groovy</groupId>
  52. <artifactId>groovy-all</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.h2database</groupId>
  56. <artifactId>h2</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.alibaba</groupId>
  60. <artifactId>druid</artifactId>
  61. <version>1.0.26</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>ch.qos.logback</groupId>
  65. <artifactId>logback-classic</artifactId>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.slf4j</groupId>
  69. <artifactId>slf4j-api</artifactId>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.springframework.boot</groupId>
  73. <artifactId>spring-boot-starter-jdbc</artifactId>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.springframework.boot</groupId>
  77. <artifactId>spring-boot-starter-logging</artifactId>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.hswebframework.web</groupId>
  81. <artifactId>hsweb-spring-boot-starter</artifactId>
  82. <version>${project.version}</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.hswebframework.web</groupId>
  86. <artifactId>hsweb-system-authorization-starter</artifactId>
  87. <version>${project.version}</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.hswebframework.web</groupId>
  91. <artifactId>hsweb-authorization-shiro</artifactId>
  92. <version>${project.version}</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.hswebframework.web</groupId>
  96. <artifactId>hsweb-system-oauth2-server-starter</artifactId>
  97. <version>${project.version}</version>
  98. </dependency>
  99. </dependencies>
  100. </project>