pom.xml 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  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"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <parent>
  5. <groupId>com.lc.ibps.provider</groupId>
  6. <artifactId>ibps-provider-root</artifactId>
  7. <version>3.3.7-LC.RELEASE</version>
  8. <relativePath>../../pom.xml</relativePath>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>ibps-provider-platform-default</artifactId>
  12. <properties>
  13. <java.version>1.8</java.version>
  14. <maven.compiler.source>1.8</maven.compiler.source>
  15. <maven.compiler.target>1.8</maven.compiler.target>
  16. <maven.build.timestamp.format>yyyyMMdd-HHmmss</maven.build.timestamp.format>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>org.springframework.boot</groupId>
  21. <artifactId>spring-boot-starter-log4j2</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.lc.ibps.base</groupId>
  25. <artifactId>ibps-base-disruptor</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.lc.ibps.common</groupId>
  29. <artifactId>ibps-org-biz</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.lc.ibps.cloud</groupId>
  33. <artifactId>ibps-comp-socket</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.lc.ibps.provider.base</groupId>
  37. <artifactId>ibps-provider-platform-api</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.lc.ibps.cloud</groupId>
  41. <artifactId>ibps-oauth-core</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.lc.ibps.cloud</groupId>
  45. <artifactId>ibps-oauth-base</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.lc.ibps.cloud</groupId>
  49. <artifactId>ibps-oauth-client2</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.lc.ibps.provider.base</groupId>
  53. <artifactId>ibps-provider-bpmn-api</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.lc.ibps.cloud</groupId>
  57. <artifactId>ibps-comp-file-server</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.lc.ibps.cloud</groupId>
  61. <artifactId>ibps-comp-message-server</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.lc.ibps.message</groupId>
  65. <artifactId>ibps-message-consumer</artifactId>
  66. </dependency>
  67. <dependency>
  68. <groupId>com.lc.ibps.message</groupId>
  69. <artifactId>ibps-message-producer</artifactId>
  70. </dependency>
  71. <dependency>
  72. <groupId>javax.servlet</groupId>
  73. <artifactId>javax.servlet-api</artifactId>
  74. </dependency>
  75. <!-- Apache POI for Excel export -->
  76. <dependency>
  77. <groupId>org.apache.poi</groupId>
  78. <artifactId>poi</artifactId>
  79. <version>3.17</version>
  80. </dependency>
  81. <!-- Apache Commons Lang3 -->
  82. <dependency>
  83. <groupId>org.apache.commons</groupId>
  84. <artifactId>commons-lang3</artifactId>
  85. </dependency>
  86. <dependency>
  87. <groupId>javax</groupId>
  88. <artifactId>javaee-api</artifactId>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.springframework.boot</groupId>
  92. <artifactId>spring-boot-starter-test</artifactId>
  93. <scope>test</scope>
  94. </dependency>
  95. </dependencies>
  96. <build>
  97. <plugins>
  98. <plugin>
  99. <artifactId>maven-clean-plugin</artifactId>
  100. <version>3.0.0</version>
  101. <configuration>
  102. <source>1.8</source>
  103. <target>1.8</target>
  104. <encoding>UTF-8</encoding>
  105. </configuration>
  106. </plugin>
  107. <plugin>
  108. <artifactId>maven-compiler-plugin</artifactId>
  109. <version>3.0</version>
  110. <configuration>
  111. <source>1.8</source>
  112. <target>1.8</target>
  113. <fork>true</fork>
  114. <encoding>UTF-8</encoding>
  115. </configuration>
  116. </plugin>
  117. </plugins>
  118. </build>
  119. </project>