pom.xml 3.9 KB

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