pom.xml 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>house-parent</artifactId>
  7. <groupId>com.ljq.house</groupId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>house-auth</artifactId>
  12. <packaging>jar</packaging>
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.springframework.boot</groupId>
  16. <artifactId>spring-boot-starter-data-redis</artifactId>
  17. <exclusions>
  18. <exclusion>
  19. <groupId>io.lettuce</groupId>
  20. <artifactId>lettuce-core</artifactId>
  21. </exclusion>
  22. <exclusion>
  23. <groupId>org.springframework.data</groupId>
  24. <artifactId>spring-data-redis</artifactId>
  25. </exclusion>
  26. </exclusions>
  27. </dependency>
  28. <dependency>
  29. <groupId>redis.clients</groupId>
  30. <artifactId>jedis</artifactId>
  31. <exclusions>
  32. <exclusion>
  33. <artifactId>slf4j-api</artifactId>
  34. <groupId>org.slf4j</groupId>
  35. </exclusion>
  36. </exclusions>
  37. </dependency>
  38. <!-- <dependency>
  39. <groupId>org.apache.shiro</groupId>
  40. <artifactId>shiro-spring</artifactId>
  41. <version>1.3.2</version>
  42. <exclusions>
  43. <exclusion>
  44. <groupId>commons-beanutils</groupId>
  45. <artifactId>commons-beanutils</artifactId>
  46. </exclusion>
  47. </exclusions>
  48. </dependency>-->
  49. <dependency>
  50. <groupId>org.apache.maven.surefire</groupId>
  51. <artifactId>surefire-booter</artifactId>
  52. <version>2.22.1</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.apache.commons</groupId>
  56. <artifactId>commons-lang3</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.ljq.house</groupId>
  60. <artifactId>house-common</artifactId>
  61. <version>0.0.1-SNAPSHOT</version>
  62. <scope>compile</scope>
  63. <exclusions>
  64. <exclusion>
  65. <groupId>com.alibaba</groupId>
  66. <artifactId>fastjson</artifactId>
  67. </exclusion>
  68. </exclusions>
  69. </dependency>
  70. <dependency>
  71. <groupId>io.jsonwebtoken</groupId>
  72. <artifactId>jjwt</artifactId>
  73. <version>0.6.0</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>com.auth0</groupId>
  77. <artifactId>java-jwt</artifactId>
  78. <version>3.4.0</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>com.alibaba</groupId>
  82. <artifactId>fastjson</artifactId>
  83. <version>1.2.49</version>
  84. </dependency>
  85. <!-- <dependency>
  86. <groupId>com.ljq.house</groupId>
  87. <artifactId>house-biz</artifactId>
  88. <version>0.0.1-SNAPSHOT</version>
  89. <scope>compile</scope>
  90. </dependency>-->
  91. <dependency>
  92. <groupId>org.bouncycastle</groupId>
  93. <artifactId>bcprov-jdk16</artifactId>
  94. <version>1.46</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>net.sf.json-lib</groupId>
  98. <artifactId>json-lib</artifactId>
  99. <version>2.2.3</version>
  100. <classifier>jdk15</classifier>
  101. <exclusions>
  102. <exclusion>
  103. <groupId>commons-beanutils</groupId>
  104. <artifactId>commons-beanutils</artifactId>
  105. </exclusion>
  106. <exclusion>
  107. <groupId>commons-collections</groupId>
  108. <artifactId>commons-collections</artifactId>
  109. </exclusion>
  110. <exclusion>
  111. <groupId>commons-logging</groupId>
  112. <artifactId>commons-logging</artifactId>
  113. </exclusion>
  114. <exclusion>
  115. <groupId>commons-lang</groupId>
  116. <artifactId>commons-lang</artifactId>
  117. </exclusion>
  118. </exclusions>
  119. </dependency>
  120. </dependencies>
  121. </project>