pom.xml 1.8 KB

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