pom.xml 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  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>bankclear</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>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter-log4j2</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.apache.camel</groupId>
  29. <artifactId>camel-ftp</artifactId>
  30. <version>2.21.0</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-devtools</artifactId>
  35. <scope>runtime</scope>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-web</artifactId>
  40. <exclusions>
  41. <!-- 排除掉logging,不使用logback,改用log4j2 -->
  42. <exclusion>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-starter-logging</artifactId>
  45. </exclusion>
  46. </exclusions>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-starter-freemarker</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.springframework.boot</groupId>
  54. <artifactId>spring-boot-starter-test</artifactId>
  55. <scope>test</scope>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.springframework.boot</groupId>
  59. <artifactId>spring-boot-starter-jdbc</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>mysql</groupId>
  63. <artifactId>mysql-connector-java</artifactId>
  64. <scope>runtime</scope>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.jfinal</groupId>
  68. <artifactId>jfinal</artifactId>
  69. <version>3.2</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>com.alibaba</groupId>
  73. <artifactId>fastjson</artifactId>
  74. <version>1.2.41</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.projectlombok</groupId>
  78. <artifactId>lombok</artifactId>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.mybatis</groupId>
  82. <artifactId>mybatis</artifactId>
  83. <version>3.4.5</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.mybatis.spring.boot</groupId>
  87. <artifactId>mybatis-spring-boot-starter</artifactId>
  88. <version>1.3.1</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.apache.httpcomponents</groupId>
  92. <artifactId>httpclient</artifactId>
  93. <version>4.3.3</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>commons-httpclient</groupId>
  97. <artifactId>commons-httpclient</artifactId>
  98. <version>3.1</version>
  99. </dependency>
  100. <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpcore -->
  101. <dependency>
  102. <groupId>org.apache.httpcomponents</groupId>
  103. <artifactId>httpcore</artifactId>
  104. <version>4.4.13</version>
  105. </dependency>
  106. <dependency>
  107. <groupId>org.apache.commons</groupId>
  108. <artifactId>commons-lang3</artifactId>
  109. <version>3.4</version>
  110. </dependency>
  111. <dependency>
  112. <groupId>org.apache.commons</groupId>
  113. <artifactId>commons-io</artifactId>
  114. <version>1.3.2</version>
  115. </dependency>
  116. <dependency>
  117. <groupId>com.alibaba</groupId>
  118. <artifactId>druid</artifactId>
  119. <version>1.1.9</version>
  120. </dependency>
  121. <dependency>
  122. <groupId>log4j</groupId>
  123. <artifactId>log4j</artifactId>
  124. <version>1.2.17</version>
  125. <scope>compile</scope>
  126. </dependency>
  127. </dependencies>
  128. <build>
  129. <resources>
  130. <resource>
  131. <directory>src/main/java</directory>
  132. <includes>
  133. <include>**/*.xml</include>
  134. </includes>
  135. <filtering>false</filtering>
  136. </resource>
  137. <resource>
  138. <directory>src/main/resources</directory>
  139. <excludes>
  140. <exclude>*.sh</exclude>
  141. </excludes>
  142. <filtering>false</filtering>
  143. </resource>
  144. </resources>
  145. <plugins>
  146. <plugin>
  147. <groupId>org.apache.maven.plugins</groupId>
  148. <artifactId>maven-compiler-plugin</artifactId>
  149. <configuration>
  150. <source>1.8</source>
  151. <target>1.8</target>
  152. <encoding>utf-8</encoding>
  153. </configuration>
  154. </plugin>
  155. <plugin>
  156. <groupId>org.springframework.boot</groupId>
  157. <artifactId>spring-boot-maven-plugin</artifactId>
  158. </plugin>
  159. <plugin>
  160. <groupId>org.apache.maven.plugins</groupId>
  161. <artifactId>maven-assembly-plugin</artifactId>
  162. <executions>
  163. <execution>
  164. <id>assembly</id>
  165. <phase>package</phase>
  166. <goals>
  167. <goal>single</goal>
  168. </goals>
  169. <configuration>
  170. <descriptors>
  171. <descriptor>src/main/assembly/assembly.xml</descriptor>
  172. </descriptors>
  173. </configuration>
  174. </execution>
  175. </executions>
  176. </plugin>
  177. <plugin>
  178. <groupId>org.apache.maven.plugins</groupId>
  179. <artifactId>maven-surefire-plugin</artifactId>
  180. <configuration>
  181. <skip>true</skip>
  182. </configuration>
  183. </plugin>
  184. </plugins>
  185. </build>
  186. </project>