pom.xml 3.8 KB

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