pom.xml 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  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>renren-generator</artifactId>
  7. <version>1.0.0</version>
  8. <packaging>jar</packaging>
  9. <description>renren-generator</description>
  10. <parent>
  11. <groupId>org.springframework.boot</groupId>
  12. <artifactId>spring-boot-starter-parent</artifactId>
  13. <version>2.2.6.RELEASE</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. <mybatisplus.version>3.3.1</mybatisplus.version>
  20. <druid.version>1.1.13</druid.version>
  21. <commons.lang.version>2.6</commons.lang.version>
  22. <commons.io.version>2.5</commons.io.version>
  23. <commons.configuration.version>1.10</commons.configuration.version>
  24. <fastjson.version>1.2.60</fastjson.version>
  25. <velocity.version>1.7</velocity.version>
  26. <pagehelper.spring.boot.version>1.2.5</pagehelper.spring.boot.version>
  27. <mysql.version>8.0.17</mysql.version>
  28. <mssql.version>4.0</mssql.version>
  29. <oracle.version>11.2.0.3</oracle.version>
  30. <mongo.version>3.11.0</mongo.version>
  31. </properties>
  32. <dependencies>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-test</artifactId>
  36. <scope>test</scope>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-web</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.baomidou</groupId>
  44. <artifactId>mybatis-plus-boot-starter</artifactId>
  45. <version>${mybatisplus.version}</version>
  46. <exclusions>
  47. <exclusion>
  48. <groupId>com.baomidou</groupId>
  49. <artifactId>mybatis-plus-generator</artifactId>
  50. </exclusion>
  51. </exclusions>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.alibaba</groupId>
  55. <artifactId>druid</artifactId>
  56. <version>${druid.version}</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>commons-lang</groupId>
  60. <artifactId>commons-lang</artifactId>
  61. <version>${commons.lang.version}</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>commons-io</groupId>
  65. <artifactId>commons-io</artifactId>
  66. <version>${commons.io.version}</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>commons-configuration</groupId>
  70. <artifactId>commons-configuration</artifactId>
  71. <version>${commons.configuration.version}</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>com.alibaba</groupId>
  75. <artifactId>fastjson</artifactId>
  76. <version>${fastjson.version}</version>
  77. </dependency>
  78. <dependency>
  79. <artifactId>velocity</artifactId>
  80. <groupId>org.apache.velocity</groupId>
  81. <version>${velocity.version}</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>com.github.pagehelper</groupId>
  85. <artifactId>pagehelper-spring-boot-starter</artifactId>
  86. <version>${pagehelper.spring.boot.version}</version>
  87. <exclusions>
  88. <exclusion>
  89. <groupId>org.mybatis</groupId>
  90. <artifactId>mybatis</artifactId>
  91. </exclusion>
  92. <exclusion>
  93. <groupId>org.mybatis</groupId>
  94. <artifactId>mybatis-spring</artifactId>
  95. </exclusion>
  96. </exclusions>
  97. </dependency>
  98. <!-- mysql驱动 -->
  99. <dependency>
  100. <groupId>mysql</groupId>
  101. <artifactId>mysql-connector-java</artifactId>
  102. <version>${mysql.version}</version>
  103. </dependency>
  104. <!-- oracle驱动 -->
  105. <dependency>
  106. <groupId>com.oracle</groupId>
  107. <artifactId>ojdbc6</artifactId>
  108. <version>${oracle.version}</version>
  109. </dependency>
  110. <!-- sqlserver驱动 -->
  111. <dependency>
  112. <groupId>com.microsoft.sqlserver</groupId>
  113. <artifactId>sqljdbc4</artifactId>
  114. <version>${mssql.version}</version>
  115. </dependency>
  116. <!-- postgresql驱动 -->
  117. <dependency>
  118. <groupId>org.postgresql</groupId>
  119. <artifactId>postgresql</artifactId>
  120. </dependency>
  121. <!-- mongo驱动 -->
  122. <dependency>
  123. <groupId>org.mongodb</groupId>
  124. <artifactId>mongo-java-driver</artifactId>
  125. <version>${mongo.version}</version>
  126. </dependency>
  127. </dependencies>
  128. <build>
  129. <plugins>
  130. <plugin>
  131. <groupId>org.springframework.boot</groupId>
  132. <artifactId>spring-boot-maven-plugin</artifactId>
  133. </plugin>
  134. </plugins>
  135. </build>
  136. <repositories>
  137. <repository>
  138. <id>public</id>
  139. <name>aliyun nexus</name>
  140. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  141. <releases>
  142. <enabled>true</enabled>
  143. </releases>
  144. </repository>
  145. </repositories>
  146. <pluginRepositories>
  147. <pluginRepository>
  148. <id>public</id>
  149. <name>aliyun nexus</name>
  150. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  151. <releases>
  152. <enabled>true</enabled>
  153. </releases>
  154. <snapshots>
  155. <enabled>false</enabled>
  156. </snapshots>
  157. </pluginRepository>
  158. </pluginRepositories>
  159. </project>