pom.xml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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>farm</artifactId>
  7. <groupId>com.huimv</groupId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>huimv-common</artifactId>
  12. <description>每一个微服务公共的依赖,bean,工具类等</description>
  13. <build>
  14. <plugins>
  15. <plugin>
  16. <groupId>org.apache.maven.plugins</groupId>
  17. <artifactId>maven-compiler-plugin</artifactId>
  18. <configuration>
  19. <source>8</source>
  20. <target>8</target>
  21. </configuration>
  22. </plugin>
  23. </plugins>
  24. </build>
  25. <dependencies>
  26. <dependency>
  27. <groupId>com.auth0</groupId>
  28. <artifactId>java-jwt</artifactId>
  29. <version>3.3.0</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>io.jsonwebtoken</groupId>
  33. <artifactId>jjwt</artifactId>
  34. <version>0.9.1</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.baomidou</groupId>
  38. <artifactId>mybatis-plus-generator</artifactId>
  39. <version>3.2.0</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.alibaba</groupId>
  43. <artifactId>fastjson</artifactId>
  44. <version>1.2.28</version>
  45. </dependency>
  46. </dependencies>
  47. </project>