pom.xml 870 B

12345678910111213141516171819202122232425262728293031323334
  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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>com.lc.ibps.other</groupId>
  5. <artifactId>ibps-other-root</artifactId>
  6. <version>3.3.7-LC.RELEASE</version>
  7. <packaging>pom</packaging>
  8. <modules>
  9. </modules>
  10. <properties>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. </properties>
  13. <dependencies>
  14. </dependencies>
  15. <build>
  16. <plugins>
  17. <plugin>
  18. <artifactId>maven-compiler-plugin</artifactId>
  19. <version>3.3</version>
  20. <configuration>
  21. <source>1.8</source>
  22. <target>1.8</target>
  23. <encoding>UTF-8</encoding>
  24. </configuration>
  25. </plugin>
  26. </plugins>
  27. </build>
  28. </project>