pom.xml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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.api</groupId>
  6. <artifactId>ibps-api-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-api-form</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.lc.ibps.api</groupId>
  15. <artifactId>ibps-api-base</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>com.lc.ibps.api</groupId>
  19. <artifactId>ibps-api-bo</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>net.sf.json-lib</groupId>
  23. <artifactId>json-lib</artifactId>
  24. <classifier>jdk15</classifier>
  25. </dependency>
  26. <!-- https://mvnrepository.com/artifact/net.sf.ezmorph/ezmorph -->
  27. <dependency>
  28. <groupId>net.sf.ezmorph</groupId>
  29. <artifactId>ezmorph</artifactId>
  30. </dependency>
  31. <!-- https://mvnrepository.com/artifact/net.sf.morph/morph -->
  32. <dependency>
  33. <groupId>net.sf.morph</groupId>
  34. <artifactId>morph</artifactId>
  35. </dependency>
  36. </dependencies>
  37. <build>
  38. <plugins>
  39. <plugin>
  40. <artifactId>maven-compiler-plugin</artifactId>
  41. <version>3.3</version>
  42. <configuration>
  43. <source>1.8</source>
  44. <target>1.8</target>
  45. <encoding>UTF-8</encoding>
  46. </configuration>
  47. </plugin>
  48. </plugins>
  49. </build>
  50. </project>