pom.xml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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.report</groupId>
  5. <artifactId>ibps-report-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-report-biz</artifactId>
  11. <properties>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. </properties>
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.lc.ibps.report</groupId>
  17. <artifactId>ibps-report-api</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.lc.ibps.model</groupId>
  21. <artifactId>ibps-report-model</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.lc.ibps.model</groupId>
  25. <artifactId>ibps-org-model</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.lc.ibps.base</groupId>
  29. <artifactId>ibps-base-framework-ddd</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.lc.ibps.base</groupId>
  33. <artifactId>ibps-base-db</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.lc.ibps.api</groupId>
  37. <artifactId>ibps-api-org</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.lc.ibps.base</groupId>
  41. <artifactId>ibps-base-web</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.lc.ibps.base</groupId>
  45. <artifactId>ibps-base-web</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.lc.ibps.provider.base</groupId>
  49. <artifactId>ibps-provider-platform-api</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>junit</groupId>
  53. <artifactId>junit</artifactId>
  54. <scope>test</scope>
  55. </dependency>
  56. </dependencies>
  57. <build>
  58. <plugins>
  59. <plugin>
  60. <artifactId>maven-compiler-plugin</artifactId>
  61. <version>3.3</version>
  62. <configuration>
  63. <source>1.8</source>
  64. <target>1.8</target>
  65. <encoding>UTF-8</encoding>
  66. </configuration>
  67. </plugin>
  68. </plugins>
  69. </build>
  70. </project>