pom.xml 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  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.form</groupId>
  5. <artifactId>ibps-form-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-bo-biz</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.api</groupId>
  20. <artifactId>ibps-api-bo</artifactId>
  21. <exclusions>
  22. <exclusion>
  23. <groupId>com.lc.ibps.api</groupId>
  24. <artifactId>ibps-api-base</artifactId>
  25. </exclusion>
  26. </exclusions>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.lc.ibps.base</groupId>
  30. <artifactId>ibps-base-db</artifactId>
  31. <exclusions>
  32. <exclusion>
  33. <groupId>com.lc.ibps.api</groupId>
  34. <artifactId>ibps-api-base</artifactId>
  35. </exclusion>
  36. <exclusion>
  37. <groupId>com.lc.ibps.base</groupId>
  38. <artifactId>ibps-base-framework</artifactId>
  39. </exclusion>
  40. <exclusion>
  41. <groupId>com.lc.ibps.base</groupId>
  42. <artifactId>ibps-base-framework-ddd</artifactId>
  43. </exclusion>
  44. <exclusion>
  45. <groupId>com.lc.ibps.base</groupId>
  46. <artifactId>ibps-base-datasource</artifactId>
  47. </exclusion>
  48. </exclusions>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.lc.ibps.base</groupId>
  52. <artifactId>ibps-base-framework</artifactId>
  53. <exclusions>
  54. <exclusion>
  55. <groupId>com.lc.ibps.api</groupId>
  56. <artifactId>ibps-api-base</artifactId>
  57. </exclusion>
  58. </exclusions>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.lc.ibps.base</groupId>
  62. <artifactId>ibps-base-framework-ddd</artifactId>
  63. <exclusions>
  64. <exclusion>
  65. <groupId>com.lc.ibps.api</groupId>
  66. <artifactId>ibps-api-base</artifactId>
  67. </exclusion>
  68. <exclusion>
  69. <groupId>com.lc.ibps.base</groupId>
  70. <artifactId>ibps-base-framework</artifactId>
  71. </exclusion>
  72. </exclusions>
  73. </dependency>
  74. <dependency>
  75. <groupId>com.lc.ibps.base</groupId>
  76. <artifactId>ibps-base-datasource</artifactId>
  77. </dependency>
  78. <dependency>
  79. <groupId>com.lc.ibps.persist</groupId>
  80. <artifactId>ibps-persist-core</artifactId>
  81. </dependency>
  82. <dependency>
  83. <groupId>com.lc.ibps.model</groupId>
  84. <artifactId>ibps-bo-model</artifactId>
  85. </dependency>
  86. <dependency>
  87. <groupId>com.lc.ibps.provider.base</groupId>
  88. <artifactId>ibps-provider-platform-api</artifactId>
  89. </dependency>
  90. <!-- 外部依赖 -->
  91. <dependency>
  92. <groupId>com.jayway.jsonpath</groupId>
  93. <artifactId>json-path</artifactId>
  94. </dependency>
  95. <dependency>
  96. <groupId>junit</groupId>
  97. <artifactId>junit</artifactId>
  98. <scope>test</scope>
  99. </dependency>
  100. <dependency>
  101. <groupId>mysql</groupId>
  102. <artifactId>mysql-connector-java</artifactId>
  103. <scope>test</scope>
  104. </dependency>
  105. </dependencies>
  106. <build>
  107. <plugins>
  108. <plugin>
  109. <artifactId>maven-compiler-plugin</artifactId>
  110. <version>3.3</version>
  111. <configuration>
  112. <source>1.8</source>
  113. <target>1.8</target>
  114. <encoding>UTF-8</encoding>
  115. </configuration>
  116. </plugin>
  117. </plugins>
  118. </build>
  119. </project>