pom.xml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <artifactId>qnfhq-generator</artifactId>
  6. <packaging>jar</packaging>
  7. <description>qnfhq-generator</description>
  8. <parent>
  9. <groupId>com.qnfhq</groupId>
  10. <artifactId>blockchain-refactor</artifactId>
  11. <version>5.5.0</version>
  12. </parent>
  13. <properties>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  16. <java.version>21</java.version>
  17. <pagehelper.spring.boot.version>1.4.7</pagehelper.spring.boot.version>
  18. <druid.version>1.2.23</druid.version>
  19. <commons.configuration.version>1.10</commons.configuration.version>
  20. <velocity.version>1.7</velocity.version>
  21. <mssql.version>4.0</mssql.version>
  22. <oracle.version>11.2.0.3</oracle.version>
  23. <dameng.version>8.1.2.141</dameng.version>
  24. <hutool.version>5.8.29</hutool.version>
  25. </properties>
  26. <dependencies>
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-test</artifactId>
  30. <scope>test</scope>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-web</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.mybatis.spring.boot</groupId>
  38. <artifactId>mybatis-spring-boot-starter</artifactId>
  39. <version>3.0.4</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.github.pagehelper</groupId>
  43. <artifactId>pagehelper-spring-boot-starter</artifactId>
  44. <version>${pagehelper.spring.boot.version}</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.alibaba</groupId>
  48. <artifactId>druid</artifactId>
  49. <version>${druid.version}</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>commons-configuration</groupId>
  53. <artifactId>commons-configuration</artifactId>
  54. <version>${commons.configuration.version}</version>
  55. </dependency>
  56. <dependency>
  57. <artifactId>velocity</artifactId>
  58. <groupId>org.apache.velocity</groupId>
  59. <version>${velocity.version}</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>cn.hutool</groupId>
  63. <artifactId>hutool-all</artifactId>
  64. <version>${hutool.version}</version>
  65. </dependency>
  66. <!-- mysql驱动 -->
  67. <dependency>
  68. <groupId>com.mysql</groupId>
  69. <artifactId>mysql-connector-j</artifactId>
  70. </dependency>
  71. <!-- oracle驱动 -->
  72. <dependency>
  73. <groupId>com.oracle</groupId>
  74. <artifactId>ojdbc6</artifactId>
  75. <version>${oracle.version}</version>
  76. </dependency>
  77. <!-- sqlserver驱动 -->
  78. <dependency>
  79. <groupId>com.microsoft.sqlserver</groupId>
  80. <artifactId>sqljdbc4</artifactId>
  81. <version>${mssql.version}</version>
  82. </dependency>
  83. <!-- postgresql驱动 -->
  84. <dependency>
  85. <groupId>org.postgresql</groupId>
  86. <artifactId>postgresql</artifactId>
  87. </dependency>
  88. <!-- 达梦驱动 -->
  89. <dependency>
  90. <groupId>com.dameng</groupId>
  91. <artifactId>DmJdbcDriver18</artifactId>
  92. <version>${dameng.version}</version>
  93. </dependency>
  94. </dependencies>
  95. <build>
  96. <plugins>
  97. <plugin>
  98. <groupId>org.springframework.boot</groupId>
  99. <artifactId>spring-boot-maven-plugin</artifactId>
  100. </plugin>
  101. </plugins>
  102. </build>
  103. <!-- 阿里云maven仓库 -->
  104. <repositories>
  105. <repository>
  106. <id>public</id>
  107. <name>aliyun nexus</name>
  108. <url>https://maven.aliyun.com/repository/public/</url>
  109. <releases>
  110. <enabled>true</enabled>
  111. </releases>
  112. </repository>
  113. </repositories>
  114. <pluginRepositories>
  115. <pluginRepository>
  116. <id>public</id>
  117. <name>aliyun nexus</name>
  118. <url>https://maven.aliyun.com/repository/public/</url>
  119. <releases>
  120. <enabled>true</enabled>
  121. </releases>
  122. <snapshots>
  123. <enabled>false</enabled>
  124. </snapshots>
  125. </pluginRepository>
  126. </pluginRepositories>
  127. </project>