pom.xml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <parent>
  4. <groupId>com.lc.ibps.components</groupId>
  5. <artifactId>ibps-component-root</artifactId>
  6. <version>3.3.7-LC.RELEASE</version>
  7. <relativePath>../../pom.xml</relativePath>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>ibps-component-sms</artifactId>
  11. <properties>
  12. </properties>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.lc.ibps.persist</groupId>
  16. <artifactId>ibps-persist-core</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.smslib</groupId>
  20. <artifactId>sms</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.smslib</groupId>
  24. <artifactId>RXTXcomm</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>taobao</groupId>
  28. <artifactId>taobao-sdk-java</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.aliyun</groupId>
  32. <artifactId>aliyun-java-sdk-core</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.aliyun</groupId>
  36. <artifactId>aliyun-java-sdk-dysmsapi</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>junit</groupId>
  40. <artifactId>junit</artifactId>
  41. <scope>test</scope>
  42. </dependency>
  43. </dependencies>
  44. <build>
  45. <plugins>
  46. <plugin>
  47. <artifactId>maven-compiler-plugin</artifactId>
  48. <version>3.3</version>
  49. <configuration>
  50. <source>1.8</source>
  51. <target>1.8</target>
  52. <encoding>UTF-8</encoding>
  53. </configuration>
  54. </plugin>
  55. </plugins>
  56. </build>
  57. </project>