pom.xml 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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>huimv-goldpig</artifactId>
  7. <groupId>com.huimv</groupId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>huimv-goldpig-admin</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.auth0</groupId>
  15. <artifactId>java-jwt</artifactId>
  16. <version>3.3.0</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>com.belerweb</groupId>
  20. <artifactId>pinyin4j</artifactId>
  21. <version>2.5.1</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>io.jsonwebtoken</groupId>
  25. <artifactId>jjwt</artifactId>
  26. <version>0.9.1</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>net.sf.json-lib</groupId>
  30. <artifactId>json-lib</artifactId>
  31. <version>2.2.3</version>
  32. <classifier>jdk15</classifier>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.alibaba</groupId>
  36. <artifactId>fastjson</artifactId>
  37. <version>1.2.28</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>cn.dustlight.captcha</groupId>
  41. <artifactId>redis-store</artifactId>
  42. <version>0.0.6</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>cn.dustlight.captcha</groupId>
  46. <artifactId>captcha-core</artifactId>
  47. <version>0.0.6</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>cn.hutool</groupId>
  51. <artifactId>hutool-all</artifactId>
  52. <version>5.7.11</version>
  53. </dependency>
  54. </dependencies>
  55. <!-- <build>-->
  56. <!-- <plugins>-->
  57. <!-- <plugin>-->
  58. <!-- <groupId>org.apache.maven.plugins</groupId>-->
  59. <!-- <artifactId>maven-compiler-plugin</artifactId>-->
  60. <!-- <version>3.6.1</version>-->
  61. <!-- <configuration>-->
  62. <!-- <source>1.8</source> &lt;!&ndash; 源代码使用的JDK版本 &ndash;&gt;-->
  63. <!-- <target>1.8</target> &lt;!&ndash; 需要生成的目标class文件的编译版本 &ndash;&gt;-->
  64. <!-- <encoding>UTF-8</encoding>&lt;!&ndash; 字符集编码 &ndash;&gt;-->
  65. <!-- </configuration>-->
  66. <!-- </plugin>-->
  67. <!-- </plugins>-->
  68. <!-- </build>-->
  69. </project>