pom.xml 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.jianxun.gaudi</groupId>
  7. <artifactId>gaudi-parent</artifactId>
  8. <version>0.0.1</version>
  9. </parent>
  10. <artifactId>gaudi-common</artifactId>
  11. <dependencies>
  12. <dependency>
  13. <groupId>org.springframework.boot</groupId>
  14. <artifactId>spring-boot-starter-web</artifactId>
  15. </dependency>
  16. <dependency>
  17. <groupId>com.alibaba</groupId>
  18. <artifactId>fastjson</artifactId>
  19. <version>1.2.47</version>
  20. </dependency>
  21. <!-- JJWT -->
  22. <dependency>
  23. <groupId>io.jsonwebtoken</groupId>
  24. <artifactId>jjwt</artifactId>
  25. <version>0.9.0</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>net.iharder</groupId>
  29. <artifactId>base64</artifactId>
  30. <version>2.3.8</version>
  31. </dependency>
  32. <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient -->
  33. <dependency>
  34. <groupId>org.apache.httpcomponents</groupId>
  35. <artifactId>httpclient</artifactId>
  36. </dependency>
  37. <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpmime -->
  38. <dependency>
  39. <groupId>org.apache.httpcomponents</groupId>
  40. <artifactId>httpmime</artifactId>
  41. </dependency>
  42. </dependencies>
  43. <build>
  44. <plugins>
  45. <plugin>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-maven-plugin</artifactId>
  48. <executions>
  49. <execution>
  50. <phase>none</phase>
  51. </execution>
  52. </executions>
  53. </plugin>
  54. </plugins>
  55. </build>
  56. </project>