pom.xml 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  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.common</groupId>
  5. <artifactId>ibps-common-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-org-biz</artifactId>
  11. <properties>
  12. </properties>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.lc.ibps.model</groupId>
  16. <artifactId>ibps-org-model</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>com.lc.ibps.components</groupId>
  20. <artifactId>ibps-component-mail</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.lc.ibps.components</groupId>
  24. <artifactId>ibps-component-cache</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.lc.ibps.components</groupId>
  28. <artifactId>ibps-component-httpclient</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.lc.ibps.components</groupId>
  32. <artifactId>ibps-component-quartz</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.lc.ibps.provider.base</groupId>
  36. <artifactId>ibps-provider-form-api</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.lc.ibps.components</groupId>
  40. <artifactId>ibps-component-upload</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.lc.ibps.base</groupId>
  44. <artifactId>ibps-base-db</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.lc.ibps.base</groupId>
  48. <artifactId>ibps-base-quartz</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.lc.ibps.base</groupId>
  52. <artifactId>ibps-base-disruptor</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.lc.ibps.base</groupId>
  56. <artifactId>ibps-base-web</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.lc.ibps.base</groupId>
  60. <artifactId>ibps-base-framework-ddd</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.lc.ibps.common</groupId>
  64. <artifactId>ibps-file-biz</artifactId>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.lc.ibps.common</groupId>
  68. <artifactId>ibps-msg-biz</artifactId>
  69. </dependency>
  70. <dependency>
  71. <groupId>com.lc.ibps.message</groupId>
  72. <artifactId>ibps-message-producer</artifactId>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.jsoup</groupId>
  76. <artifactId>jsoup</artifactId>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.apache.httpcomponents</groupId>
  80. <artifactId>httpclient</artifactId>
  81. </dependency>
  82. <dependency>
  83. <groupId>javax.servlet</groupId>
  84. <artifactId>servlet-api</artifactId>
  85. <scope>provided</scope>
  86. </dependency>
  87. <dependency>
  88. <groupId>javax</groupId>
  89. <artifactId>javaee-api</artifactId>
  90. <exclusions>
  91. <exclusion>
  92. <groupId>com.sun.mail</groupId>
  93. <artifactId>javax.mail</artifactId>
  94. </exclusion>
  95. </exclusions>
  96. <scope>provided</scope>
  97. </dependency>
  98. <!-- mysql 数据库驱动 -->
  99. <dependency>
  100. <groupId>mysql</groupId>
  101. <artifactId>mysql-connector-java</artifactId>
  102. <scope>test</scope>
  103. </dependency>
  104. <dependency>
  105. <groupId>junit</groupId>
  106. <artifactId>junit</artifactId>
  107. <scope>test</scope>
  108. </dependency>
  109. </dependencies>
  110. <build>
  111. <plugins>
  112. <plugin>
  113. <artifactId>maven-compiler-plugin</artifactId>
  114. <version>3.3</version>
  115. <configuration>
  116. <source>1.8</source>
  117. <target>1.8</target>
  118. <encoding>UTF-8</encoding>
  119. </configuration>
  120. </plugin>
  121. </plugins>
  122. </build>
  123. </project>