pom.xml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  2. <parent>
  3. <groupId>com.kioor</groupId>
  4. <artifactId>toby-yezhu</artifactId>
  5. <version>4.2.0</version>
  6. </parent>
  7. <modelVersion>4.0.0</modelVersion>
  8. <artifactId>yezhu-api</artifactId>
  9. <packaging>jar</packaging>
  10. <description>yezhu-api</description>
  11. <dependencies>
  12. <dependency>
  13. <groupId>com.kioor</groupId>
  14. <artifactId>yezhu-common</artifactId>
  15. <version>4.2.0</version>
  16. </dependency>
  17. <dependency>
  18. <groupId>com.kioor</groupId>
  19. <artifactId>yezhu-dynamic-datasource</artifactId>
  20. <version>4.2.0</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>cn.hutool</groupId>
  24. <artifactId>hutool-core</artifactId>
  25. <version>5.8.16</version>
  26. <scope>compile</scope>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.aliyun</groupId>
  30. <artifactId>aliyun-java-sdk-core</artifactId>
  31. <version>3.2.2</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.aliyun</groupId>
  35. <artifactId>aliyun-java-sdk-dysmsapi</artifactId>
  36. <version>1.1.0</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.github.qcloudsms</groupId>
  40. <artifactId>qcloudsms</artifactId>
  41. <version>1.0.5</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.qiniu</groupId>
  45. <artifactId>qiniu-java-sdk</artifactId>
  46. <version>7.2.27</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-starter-websocket</artifactId>
  51. </dependency>
  52. </dependencies>
  53. <build>
  54. <finalName>${project.artifactId}</finalName>
  55. <plugins>
  56. <plugin>
  57. <groupId>org.springframework.boot</groupId>
  58. <artifactId>spring-boot-maven-plugin</artifactId>
  59. </plugin>
  60. <plugin>
  61. <groupId>org.apache.maven.plugins</groupId>
  62. <artifactId>maven-surefire-plugin</artifactId>
  63. <configuration>
  64. <skipTests>true</skipTests>
  65. </configuration>
  66. </plugin>
  67. </plugins>
  68. </build>
  69. </project>