pom.xml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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.base</groupId>
  6. <artifactId>ibps-provider-base-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-api</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. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>com.lc.ibps.cloud</groupId>
  20. <artifactId>ibps-basic-response</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.lc.ibps.model</groupId>
  24. <artifactId>ibps-org-model</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.lc.ibps.base</groupId>
  28. <artifactId>ibps-base-service</artifactId>
  29. <scope>compile</scope>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.lc.ibps.components</groupId>
  33. <artifactId>ibps-component-httpclient</artifactId>
  34. <scope>compile</scope>
  35. </dependency>
  36. <dependency>
  37. <groupId>javax.servlet</groupId>
  38. <artifactId>javax.servlet-api</artifactId>
  39. <scope>provided</scope>
  40. </dependency>
  41. </dependencies>
  42. <build>
  43. <plugins>
  44. <plugin>
  45. <artifactId>maven-clean-plugin</artifactId>
  46. <version>3.0.0</version>
  47. <configuration>
  48. <source>1.8</source>
  49. <target>1.8</target>
  50. <encoding>UTF-8</encoding>
  51. </configuration>
  52. </plugin>
  53. <plugin>
  54. <artifactId>maven-compiler-plugin</artifactId>
  55. <version>3.3</version>
  56. <configuration>
  57. <source>1.8</source>
  58. <target>1.8</target>
  59. <fork>true</fork>
  60. <encoding>UTF-8</encoding>
  61. </configuration>
  62. </plugin>
  63. </plugins>
  64. </build>
  65. </project>