pom.xml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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-form-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-bo-model</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.lc.ibps.api</groupId>
  28. <artifactId>ibps-api-form</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.lc.ibps.model</groupId>
  32. <artifactId>ibps-form-model</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.lc.ibps.model</groupId>
  36. <artifactId>ibps-org-model</artifactId>
  37. </dependency>
  38. </dependencies>
  39. <build>
  40. <plugins>
  41. <plugin>
  42. <artifactId>maven-clean-plugin</artifactId>
  43. <version>3.0.0</version>
  44. <configuration>
  45. <source>1.8</source>
  46. <target>1.8</target>
  47. <encoding>UTF-8</encoding>
  48. </configuration>
  49. </plugin>
  50. <plugin>
  51. <artifactId>maven-compiler-plugin</artifactId>
  52. <version>3.3</version>
  53. <configuration>
  54. <source>1.8</source>
  55. <target>1.8</target>
  56. <fork>true</fork>
  57. <encoding>UTF-8</encoding>
  58. </configuration>
  59. </plugin>
  60. </plugins>
  61. </build>
  62. </project>