pom.xml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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>data-daq</artifactId>
  7. <groupId>com.simuwang</groupId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>service-daq</artifactId>
  12. <description>数据采集</description>
  13. <version>1.0.0</version>
  14. <packaging>jar</packaging>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.simuwang</groupId>
  18. <artifactId>service-base</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.apache.pdfbox</groupId>
  22. <artifactId>pdfbox</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>technology.tabula</groupId>
  26. <artifactId>tabula</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>cn.hutool</groupId>
  30. <artifactId>hutool-http</artifactId>
  31. </dependency>
  32. </dependencies>
  33. <!-- <build>-->
  34. <!-- <plugins>-->
  35. <!-- <plugin>-->
  36. <!-- <groupId>org.springframework.boot</groupId>-->
  37. <!-- <artifactId>spring-boot-maven-plugin</artifactId>-->
  38. <!-- </plugin>-->
  39. <!-- </plugins>-->
  40. <!-- </build>-->
  41. </project>