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"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>pub.vie</groupId>
  7. <artifactId>excel</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <dependencies>
  10. <dependency>
  11. <groupId>org.slf4j</groupId>
  12. <artifactId>slf4j-api</artifactId>
  13. <version>1.7.26</version>
  14. </dependency>
  15. <dependency>
  16. <groupId>org.slf4j</groupId>
  17. <artifactId>slf4j-simple</artifactId>
  18. <version>1.7.5</version>
  19. </dependency>
  20. <!--excel操作-->
  21. <dependency>
  22. <groupId>org.apache.poi</groupId>
  23. <artifactId>poi</artifactId>
  24. <version>RELEASE</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.apache.poi</groupId>
  28. <artifactId>poi-ooxml</artifactId>
  29. <version>RELEASE</version>
  30. </dependency>
  31. </dependencies>
  32. <build>
  33. <plugins>
  34. <plugin>
  35. <groupId>org.apache.maven.plugins</groupId>
  36. <artifactId>maven-compiler-plugin</artifactId>
  37. <configuration>
  38. <source>8</source>
  39. <target>8</target>
  40. </configuration>
  41. </plugin>
  42. </plugins>
  43. </build>
  44. </project>