pom.xml 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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>BI</artifactId>
  7. <groupId>com.usoftchina.platform</groupId>
  8. <version>2.0.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <groupId>com.usoftchina.platform</groupId>
  12. <artifactId>bi-core</artifactId>
  13. <dependencies>
  14. <!-- pageHelper -->
  15. <dependency>
  16. <groupId>com.github.pagehelper</groupId>
  17. <artifactId>pagehelper-spring-boot-starter</artifactId>
  18. </dependency>
  19. <!-- JSON -->
  20. <dependency>
  21. <groupId>com.fasterxml.jackson.core</groupId>
  22. <artifactId>jackson-core</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.fasterxml.jackson.core</groupId>
  26. <artifactId>jackson-databind</artifactId>
  27. </dependency>
  28. <!-- JWT -->
  29. <dependency>
  30. <groupId>com.auth0</groupId>
  31. <artifactId>java-jwt</artifactId>
  32. </dependency>
  33. <!-- druid -->
  34. <dependency>
  35. <groupId>com.alibaba</groupId>
  36. <artifactId>druid</artifactId>
  37. </dependency>
  38. </dependencies>
  39. </project>