pom.xml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.haha</groupId>
  8. <artifactId>haha-parent</artifactId>
  9. <version>0.0.1-SNAPSHOT</version>
  10. <relativePath>../pom.xml</relativePath>
  11. </parent>
  12. <artifactId>haha-sdk</artifactId>
  13. <packaging>jar</packaging>
  14. <name>haha-sdk</name>
  15. <description>哈哈零售系统 Java SDK</description>
  16. <dependencies>
  17. <!-- HTTP Client -->
  18. <dependency>
  19. <groupId>com.squareup.okhttp3</groupId>
  20. <artifactId>okhttp</artifactId>
  21. </dependency>
  22. <!-- JSON Processing -->
  23. <dependency>
  24. <groupId>com.alibaba.fastjson2</groupId>
  25. <artifactId>fastjson2</artifactId>
  26. </dependency>
  27. <!-- Logging -->
  28. <dependency>
  29. <groupId>org.slf4j</groupId>
  30. <artifactId>slf4j-api</artifactId>
  31. </dependency>
  32. </dependencies>
  33. <build>
  34. <plugins>
  35. <plugin>
  36. <groupId>org.apache.maven.plugins</groupId>
  37. <artifactId>maven-compiler-plugin</artifactId>
  38. </plugin>
  39. </plugins>
  40. </build>
  41. </project>