pom.xml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.sp.toktok-parent</groupId>
  7. <artifactId>sp-parent</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <relativePath>../pom.xml</relativePath>
  10. </parent>
  11. <artifactId>sp-manager-sms</artifactId>
  12. <packaging>jar</packaging>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.sp.toktok-parent</groupId>
  16. <artifactId>sp-common</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>commons-pool</groupId>
  20. <artifactId>commons-pool</artifactId>
  21. </dependency>
  22. <!-- 阿里云短信-->
  23. <dependency>
  24. <groupId>com.aliyun</groupId>
  25. <artifactId>aliyun-java-sdk-core</artifactId>
  26. </dependency>
  27. <!-- 玄武短信依赖xstream protobuf-->
  28. <dependency>
  29. <groupId>com.xuanwu</groupId>
  30. <artifactId>postmsg-ump-system</artifactId>
  31. <version>1.0</version>
  32. <scope>system</scope>
  33. <systemPath>${pom.basedir}/lib/postmsg-ump-2.4.jar</systemPath>
  34. <optional>true</optional>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.thoughtworks.xstream</groupId>
  38. <artifactId>xstream</artifactId>
  39. <version>1.4.11</version>
  40. <optional>true</optional>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.google.protobuf</groupId>
  44. <artifactId>protobuf-java</artifactId>
  45. <version>2.4.1</version>
  46. <optional>true</optional>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.projectlombok</groupId>
  50. <artifactId>lombok</artifactId>
  51. <scope>provided</scope>
  52. </dependency>
  53. </dependencies>
  54. </project>