pom.xml 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~ Copyright (c) 2020 pig4cloud Authors. All Rights Reserved.
  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. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
  18. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  19. <modelVersion>4.0.0</modelVersion>
  20. <parent>
  21. <groupId>com.pig4cloud</groupId>
  22. <artifactId>pig</artifactId>
  23. <version>3.6.7</version>
  24. </parent>
  25. <artifactId>pig-auth</artifactId>
  26. <packaging>jar</packaging>
  27. <description>pig 认证授权中心,基于 spring security oAuth2</description>
  28. <dependencies>
  29. <dependency>
  30. <groupId>io.jsonwebtoken</groupId>
  31. <artifactId>jjwt</artifactId>
  32. <version>0.7.0</version>
  33. </dependency>
  34. <!--注册中心客户端-->
  35. <dependency>
  36. <groupId>com.alibaba.cloud</groupId>
  37. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  38. </dependency>
  39. <!--配置中心客户端-->
  40. <dependency>
  41. <groupId>com.alibaba.cloud</groupId>
  42. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  43. </dependency>
  44. <!--断路器依赖-->
  45. <dependency>
  46. <groupId>com.pig4cloud</groupId>
  47. <artifactId>pig-common-feign</artifactId>
  48. </dependency>
  49. <!--upms api、model 模块-->
  50. <dependency>
  51. <groupId>com.pig4cloud</groupId>
  52. <artifactId>pig-upms-api</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.pig4cloud</groupId>
  56. <artifactId>pig-common-security</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.springframework.boot</groupId>
  60. <artifactId>spring-boot-starter-security</artifactId>
  61. </dependency>
  62. <!--freemarker-->
  63. <dependency>
  64. <groupId>org.springframework.boot</groupId>
  65. <artifactId>spring-boot-starter-freemarker</artifactId>
  66. </dependency>
  67. <!--undertow容器-->
  68. <dependency>
  69. <groupId>org.springframework.boot</groupId>
  70. <artifactId>spring-boot-starter-undertow</artifactId>
  71. </dependency>
  72. <!-- log -->
  73. <dependency>
  74. <groupId>com.pig4cloud</groupId>
  75. <artifactId>pig-common-log</artifactId>
  76. </dependency>
  77. </dependencies>
  78. <build>
  79. <plugins>
  80. <plugin>
  81. <groupId>org.springframework.boot</groupId>
  82. <artifactId>spring-boot-maven-plugin</artifactId>
  83. </plugin>
  84. <plugin>
  85. <groupId>io.fabric8</groupId>
  86. <artifactId>docker-maven-plugin</artifactId>
  87. </plugin>
  88. </plugins>
  89. </build>
  90. </project>