北斗天云官网管理系统后端接口
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

131 wiersze
3.9KB

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