pom.xml 2.0 KB

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