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