pom.xml 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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>pms-base</module>-->
  12. <module>auth-sdk</module>
  13. <module>pms-service</module>
  14. <!-- <module>gateway</module>-->
  15. <module>base-entity</module>
  16. <module>pms-report</module>
  17. </modules>
  18. <properties>
  19. <sdk-version>2.0.14</sdk-version>
  20. </properties>
  21. <artifactId>tofly-pms</artifactId>
  22. <version>1.0.0</version>
  23. <packaging>pom</packaging>
  24. <dependencies>
  25. <dependency>
  26. <groupId>org.jxls</groupId>
  27. <artifactId>jxls</artifactId>
  28. <version>2.10.0-rc3</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.jxls</groupId>
  32. <artifactId>jxls-poi</artifactId>
  33. <version>1.2.0</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.jxls</groupId>
  37. <artifactId>jxls-reader</artifactId>
  38. <version>2.0.6</version>
  39. <scope>compile</scope>
  40. </dependency>
  41. <dependency>
  42. <groupId>cn.hutool</groupId>
  43. <artifactId>hutool-all</artifactId>
  44. <version>5.5.7</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.postgresql</groupId>
  48. <artifactId>postgresql</artifactId>
  49. </dependency>
  50. </dependencies>
  51. <!-- <build>
  52. <plugins>
  53. <plugin>
  54. <groupId>org.springframework.boot</groupId>
  55. <artifactId>spring-boot-maven-plugin</artifactId>
  56. <executions>
  57. <execution>
  58. <goals>
  59. <goal>repackage</goal>
  60. </goals>
  61. </execution>
  62. </executions>
  63. </plugin>
  64. </plugins>
  65. </build>-->
  66. </project>