pom.xml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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.fjhx</groupId>
  8. <artifactId>bytesailing</artifactId>
  9. <version>1.0</version>
  10. </parent>
  11. <artifactId>hx-dingding</artifactId>
  12. <properties>
  13. <maven.compiler.source>8</maven.compiler.source>
  14. <maven.compiler.target>8</maven.compiler.target>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>com.fjhx</groupId>
  20. <artifactId>hx-base</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.aliyun</groupId>
  24. <artifactId>dingtalk</artifactId>
  25. <version>2.0.0</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.aliyun</groupId>
  29. <artifactId>alibaba-dingtalk-service-sdk</artifactId>
  30. <version>2.0.0</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.taobao</groupId>
  34. <artifactId>lippi-oapi-encrpt</artifactId>
  35. <version>1.0</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>io.github.biezhi</groupId>
  39. <artifactId>TinyPinyin</artifactId>
  40. <version>2.0.3.RELEASE</version>
  41. </dependency>
  42. </dependencies>
  43. </project>