pom.xml 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  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. <dependency>
  76. <groupId>javax</groupId>
  77. <artifactId>javaee-api</artifactId>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.springframework.boot</groupId>
  81. <artifactId>spring-boot-starter-test</artifactId>
  82. <scope>test</scope>
  83. </dependency>
  84. </dependencies>
  85. <build>
  86. <plugins>
  87. <plugin>
  88. <artifactId>maven-clean-plugin</artifactId>
  89. <version>3.0.0</version>
  90. <configuration>
  91. <source>1.8</source>
  92. <target>1.8</target>
  93. <encoding>UTF-8</encoding>
  94. </configuration>
  95. </plugin>
  96. <plugin>
  97. <artifactId>maven-compiler-plugin</artifactId>
  98. <version>3.0</version>
  99. <configuration>
  100. <source>1.8</source>
  101. <target>1.8</target>
  102. <fork>true</fork>
  103. <encoding>UTF-8</encoding>
  104. </configuration>
  105. </plugin>
  106. </plugins>
  107. </build>
  108. </project>