pom.xml 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  2. <parent>
  3. <groupId>com.qnfhq</groupId>
  4. <artifactId>blockchain-refactor</artifactId>
  5. <version>5.5.0</version>
  6. </parent>
  7. <modelVersion>4.0.0</modelVersion>
  8. <artifactId>qnfhq-admin</artifactId>
  9. <packaging>jar</packaging>
  10. <description>qnfhq-admin</description>
  11. <properties>
  12. <quartz.version>2.3.2</quartz.version>
  13. <shiro.version>1.12.0</shiro.version>
  14. <captcha.version>1.6.2</captcha.version>
  15. <easyexcel.version>3.2.1</easyexcel.version>
  16. <qiniu.version>7.2.27</qiniu.version>
  17. <aliyun.oss.version>2.8.3</aliyun.oss.version>
  18. <aliyun.core.version>3.2.2</aliyun.core.version>
  19. <qcloud.cos.version>5.4.4</qcloud.cos.version>
  20. </properties>
  21. <dependencies>
  22. <dependency>
  23. <groupId>com.qnfhq</groupId>
  24. <artifactId>qnfhq-common</artifactId>
  25. <version>5.5.0</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.qnfhq</groupId>
  29. <artifactId>qnfhq-dynamic-datasource</artifactId>
  30. <version>5.5.0</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.quartz-scheduler</groupId>
  34. <artifactId>quartz</artifactId>
  35. <version>${quartz.version}</version>
  36. <exclusions>
  37. <exclusion>
  38. <groupId>com.mchange</groupId>
  39. <artifactId>c3p0</artifactId>
  40. </exclusion>
  41. <exclusion>
  42. <groupId>com.zaxxer</groupId>
  43. <artifactId>HikariCP-java6</artifactId>
  44. </exclusion>
  45. </exclusions>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.apache.shiro</groupId>
  49. <artifactId>shiro-spring</artifactId>
  50. <classifier>jakarta</classifier>
  51. <version>${shiro.version}</version>
  52. <!-- 排除仍使用了javax.servlet的依赖 -->
  53. <exclusions>
  54. <exclusion>
  55. <groupId>org.apache.shiro</groupId>
  56. <artifactId>shiro-core</artifactId>
  57. </exclusion>
  58. <exclusion>
  59. <groupId>org.apache.shiro</groupId>
  60. <artifactId>shiro-web</artifactId>
  61. </exclusion>
  62. </exclusions>
  63. </dependency>
  64. <!-- 引入适配jakarta的依赖包 -->
  65. <dependency>
  66. <groupId>org.apache.shiro</groupId>
  67. <artifactId>shiro-core</artifactId>
  68. <classifier>jakarta</classifier>
  69. <version>${shiro.version}</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.apache.shiro</groupId>
  73. <artifactId>shiro-web</artifactId>
  74. <classifier>jakarta</classifier>
  75. <version>${shiro.version}</version>
  76. <exclusions>
  77. <exclusion>
  78. <groupId>org.apache.shiro</groupId>
  79. <artifactId>shiro-core</artifactId>
  80. </exclusion>
  81. </exclusions>
  82. </dependency>
  83. <dependency>
  84. <groupId>com.github.whvcse</groupId>
  85. <artifactId>easy-captcha</artifactId>
  86. <version>${captcha.version}</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>com.alibaba</groupId>
  90. <artifactId>easyexcel</artifactId>
  91. <version>${easyexcel.version}</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>com.qiniu</groupId>
  95. <artifactId>qiniu-java-sdk</artifactId>
  96. <version>${qiniu.version}</version>
  97. </dependency>
  98. <dependency>
  99. <groupId>com.aliyun.oss</groupId>
  100. <artifactId>aliyun-sdk-oss</artifactId>
  101. <version>${aliyun.oss.version}</version>
  102. </dependency>
  103. <dependency>
  104. <groupId>com.aliyun</groupId>
  105. <artifactId>aliyun-java-sdk-core</artifactId>
  106. <version>${aliyun.core.version}</version>
  107. </dependency>
  108. <dependency>
  109. <groupId>com.qcloud</groupId>
  110. <artifactId>cos_api</artifactId>
  111. <version>${qcloud.cos.version}</version>
  112. <exclusions>
  113. <exclusion>
  114. <groupId>org.slf4j</groupId>
  115. <artifactId>slf4j-log4j12</artifactId>
  116. </exclusion>
  117. </exclusions>
  118. </dependency>
  119. </dependencies>
  120. <build>
  121. <finalName>${project.artifactId}</finalName>
  122. <plugins>
  123. <plugin>
  124. <groupId>org.springframework.boot</groupId>
  125. <artifactId>spring-boot-maven-plugin</artifactId>
  126. </plugin>
  127. <plugin>
  128. <groupId>org.apache.maven.plugins</groupId>
  129. <artifactId>maven-surefire-plugin</artifactId>
  130. <configuration>
  131. <skipTests>true</skipTests>
  132. </configuration>
  133. </plugin>
  134. </plugins>
  135. </build>
  136. </project>