pom.xml 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  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-xld</artifactId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <artifactId>gis-authorize</artifactId>
  11. <version>1.0.0</version>
  12. <packaging>jar</packaging>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.squareup.okhttp3</groupId>
  16. <artifactId>okhttp</artifactId>
  17. <version>4.8.1</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.bouncycastle</groupId>
  21. <artifactId>bcprov-jdk15on</artifactId>
  22. <version>1.70</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>commons-codec</groupId>
  26. <artifactId>commons-codec</artifactId>
  27. <version>1.15</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-amqp</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.amqp</groupId>
  35. <artifactId>spring-rabbit-test</artifactId>
  36. <scope>test</scope>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.baomidou</groupId>
  40. <artifactId>mybatis-plus-boot-starter</artifactId>
  41. <version>3.5.1</version>
  42. </dependency>
  43. <dependency>
  44. <artifactId>fastjson</artifactId>
  45. <groupId>com.alibaba</groupId>
  46. <version>1.2.73</version>
  47. </dependency>
  48. <dependency>
  49. <artifactId>druid-spring-boot-starter</artifactId>
  50. <groupId>com.alibaba</groupId>
  51. <version>1.1.16</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.tofly</groupId>
  55. <artifactId>common-core</artifactId>
  56. <version>1.0.0</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.tofly</groupId>
  60. <artifactId>common-log</artifactId>
  61. <version>1.0.0</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.tofly</groupId>
  65. <artifactId>common-baseapi</artifactId>
  66. <version>1.0.0</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>com.tofly</groupId>
  70. <artifactId>common-redis</artifactId>
  71. <version>1.0.0</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.springframework.security</groupId>
  75. <artifactId>spring-security-web</artifactId>
  76. <version>5.3.2.RELEASE</version>
  77. <exclusions>
  78. <exclusion>
  79. <groupId>org.springframework.security</groupId>
  80. <artifactId>spring-security-config</artifactId>
  81. </exclusion>
  82. </exclusions>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.springframework.security</groupId>
  86. <artifactId>spring-security-config</artifactId>
  87. <version>5.3.2.RELEASE</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>javax.validation</groupId>
  91. <artifactId>validation-api</artifactId>
  92. </dependency>
  93. <dependency>
  94. <groupId>commons-net</groupId>
  95. <artifactId>commons-net</artifactId>
  96. <version>3.6</version>
  97. </dependency>
  98. <dependency>
  99. <groupId>cn.hutool</groupId>
  100. <artifactId>hutool-all</artifactId>
  101. <version>5.8.3</version>
  102. <scope>compile</scope>
  103. </dependency>
  104. <dependency>
  105. <groupId>redis.clients</groupId>
  106. <artifactId>jedis</artifactId>
  107. </dependency>
  108. <dependency>
  109. <groupId>org.springframework.boot</groupId>
  110. <artifactId>spring-boot-starter-aop</artifactId>
  111. </dependency>
  112. <dependency>
  113. <groupId>com.github.ulisesbocchio</groupId>
  114. <artifactId>jasypt-spring-boot-starter</artifactId>
  115. <version>2.1.0</version>
  116. </dependency>
  117. </dependencies>
  118. <build>
  119. <plugins>
  120. <plugin>
  121. <groupId>org.springframework.boot</groupId>
  122. <artifactId>spring-boot-maven-plugin</artifactId>
  123. <executions>
  124. <execution>
  125. <goals>
  126. <goal>repackage</goal>
  127. </goals>
  128. </execution>
  129. </executions>
  130. </plugin>
  131. <plugin>
  132. <groupId>org.apache.maven.plugins</groupId>
  133. <artifactId>maven-compiler-plugin</artifactId>
  134. </plugin>
  135. </plugins>
  136. </build>
  137. </project>