pom.xml 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  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>com.alibaba</groupId>
  71. <artifactId>druid-spring-boot-starter</artifactId>
  72. <version>1.1.1</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>com.alibaba</groupId>
  76. <artifactId>fastjson</artifactId>
  77. <version>1.2.70</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>com.belerweb</groupId>
  81. <artifactId>pinyin4j</artifactId>
  82. <version>2.5.0</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.apache.shiro</groupId>
  86. <artifactId>shiro-spring</artifactId>
  87. <version>1.4.0</version>
  88. </dependency>
  89. <!-- redis -->
  90. <dependency>
  91. <groupId>org.springframework.boot</groupId>
  92. <artifactId>spring-boot-starter-data-redis</artifactId>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.crazycake</groupId>
  96. <artifactId>shiro-redis</artifactId>
  97. <version>3.2.3</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.apache.httpcomponents</groupId>
  101. <artifactId>httpclient</artifactId>
  102. </dependency>
  103. <!-- pinyin-->
  104. <dependency>
  105. <groupId>com.belerweb</groupId>
  106. <artifactId>pinyin4j</artifactId>
  107. <version>2.5.0</version>
  108. </dependency>
  109. <!-- QR -->
  110. <dependency>
  111. <groupId>com.google.zxing</groupId>
  112. <artifactId>core</artifactId>
  113. <version>3.3.0</version>
  114. </dependency>
  115. </dependencies>
  116. </project>