pom.xml 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <parent>
  5. <groupId>com.lc.ibps.common</groupId>
  6. <artifactId>ibps-common-root</artifactId>
  7. <version>3.3.7-LC.RELEASE</version>
  8. <relativePath>../../pom.xml</relativePath>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>ibps-msg-biz</artifactId>
  12. <properties>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. </properties>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.lc.ibps.base</groupId>
  18. <artifactId>ibps-base-db</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.lc.ibps.base</groupId>
  22. <artifactId>ibps-base-service</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.lc.ibps.api</groupId>
  26. <artifactId>ibps-api-org</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.lc.ibps.model</groupId>
  30. <artifactId>ibps-msg-model</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.lc.ibps.model</groupId>
  34. <artifactId>ibps-org-model</artifactId>
  35. </dependency>
  36. <!-- <dependency>
  37. <groupId>com.lc.ibps.components</groupId>
  38. <artifactId>ibps-component-cache</artifactId>
  39. </dependency> -->
  40. <dependency>
  41. <groupId>com.lc.ibps.components</groupId>
  42. <artifactId>ibps-component-sms</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.jsoup</groupId>
  46. <artifactId>jsoup</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.apache.httpcomponents</groupId>
  50. <artifactId>httpclient</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>javax.servlet</groupId>
  54. <artifactId>servlet-api</artifactId>
  55. <scope>provided</scope>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.lc.ibps.provider.base</groupId>
  59. <artifactId>ibps-provider-platform-api</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>mysql</groupId>
  63. <artifactId>mysql-connector-java</artifactId>
  64. <scope>test</scope>
  65. </dependency>
  66. <dependency>
  67. <groupId>junit</groupId>
  68. <artifactId>junit</artifactId>
  69. <scope>test</scope>
  70. </dependency>
  71. </dependencies>
  72. <build>
  73. <plugins>
  74. <plugin>
  75. <artifactId>maven-compiler-plugin</artifactId>
  76. <version>3.3</version>
  77. <configuration>
  78. <source>1.8</source>
  79. <target>1.8</target>
  80. <encoding>UTF-8</encoding>
  81. </configuration>
  82. </plugin>
  83. </plugins>
  84. </build>
  85. </project>