pom.xml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <modules>
  6. <module>lhk-admin</module>
  7. <module>lhk-gis</module>
  8. <module>lhk-scada</module>
  9. </modules>
  10. <parent>
  11. <groupId>com.tofly</groupId>
  12. <artifactId>tofly-webParent</artifactId>
  13. <version>1.0.3</version>
  14. </parent>
  15. <artifactId>tf-lhk</artifactId>
  16. <version>1.0.0</version>
  17. <packaging>pom</packaging>
  18. <dependencies>
  19. <dependency>
  20. <groupId>org.jxls</groupId>
  21. <artifactId>jxls</artifactId>
  22. <version>2.10.0-rc3</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.jxls</groupId>
  26. <artifactId>jxls-poi</artifactId>
  27. <version>1.2.0</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.jxls</groupId>
  31. <artifactId>jxls-reader</artifactId>
  32. <version>2.0.6</version>
  33. <scope>compile</scope>
  34. </dependency>
  35. <dependency>
  36. <groupId>cn.hutool</groupId>
  37. <artifactId>hutool-all</artifactId>
  38. <version>5.5.7</version>
  39. </dependency>
  40. </dependencies>
  41. <build>
  42. <plugins>
  43. <plugin>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-maven-plugin</artifactId>
  46. <executions>
  47. <execution>
  48. <goals>
  49. <goal>repackage</goal>
  50. </goals>
  51. </execution>
  52. </executions>
  53. </plugin>
  54. </plugins>
  55. </build>
  56. </project>