pom.xml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. <parent>
  6. <artifactId>jeecg-boot-parent</artifactId>
  7. <groupId>org.jeecgframework.boot</groupId>
  8. <version>3.7.1</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>srm-module-code</artifactId>
  12. <groupId>com.cuidian.srm</groupId>
  13. <version>1.0.0</version>
  14. <properties>
  15. <maven.compiler.source>8</maven.compiler.source>
  16. <maven.compiler.target>8</maven.compiler.target>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>org.jeecgframework.boot</groupId>
  21. <artifactId>jeecg-boot-base-core</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.jeecgframework.boot</groupId>
  25. <artifactId>jeecg-system-biz</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.apache.pdfbox</groupId>
  29. <artifactId>pdfbox</artifactId>
  30. <version>2.0.24</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>technology.tabula</groupId>
  34. <artifactId>tabula</artifactId>
  35. <version>1.0.5</version>
  36. <exclusions>
  37. <exclusion>
  38. <artifactId>slf4j-simple</artifactId>
  39. <groupId>org.slf4j</groupId>
  40. </exclusion>
  41. </exclusions>
  42. </dependency>
  43. </dependencies>
  44. </project>