pom.xml 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  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. <groupId>com.bosshand.virgo</groupId>
  6. <artifactId>core</artifactId>
  7. <!-- Inherit defaults from Spring Boot -->
  8. <parent>
  9. <groupId>com.bosshand</groupId>
  10. <artifactId>virgo</artifactId>
  11. <version>0.0.1-SNAPSHOT</version>
  12. <relativePath>../pom.xml</relativePath>
  13. </parent>
  14. <properties>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  17. <java.version>1.8</java.version>
  18. <shiro.spring.version>1.4.0</shiro.spring.version>
  19. <jwt.auth0.version>3.2.0</jwt.auth0.version>
  20. </properties>
  21. <!-- Add typical dependencies for a web application -->
  22. <dependencies>
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter-web</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-actuator</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.springframework.cloud</groupId>
  33. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-devtools</artifactId>
  38. <scope>runtime</scope>
  39. <optional>true</optional>
  40. </dependency>
  41. <dependency>
  42. <groupId>io.springfox</groupId>
  43. <artifactId>springfox-swagger2</artifactId>
  44. <version>2.4.0</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>io.springfox</groupId>
  48. <artifactId>springfox-swagger-ui</artifactId>
  49. <version>2.4.0</version>
  50. </dependency>
  51. <!-- springboot,mybatis 整合包 -->
  52. <dependency>
  53. <groupId>org.mybatis.spring.boot</groupId>
  54. <artifactId>mybatis-spring-boot-starter</artifactId>
  55. <version>2.1.0</version>
  56. </dependency>
  57. <!-- mysql 驱动包 -->
  58. <dependency>
  59. <groupId>mysql</groupId>
  60. <artifactId>mysql-connector-java</artifactId>
  61. </dependency>
  62. <!--
  63. <dependency>
  64. <groupId>com.alibaba</groupId>
  65. <artifactId>druid</artifactId>
  66. <version>${druid.version}</version>
  67. </dependency>
  68. -->
  69. <dependency>
  70. <groupId>net.sf.json-lib</groupId>
  71. <artifactId>json-lib</artifactId>
  72. <version>2.4</version>
  73. <classifier>jdk15</classifier>
  74. </dependency>
  75. <dependency>
  76. <groupId>com.alibaba</groupId>
  77. <artifactId>druid-spring-boot-starter</artifactId>
  78. <version>1.1.1</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>com.alibaba</groupId>
  82. <artifactId>fastjson</artifactId>
  83. <version>1.2.70</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>com.belerweb</groupId>
  87. <artifactId>pinyin4j</artifactId>
  88. <version>2.5.0</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.apache.shiro</groupId>
  92. <artifactId>shiro-spring</artifactId>
  93. <version>1.4.0</version>
  94. </dependency>
  95. <!-- redis -->
  96. <dependency>
  97. <groupId>org.springframework.boot</groupId>
  98. <artifactId>spring-boot-starter-data-redis</artifactId>
  99. </dependency>
  100. <dependency>
  101. <groupId>org.crazycake</groupId>
  102. <artifactId>shiro-redis</artifactId>
  103. <version>3.2.3</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.apache.httpcomponents</groupId>
  107. <artifactId>httpclient</artifactId>
  108. </dependency>
  109. <!-- pinyin-->
  110. <dependency>
  111. <groupId>com.belerweb</groupId>
  112. <artifactId>pinyin4j</artifactId>
  113. <version>2.5.0</version>
  114. </dependency>
  115. <!-- QR -->
  116. <dependency>
  117. <groupId>com.google.zxing</groupId>
  118. <artifactId>core</artifactId>
  119. <version>3.3.0</version>
  120. </dependency>
  121. <dependency>
  122. <groupId>cn.hutool</groupId>
  123. <artifactId>hutool-all</artifactId>
  124. <version>5.8.5</version>
  125. </dependency>
  126. </dependencies>
  127. </project>