pom.xml 4.8 KB

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