pom.xml 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  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. <parent>
  6. <groupId>com.tofly</groupId>
  7. <artifactId>ylsw-carGps</artifactId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>carGps-boot</artifactId>
  12. <version>1.0.0</version>
  13. <properties>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  16. <java.version>1.8</java.version>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>com.tofly</groupId>
  21. <artifactId>carGps-api</artifactId>
  22. <version>1.0.0</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.tofly</groupId>
  26. <artifactId>common-core</artifactId>
  27. <version>1.0.0</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.tofly</groupId>
  31. <artifactId>common-es</artifactId>
  32. <version>1.0.0</version>
  33. <exclusions>
  34. <exclusion>
  35. <groupId>com.baomidou</groupId>
  36. <artifactId>mybatis-plus-core</artifactId>
  37. </exclusion>
  38. <exclusion>
  39. <groupId>com.baomidou</groupId>
  40. <artifactId>mybatis-plus-extension</artifactId>
  41. </exclusion>
  42. </exclusions>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.apache.poi</groupId>
  46. <artifactId>poi-ooxml</artifactId>
  47. <version>4.0.1</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.tofly</groupId>
  51. <artifactId>common-redis</artifactId>
  52. <version>1.0.0</version>
  53. </dependency>
  54. <!-- springboot 整合 hibernate validator 校验 -->
  55. <dependency>
  56. <groupId>org.springframework.boot</groupId>
  57. <artifactId>spring-boot-starter-validation</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.springframework.cloud</groupId>
  61. <artifactId>spring-cloud-starter-netflix-hystrix</artifactId>
  62. <version>2.1.3.RELEASE</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.tofly</groupId>
  66. <artifactId>admin-api</artifactId>
  67. <version>1.0.0</version>
  68. </dependency>
  69. <!-- xxl-job -->
  70. <dependency>
  71. <groupId>com.xuxueli</groupId>
  72. <artifactId>xxl-job-core</artifactId>
  73. <version>2.2.0</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.springframework.boot</groupId>
  77. <artifactId>spring-boot-starter-freemarker</artifactId>
  78. </dependency>
  79. <dependency>
  80. <groupId>junit</groupId>
  81. <artifactId>junit</artifactId>
  82. <scope>test</scope>
  83. </dependency>
  84. <dependency>
  85. <groupId>com.tofly</groupId>
  86. <artifactId>common-ftp</artifactId>
  87. <version>1.0.0</version>
  88. <scope>compile</scope>
  89. </dependency>
  90. <dependency>
  91. <groupId>com.itextpdf</groupId>
  92. <artifactId>itextpdf</artifactId>
  93. <version>5.5.13.1</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.apache.httpcomponents</groupId>
  97. <artifactId>httpcore</artifactId>
  98. <version>4.4.11</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>net.sf.jacob-project</groupId>
  102. <artifactId>jacob</artifactId>
  103. <version>1.14.3</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.springframework</groupId>
  107. <artifactId>spring-test</artifactId>
  108. </dependency>
  109. </dependencies>
  110. <build>
  111. <plugins>
  112. <plugin>
  113. <groupId>org.springframework.boot</groupId>
  114. <artifactId>spring-boot-maven-plugin</artifactId>
  115. <executions>
  116. <execution>
  117. <goals>
  118. <goal>repackage</goal>
  119. </goals>
  120. </execution>
  121. </executions>
  122. </plugin>
  123. </plugins>
  124. </build>
  125. </project>