pom.xml 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  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. <parent>
  7. <artifactId>tofly-webParent</artifactId>
  8. <groupId>com.tofly</groupId>
  9. <version>1.0.0</version>
  10. </parent>
  11. <artifactId>tofly-server</artifactId>
  12. <packaging>jar</packaging>
  13. <version>1.0-SNAPSHOT</version>
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.tofly</groupId>
  17. <artifactId>common-core</artifactId>
  18. <version>1.0.1</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.tofly</groupId>
  22. <artifactId>common-oauth</artifactId>
  23. <version>1.0.0</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.tofly</groupId>
  27. <artifactId>common-redis</artifactId>
  28. <version>1.0.0</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.tofly</groupId>
  32. <artifactId>common-entity</artifactId>
  33. <version>1.0.0</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.tofly</groupId>
  37. <artifactId>common-log</artifactId>
  38. <version>1.0.0</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.dm</groupId>
  42. <artifactId>DmJdbcDriver</artifactId>
  43. <version>1.8.0</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.baomidou</groupId>
  47. <artifactId>mybatis-plus-boot-starter</artifactId>
  48. <version>3.3.0</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.tofly</groupId>
  52. <artifactId>common-orm-mybatisplus</artifactId>
  53. <version>1.0.1</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.apache.commons</groupId>
  57. <artifactId>commons-collections4</artifactId>
  58. <version>4.1</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.jsoup</groupId>
  62. <artifactId>jsoup</artifactId>
  63. <version>1.14.3</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>it.geosolutions</groupId>
  67. <artifactId>geoserver-manager</artifactId>
  68. <version>1.8-SNAPSHOT</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>com.jcraft</groupId>
  72. <artifactId>jsch</artifactId>
  73. <version>0.1.55</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>ch.ethz.ganymed</groupId>
  77. <artifactId>ganymed-ssh2</artifactId>
  78. <version>262</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>dom4j</groupId>
  82. <artifactId>dom4j</artifactId>
  83. <version>1.6.1</version>
  84. </dependency>
  85. <!--<dependency>-->
  86. <!--<groupId>com.tofly</groupId>-->
  87. <!--<artifactId>common-entity</artifactId>-->
  88. <!--<version>1.0.0</version>-->
  89. <!--</dependency>-->
  90. <!--&lt;!&ndash;undertow容器&ndash;&gt;-->
  91. <!--<dependency>-->
  92. <!--<groupId>org.springframework.boot</groupId>-->
  93. <!--<artifactId>spring-boot-starter-undertow</artifactId>-->
  94. <!--</dependency>-->
  95. <!--&lt;!&ndash;spring security 、oauth、jwt依赖&ndash;&gt;-->
  96. <!--<dependency>-->
  97. <!--<groupId>org.springframework.cloud</groupId>-->
  98. <!--<artifactId>spring-cloud-starter-security</artifactId>-->
  99. <!--<exclusions>-->
  100. <!--&lt;!&ndash;旧版本 redis操作有问题&ndash;&gt;-->
  101. <!--<exclusion>-->
  102. <!--<artifactId>spring-security-oauth2</artifactId>-->
  103. <!--<groupId>org.springframework.security.oauth</groupId>-->
  104. <!--</exclusion>-->
  105. <!--</exclusions>-->
  106. <!--</dependency>-->
  107. <!--<dependency>-->
  108. <!--<groupId>org.springframework.security.oauth</groupId>-->
  109. <!--<artifactId>spring-security-oauth2</artifactId>-->
  110. <!--</dependency>-->
  111. <!--JDBC相关-->
  112. <!--<dependency>-->
  113. <!--<groupId>org.springframework.boot</groupId>-->
  114. <!--<artifactId>spring-boot-starter-jdbc</artifactId>-->
  115. <!--</dependency>-->
  116. </dependencies>
  117. <build>
  118. <plugins>
  119. <plugin>
  120. <groupId>org.springframework.boot</groupId>
  121. <artifactId>spring-boot-maven-plugin</artifactId>
  122. <executions>
  123. <execution>
  124. <goals>
  125. <goal>repackage</goal>
  126. </goals>
  127. </execution>
  128. </executions>
  129. </plugin>
  130. </plugins>
  131. </build>
  132. </project>