pom.xml 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200
  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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.wteam.generator</groupId>
  6. <artifactId>generator</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <name>generator</name>
  9. <packaging>jar</packaging>
  10. <description>generator</description>
  11. <parent>
  12. <groupId>com.wteam.spring</groupId>
  13. <artifactId>spring</artifactId>
  14. <version>0.0.1-SNAPSHOT</version>
  15. <relativePath>../pom.xml</relativePath>
  16. </parent>
  17. <properties>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  20. <java.version>1.8</java.version>
  21. <mybatis.spring.boot.version>2.2.2</mybatis.spring.boot.version>
  22. <pagehelper.spring.boot.version>1.4.2</pagehelper.spring.boot.version>
  23. <druid.version>1.2.13</druid.version>
  24. <commons.lang.version>2.6</commons.lang.version>
  25. <commons.io.version>2.11.0</commons.io.version>
  26. <commons.configuration.version>1.10</commons.configuration.version>
  27. <velocity.version>1.7</velocity.version>
  28. <mssql.version>4.0</mssql.version>
  29. <oracle.version>11.2.0.3</oracle.version>
  30. </properties>
  31. <dependencies>
  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>${mybatis.spring.boot.version}</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-lang</groupId>
  53. <artifactId>commons-lang</artifactId>
  54. <version>${commons.lang.version}</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>commons-io</groupId>
  58. <artifactId>commons-io</artifactId>
  59. <version>${commons.io.version}</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>commons-configuration</groupId>
  63. <artifactId>commons-configuration</artifactId>
  64. <version>${commons.configuration.version}</version>
  65. </dependency>
  66. <dependency>
  67. <artifactId>velocity</artifactId>
  68. <groupId>org.apache.velocity</groupId>
  69. <version>${velocity.version}</version>
  70. </dependency>
  71. <!-- mysql驱动 -->
  72. <dependency>
  73. <groupId>mysql</groupId>
  74. <artifactId>mysql-connector-java</artifactId>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.springframework.boot</groupId>
  78. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  79. </dependency>
  80. </dependencies>
  81. <build>
  82. <plugins>
  83. <plugin>
  84. <groupId>org.apache.maven.plugins</groupId>
  85. <artifactId>maven-compiler-plugin</artifactId>
  86. <version>3.8.1</version>
  87. <configuration>
  88. <source>1.8</source>
  89. <target>1.8</target>
  90. <encoding>UTF-8</encoding>
  91. </configuration>
  92. </plugin>
  93. </plugins>
  94. </build>
  95. <!-- 阿里云maven仓库 -->
  96. <repositories>
  97. <repository>
  98. <id>public</id>
  99. <name>aliyun nexus</name>
  100. <url>https://maven.aliyun.com/repository/public/</url>
  101. <releases>
  102. <enabled>true</enabled>
  103. </releases>
  104. </repository>
  105. </repositories>
  106. <pluginRepositories>
  107. <pluginRepository>
  108. <id>public</id>
  109. <name>aliyun nexus</name>
  110. <url>https://maven.aliyun.com/repository/public/</url>
  111. <releases>
  112. <enabled>true</enabled>
  113. </releases>
  114. <snapshots>
  115. <enabled>false</enabled>
  116. </snapshots>
  117. </pluginRepository>
  118. </pluginRepositories>
  119. <!-- <properties>-->
  120. <!-- <java.version>1.8</java.version>-->
  121. <!-- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>-->
  122. <!-- <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>-->
  123. <!-- <spring-boot.version>2.3.7.RELEASE</spring-boot.version>-->
  124. <!-- </properties>-->
  125. <!-- <dependencies>-->
  126. <!-- <dependency>-->
  127. <!-- <groupId>org.springframework.boot</groupId>-->
  128. <!-- <artifactId>spring-boot-starter</artifactId>-->
  129. <!-- </dependency>-->
  130. <!-- <dependency>-->
  131. <!-- <groupId>org.springframework.boot</groupId>-->
  132. <!-- <artifactId>spring-boot-starter-test</artifactId>-->
  133. <!-- <scope>test</scope>-->
  134. <!-- <exclusions>-->
  135. <!-- <exclusion>-->
  136. <!-- <groupId>org.junit.vintage</groupId>-->
  137. <!-- <artifactId>junit-vintage-engine</artifactId>-->
  138. <!-- </exclusion>-->
  139. <!-- </exclusions>-->
  140. <!-- </dependency>-->
  141. <!-- </dependencies>-->
  142. <!-- <dependencyManagement>-->
  143. <!-- <dependencies>-->
  144. <!-- <dependency>-->
  145. <!-- <groupId>org.springframework.boot</groupId>-->
  146. <!-- <artifactId>spring-boot-dependencies</artifactId>-->
  147. <!-- <version>${spring-boot.version}</version>-->
  148. <!-- <type>pom</type>-->
  149. <!-- <scope>import</scope>-->
  150. <!-- </dependency>-->
  151. <!-- </dependencies>-->
  152. <!-- </dependencyManagement>-->
  153. <!-- <build>-->
  154. <!-- <plugins>-->
  155. <!-- <plugin>-->
  156. <!-- <groupId>org.apache.maven.plugins</groupId>-->
  157. <!-- <artifactId>maven-compiler-plugin</artifactId>-->
  158. <!-- <version>3.8.1</version>-->
  159. <!-- <configuration>-->
  160. <!-- <source>1.8</source>-->
  161. <!-- <target>1.8</target>-->
  162. <!-- <encoding>UTF-8</encoding>-->
  163. <!-- </configuration>-->
  164. <!-- </plugin>-->
  165. <!-- <plugin>-->
  166. <!-- <groupId>org.springframework.boot</groupId>-->
  167. <!-- <artifactId>spring-boot-maven-plugin</artifactId>-->
  168. <!-- <version>2.3.7.RELEASE</version>-->
  169. <!-- <configuration>-->
  170. <!-- <mainClass>com.wteam.generator.GeneratorApplication</mainClass>-->
  171. <!-- </configuration>-->
  172. <!-- <executions>-->
  173. <!-- <execution>-->
  174. <!-- <id>repackage</id>-->
  175. <!-- <goals>-->
  176. <!-- <goal>repackage</goal>-->
  177. <!-- </goals>-->
  178. <!-- </execution>-->
  179. <!-- </executions>-->
  180. <!-- </plugin>-->
  181. <!-- </plugins>-->
  182. <!-- </build>-->
  183. </project>