pom.xml 779 B

1234567891011121314151617181920212223242526
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <parent>
  4. <groupId>com.lc.ibps.components</groupId>
  5. <artifactId>ibps-component-root</artifactId>
  6. <version>3.3.7-LC.RELEASE</version>
  7. <relativePath>../../pom.xml</relativePath>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>ibps-component-poi-annotation</artifactId>
  11. <build>
  12. <plugins>
  13. <plugin>
  14. <artifactId>maven-compiler-plugin</artifactId>
  15. <version>3.3</version>
  16. <configuration>
  17. <source>1.8</source>
  18. <target>1.8</target>
  19. <encoding>UTF-8</encoding>
  20. </configuration>
  21. </plugin>
  22. </plugins>
  23. </build>
  24. </project>