pom.xml 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  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>xbb</groupId>
  6. <artifactId>carbon-clearing</artifactId>
  7. <version>0.0.1</version>
  8. <packaging>jar</packaging>
  9. <name>bankclear</name>
  10. <description>bank clearing system </description>
  11. <parent>
  12. <groupId>org.springframework.boot</groupId>
  13. <artifactId>spring-boot-starter-parent</artifactId>
  14. <version>2.0.0.RELEASE</version>
  15. <relativePath /> <!-- lookup parent from repository -->
  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. </properties>
  22. <dependencies>
  23. <dependency>
  24. <groupId>log4j</groupId>
  25. <artifactId>log4j</artifactId>
  26. <version>1.2.17</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.apache.camel</groupId>
  30. <artifactId>camel-ftp</artifactId>
  31. <version>2.21.0</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-devtools</artifactId>
  36. <scope>runtime</scope>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-web</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-starter-freemarker</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.springframework.boot</groupId>
  48. <artifactId>spring-boot-starter-test</artifactId>
  49. <scope>test</scope>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.springframework.boot</groupId>
  53. <artifactId>spring-boot-starter-jdbc</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>mysql</groupId>
  57. <artifactId>mysql-connector-java</artifactId>
  58. <scope>runtime</scope>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.jfinal</groupId>
  62. <artifactId>jfinal</artifactId>
  63. <version>3.2</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>com.alibaba</groupId>
  67. <artifactId>fastjson</artifactId>
  68. <version>1.2.41</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.projectlombok</groupId>
  72. <artifactId>lombok</artifactId>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.mybatis</groupId>
  76. <artifactId>mybatis</artifactId>
  77. <version>3.4.5</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.mybatis.spring.boot</groupId>
  81. <artifactId>mybatis-spring-boot-starter</artifactId>
  82. <version>1.3.1</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.apache.httpcomponents</groupId>
  86. <artifactId>httpclient</artifactId>
  87. <version>4.3.3</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>commons-httpclient</groupId>
  91. <artifactId>commons-httpclient</artifactId>
  92. <version>3.1</version>
  93. </dependency>
  94. <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpcore -->
  95. <dependency>
  96. <groupId>org.apache.httpcomponents</groupId>
  97. <artifactId>httpcore</artifactId>
  98. <version>4.4.13</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>org.apache.commons</groupId>
  102. <artifactId>commons-lang3</artifactId>
  103. <version>3.4</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.apache.commons</groupId>
  107. <artifactId>commons-io</artifactId>
  108. <version>1.3.2</version>
  109. </dependency>
  110. <dependency>
  111. <groupId>com.alibaba</groupId>
  112. <artifactId>druid</artifactId>
  113. <version>1.1.9</version>
  114. </dependency>
  115. </dependencies>
  116. <build>
  117. <plugins>
  118. <plugin>
  119. <groupId>org.springframework.boot</groupId>
  120. <artifactId>spring-boot-maven-plugin</artifactId>
  121. </plugin>
  122. <plugin>
  123. <groupId>org.apache.maven.plugins</groupId>
  124. <artifactId>maven-surefire-plugin</artifactId>
  125. <version>2.18.1</version>
  126. <configuration>
  127. <skipTests>true</skipTests>
  128. </configuration>
  129. </plugin>
  130. <!-- mybatis generator-->
  131. <plugin>
  132. <groupId>org.mybatis.generator</groupId>
  133. <artifactId>mybatis-generator-maven-plugin</artifactId>
  134. <version>1.3.5</version>
  135. <dependencies>
  136. <dependency>
  137. <groupId> mysql</groupId>
  138. <artifactId> mysql-connector-java</artifactId>
  139. <version>5.1.39</version>
  140. </dependency>
  141. <dependency>
  142. <groupId>org.mybatis.generator</groupId>
  143. <artifactId>mybatis-generator-core</artifactId>
  144. <version>1.3.5</version>
  145. </dependency>
  146. </dependencies>
  147. <executions>
  148. <execution>
  149. <id>Generate MyBatis Artifacts</id>
  150. <phase>deploy</phase>
  151. <goals>
  152. <goal>generate</goal>
  153. </goals>
  154. </execution>
  155. </executions>
  156. <configuration>
  157. <!--允许移动生成的文件 -->
  158. <verbose>true</verbose>
  159. <!-- 是否覆盖 -->
  160. <overwrite>true</overwrite>
  161. <!-- 自动生成的配置 -->
  162. <configurationFile>src/main/resources/generatorConfig.xml</configurationFile>
  163. </configuration>
  164. </plugin>
  165. </plugins>
  166. </build>
  167. </project>