pom.xml 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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>snws-admin</module>
  12. <module>snws-monitor</module>
  13. <module>snws-gps</module>
  14. </modules>
  15. <artifactId>tofly-snws</artifactId>
  16. <version>1.0.0</version>
  17. <packaging>pom</packaging>
  18. <dependencies>
  19. <dependency>
  20. <groupId>org.jxls</groupId>
  21. <artifactId>jxls</artifactId>
  22. <version>2.10.0-rc3</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.jxls</groupId>
  26. <artifactId>jxls-poi</artifactId>
  27. <version>1.2.0</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.jxls</groupId>
  31. <artifactId>jxls-reader</artifactId>
  32. <version>2.0.6</version>
  33. <scope>compile</scope>
  34. </dependency>
  35. <dependency>
  36. <groupId>cn.hutool</groupId>
  37. <artifactId>hutool-all</artifactId>
  38. <version>5.5.7</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.microsoft.sqlserver</groupId>
  42. <artifactId>mssql-jdbc</artifactId>
  43. <version>9.4.1.jre8</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.baomidou</groupId>
  47. <artifactId>mybatis-plus-extension</artifactId>
  48. <version>3.3.2</version>
  49. <scope>compile</scope>
  50. </dependency>
  51. </dependencies>
  52. <build>
  53. <plugins>
  54. <plugin>
  55. <groupId>org.springframework.boot</groupId>
  56. <artifactId>spring-boot-maven-plugin</artifactId>
  57. <executions>
  58. <execution>
  59. <goals>
  60. <goal>repackage</goal>
  61. </goals>
  62. </execution>
  63. </executions>
  64. </plugin>
  65. </plugins>
  66. </build>
  67. </project>