pom.xml 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  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-im</artifactId>
  11. <properties>
  12. </properties>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.lc.ibps.api</groupId>
  16. <artifactId>ibps-api-base</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>com.lc.ibps.persist</groupId>
  20. <artifactId>ibps-persist-core</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.lc.ibps.base</groupId>
  24. <artifactId>ibps-base-web</artifactId>
  25. <exclusions>
  26. <exclusion>
  27. <groupId>com.lc.ibps.api</groupId>
  28. <artifactId>ibps-api-base</artifactId>
  29. </exclusion>
  30. <exclusion>
  31. <groupId>com.lc.ibps.base</groupId>
  32. <artifactId>ibps-base-db</artifactId>
  33. </exclusion>
  34. <exclusion>
  35. <groupId>com.lc.ibps.base</groupId>
  36. <artifactId>ibps-base-framework</artifactId>
  37. </exclusion>
  38. <exclusion>
  39. <groupId>com.lc.ibps.base</groupId>
  40. <artifactId>ibps-base-framework-ddd</artifactId>
  41. </exclusion>
  42. <exclusion>
  43. <groupId>com.lc.ibps.base</groupId>
  44. <artifactId>ibps-base-datasource</artifactId>
  45. </exclusion>
  46. </exclusions>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.lc.ibps.base</groupId>
  50. <artifactId>ibps-base-db</artifactId>
  51. <exclusions>
  52. <exclusion>
  53. <groupId>com.lc.ibps.api</groupId>
  54. <artifactId>ibps-api-base</artifactId>
  55. </exclusion>
  56. <exclusion>
  57. <groupId>com.lc.ibps.base</groupId>
  58. <artifactId>ibps-base-framework</artifactId>
  59. </exclusion>
  60. <exclusion>
  61. <groupId>com.lc.ibps.base</groupId>
  62. <artifactId>ibps-base-framework-ddd</artifactId>
  63. </exclusion>
  64. <exclusion>
  65. <groupId>com.lc.ibps.base</groupId>
  66. <artifactId>ibps-base-datasource</artifactId>
  67. </exclusion>
  68. </exclusions>
  69. </dependency>
  70. <dependency>
  71. <groupId>com.lc.ibps.base</groupId>
  72. <artifactId>ibps-base-framework</artifactId>
  73. <exclusions>
  74. <exclusion>
  75. <groupId>com.lc.ibps.api</groupId>
  76. <artifactId>ibps-api-base</artifactId>
  77. </exclusion>
  78. </exclusions>
  79. </dependency>
  80. <dependency>
  81. <groupId>com.lc.ibps.base</groupId>
  82. <artifactId>ibps-base-framework-ddd</artifactId>
  83. <exclusions>
  84. <exclusion>
  85. <groupId>com.lc.ibps.api</groupId>
  86. <artifactId>ibps-api-base</artifactId>
  87. </exclusion>
  88. <exclusion>
  89. <groupId>com.lc.ibps.base</groupId>
  90. <artifactId>ibps-base-framework</artifactId>
  91. </exclusion>
  92. </exclusions>
  93. </dependency>
  94. <dependency>
  95. <groupId>com.lc.ibps.components</groupId>
  96. <artifactId>ibps-component-im-api</artifactId>
  97. <exclusions>
  98. <exclusion>
  99. <groupId>com.lc.ibps.api</groupId>
  100. <artifactId>ibps-api-base</artifactId>
  101. </exclusion>
  102. </exclusions>
  103. </dependency>
  104. <dependency>
  105. <groupId>com.lc.ibps.components</groupId>
  106. <artifactId>ibps-component-upload-api</artifactId>
  107. </dependency>
  108. <!-- <dependency>
  109. <groupId>javax</groupId>
  110. <artifactId>javaee-api</artifactId>
  111. <scope>provided</scope>
  112. </dependency> -->
  113. <dependency>
  114. <groupId>javax.websocket</groupId>
  115. <artifactId>javax.websocket-api</artifactId>
  116. <scope>provided</scope>
  117. </dependency>
  118. <dependency>
  119. <groupId>org.springframework</groupId>
  120. <artifactId>spring-websocket</artifactId>
  121. </dependency>
  122. <dependency>
  123. <groupId>javax.servlet</groupId>
  124. <artifactId>servlet-api</artifactId>
  125. <scope>provided</scope>
  126. </dependency>
  127. <dependency>
  128. <groupId>javax.servlet.jsp</groupId>
  129. <artifactId>jsp-api</artifactId>
  130. <scope>provided</scope>
  131. </dependency>
  132. <dependency>
  133. <groupId>junit</groupId>
  134. <artifactId>junit</artifactId>
  135. <scope>test</scope>
  136. </dependency>
  137. </dependencies>
  138. <build>
  139. <plugins>
  140. <plugin>
  141. <artifactId>maven-compiler-plugin</artifactId>
  142. <version>3.3</version>
  143. <configuration>
  144. <source>1.8</source>
  145. <target>1.8</target>
  146. <encoding>UTF-8</encoding>
  147. </configuration>
  148. </plugin>
  149. </plugins>
  150. </build>
  151. </project>