pom.xml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. <parent>
  6. <groupId>com.tofly</groupId>
  7. <artifactId>tofly-webParent</artifactId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <modules>
  11. <module>hnls-admin</module>
  12. <module>hnls-gis</module>
  13. <module>hnls-gps</module>
  14. <module>hnls-mis</module>
  15. <module>hnls-dc</module>
  16. <module>hnls-scada</module>
  17. </modules>
  18. <artifactId>tofly-hnls</artifactId>
  19. <version>1.0.0</version>
  20. <packaging>pom</packaging>
  21. <dependencies>
  22. <dependency>
  23. <groupId>org.jxls</groupId>
  24. <artifactId>jxls</artifactId>
  25. <version>2.10.0-rc3</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.jxls</groupId>
  29. <artifactId>jxls-poi</artifactId>
  30. <version>1.2.0</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.jxls</groupId>
  34. <artifactId>jxls-reader</artifactId>
  35. <version>2.0.6</version>
  36. <scope>compile</scope>
  37. </dependency>
  38. <dependency>
  39. <groupId>cn.hutool</groupId>
  40. <artifactId>hutool-all</artifactId>
  41. <version>5.5.7</version>
  42. </dependency>
  43. </dependencies>
  44. <build>
  45. <plugins>
  46. <plugin>
  47. <groupId>org.springframework.boot</groupId>
  48. <artifactId>spring-boot-maven-plugin</artifactId>
  49. <executions>
  50. <execution>
  51. <goals>
  52. <goal>repackage</goal>
  53. </goals>
  54. </execution>
  55. </executions>
  56. </plugin>
  57. </plugins>
  58. </build>
  59. </project>