pom.xml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <artifactId>tofly-yswz</artifactId>
  7. <version>1.0.0</version>
  8. <packaging>pom</packaging>
  9. <parent>
  10. <groupId>com.tofly</groupId>
  11. <artifactId>tofly-webParent</artifactId>
  12. <version>1.0.0</version>
  13. </parent>
  14. <modules>
  15. <module>tofly-auth</module>
  16. <module>tofly-getway</module>
  17. <module>yswz-admin</module>
  18. <module>yswz_Materials</module>
  19. </modules>
  20. <dependencies>
  21. <dependency>
  22. <groupId>org.jxls</groupId>
  23. <artifactId>jxls</artifactId>
  24. <version>2.10.0-rc3</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.jxls</groupId>
  28. <artifactId>jxls-poi</artifactId>
  29. <version>1.2.0</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.jxls</groupId>
  33. <artifactId>jxls-reader</artifactId>
  34. <version>2.0.6</version>
  35. <scope>compile</scope>
  36. </dependency>
  37. <dependency>
  38. <groupId>cn.hutool</groupId>
  39. <artifactId>hutool-all</artifactId>
  40. <version>5.5.7</version>
  41. </dependency>
  42. </dependencies>
  43. <build>
  44. <plugins>
  45. <plugin>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-maven-plugin</artifactId>
  48. <executions>
  49. <execution>
  50. <goals>
  51. <goal>repackage</goal>
  52. </goals>
  53. </execution>
  54. </executions>
  55. </plugin>
  56. </plugins>
  57. </build>
  58. </project>