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