pom.xml 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.unis.springcloud</groupId>
  7. <artifactId>parent</artifactId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <groupId>com.unis</groupId>
  11. <artifactId>auth-manage</artifactId>
  12. <version>0.0.1-SNAPSHOT</version>
  13. <name>auth-manage</name>
  14. <description>Auth manage project for Spring Boot</description>
  15. <properties>
  16. <skipTests>true</skipTests>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>org.springframework.cloud</groupId>
  21. <artifactId>spring-cloud-config-client</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>io.github.openfeign.form</groupId>
  25. <artifactId>feign-form-spring</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>io.github.openfeign.form</groupId>
  29. <artifactId>feign-form</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.springframework.cloud</groupId>
  33. <artifactId>spring-cloud-starter-openfeign</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springframework.cloud</groupId>
  37. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-starter-web</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.projectlombok</groupId>
  45. <artifactId>lombok</artifactId>
  46. <optional>true</optional>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-starter-test</artifactId>
  51. <scope>test</scope>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.alibaba</groupId>
  55. <artifactId>fastjson</artifactId>
  56. </dependency>
  57. <!-- https://mvnrepository.com/artifact/io.springfox/springfox-swagger2 -->
  58. <dependency>
  59. <groupId>com.trs</groupId>
  60. <artifactId>trsids-agent</artifactId>
  61. <version>5.0.0</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.trs</groupId>
  65. <artifactId>trsids-filter</artifactId>
  66. <version>5.0.0</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>commons-httpclient</groupId>
  70. <artifactId>commons-httpclient</artifactId>
  71. <version>3.1</version>
  72. <exclusions>
  73. <exclusion>
  74. <groupId>commons-logging</groupId>
  75. <artifactId>commons-logging</artifactId>
  76. </exclusion>
  77. </exclusions>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.slf4j</groupId>
  81. <artifactId>log4j-over-slf4j</artifactId>
  82. <version>1.7.21</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>com.unis.springcloud</groupId>
  86. <artifactId>common</artifactId>
  87. <version>1.0.0</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.apache.httpcomponents</groupId>
  91. <artifactId>httpclient</artifactId>
  92. <version>4.3.6</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.springframework.boot</groupId>
  96. <artifactId>spring-boot-starter-data-redis</artifactId>
  97. </dependency>
  98. </dependencies>
  99. <build>
  100. <plugins>
  101. <plugin>
  102. <groupId>org.springframework.boot</groupId>
  103. <artifactId>spring-boot-maven-plugin</artifactId>
  104. </plugin>
  105. </plugins>
  106. <finalName>auth</finalName>
  107. </build>
  108. <repositories>
  109. <repository>
  110. <id>spring-milestones</id>
  111. <name>Spring Milestones</name>
  112. <url>https://repo.spring.io/milestone</url>
  113. <snapshots>
  114. <enabled>false</enabled>
  115. </snapshots>
  116. </repository>
  117. </repositories>
  118. </project>