pom.xml 930 B

123456789101112131415161718192021222324252627282930313233
  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-report-model</artifactId>
  12. <properties>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. </properties>
  15. <dependencies>
  16. </dependencies>
  17. <build>
  18. <plugins>
  19. <plugin>
  20. <artifactId>maven-compiler-plugin</artifactId>
  21. <version>3.3</version>
  22. <configuration>
  23. <source>1.8</source>
  24. <target>1.8</target>
  25. <encoding>UTF-8</encoding>
  26. </configuration>
  27. </plugin>
  28. </plugins>
  29. </build>
  30. </project>