pom.xml 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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.model</groupId>
  6. <artifactId>ibps-model-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-form-model</artifactId>
  12. <properties>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. </properties>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.lc.ibps.api</groupId>
  18. <artifactId>ibps-api-form</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.lc.ibps.base</groupId>
  22. <artifactId>ibps-base-datasource</artifactId>
  23. </dependency>
  24. </dependencies>
  25. <build>
  26. <plugins>
  27. <plugin>
  28. <artifactId>maven-compiler-plugin</artifactId>
  29. <version>3.3</version>
  30. <configuration>
  31. <source>1.8</source>
  32. <target>1.8</target>
  33. <encoding>UTF-8</encoding>
  34. </configuration>
  35. </plugin>
  36. </plugins>
  37. </build>
  38. </project>