You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

198 lines
6.8 KiB

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <!--<parent>-->
  6. <!--<artifactId>cl_stream</artifactId>-->
  7. <!--<groupId>com.bfd.mf</groupId>-->
  8. <!--<version>2.0-SNAPSHOT</version>-->
  9. <!--</parent>-->
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>cl_stream_mybatis</artifactId>
  12. <parent>
  13. <groupId>org.springframework.boot</groupId>
  14. <artifactId>spring-boot-starter-parent</artifactId>
  15. <version>1.4.3.RELEASE</version>
  16. <relativePath/> <!-- lookup parent from repository -->
  17. </parent>
  18. <properties>
  19. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  20. <!--<spring-boot-version>2.0.0.RELEASE</spring-boot-version>-->
  21. <skipTests>true</skipTests>
  22. <java.version>1.8</java.version>
  23. </properties>
  24. <dependencies>
  25. <dependency>
  26. <groupId>BfdRedisTools-2.0</groupId>
  27. <artifactId>BfdRedisTools-2.0</artifactId>
  28. <version>1.0.0</version>
  29. <scope>system</scope>
  30. <systemPath>${project.basedir}/../../jarlib/BfdRedisTools-2.0.jar</systemPath>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-web</artifactId>
  35. <exclusions>
  36. <exclusion>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-logging</artifactId>
  39. </exclusion>
  40. </exclusions>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.mybatis.spring.boot</groupId>
  44. <artifactId>mybatis-spring-boot-starter</artifactId>
  45. <version>1.3.1</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.alibaba</groupId>
  49. <artifactId>fastjson</artifactId>
  50. <version>1.1.22</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.springframework.boot</groupId>
  54. <artifactId>spring-boot-starter-log4j</artifactId>
  55. <version>1.3.8.RELEASE</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.springframework.boot</groupId>
  59. <artifactId>spring-boot-starter-test</artifactId>
  60. <scope>test</scope>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.bfd.mf</groupId>
  64. <artifactId>serviceManager</artifactId>
  65. <version>2.0-SNAPSHOT</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>com.bfd.mf</groupId>
  69. <artifactId>dataSaveManager</artifactId>
  70. <version>2.0-SNAPSHOT</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>javax.servlet</groupId>
  74. <artifactId>jstl</artifactId>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.apache.tomcat.embed</groupId>
  78. <artifactId>tomcat-embed-jasper</artifactId>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.apache.poi</groupId>
  82. <artifactId>poi</artifactId>
  83. <version>3.15</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.apache.poi</groupId>
  87. <artifactId>poi-ooxml</artifactId>
  88. <version>3.15</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>net.sf.json-lib</groupId>
  92. <artifactId>json-lib</artifactId>
  93. <version>2.4</version>
  94. <classifier>jdk15</classifier>
  95. </dependency>
  96. <dependency>
  97. <groupId>org.elasticsearch</groupId>
  98. <artifactId>elasticsearch</artifactId>
  99. <version>6.0.0</version>
  100. </dependency>
  101. <dependency>
  102. <groupId>org.elasticsearch.client</groupId>
  103. <artifactId>transport</artifactId>
  104. <version>6.0.0</version>
  105. </dependency>
  106. <dependency>
  107. <groupId>mysql</groupId>
  108. <artifactId>mysql-connector-java</artifactId>
  109. <scope>runtime</scope>
  110. </dependency>
  111. <dependency>
  112. <groupId>log4j</groupId>
  113. <artifactId>log4j</artifactId>
  114. <version>1.2.17</version>
  115. </dependency>
  116. <dependency>
  117. <groupId>org.slf4j</groupId>
  118. <artifactId>slf4j-api</artifactId>
  119. <version>1.7.25</version>
  120. </dependency>
  121. <dependency>
  122. <groupId>com.liferay.org.apache.commons.fileupload</groupId>
  123. <artifactId>com.liferay.org.apache.commons.fileupload</artifactId>
  124. <version>6.2.0.1</version>
  125. </dependency>
  126. <dependency>
  127. <groupId>commons-io</groupId>
  128. <artifactId>commons-io</artifactId>
  129. <version>2.5</version>
  130. </dependency>
  131. </dependencies>
  132. <build>
  133. <plugins>
  134. <plugin>
  135. <groupId>org.springframework.boot</groupId>
  136. <artifactId>spring-boot-maven-plugin</artifactId>
  137. <version>1.4.2.RELEASE</version>
  138. <configuration>
  139. <mainClass>com.bfd.mf.TestmybatisApplication</mainClass>
  140. </configuration>
  141. <executions>
  142. <execution>
  143. <goals>
  144. <goal>repackage</goal>
  145. </goals>
  146. </execution>
  147. </executions>
  148. </plugin>
  149. <plugin>
  150. <artifactId>maven-compiler-plugin</artifactId>
  151. <configuration>
  152. <source>1.8</source>
  153. <target>1.8</target>
  154. </configuration>
  155. </plugin>
  156. <plugin>
  157. <groupId>org.apache.maven.plugins</groupId>
  158. <artifactId>maven-jar-plugin</artifactId>
  159. <version>3.1.1</version>
  160. <!--<configuration>-->
  161. <!--<failOnMissingWebXml>false</failOnMissingWebXml>-->
  162. <!--</configuration>-->
  163. </plugin>
  164. </plugins>
  165. <resources>
  166. <resource>
  167. <directory>${project.basedir}/src/main/webapp</directory>
  168. <!--注意此次必须要放在此目录下才能被访问到-->
  169. <targetPath>META-INF/resources</targetPath>
  170. <includes>
  171. <include>**/**</include>
  172. </includes>
  173. </resource>
  174. <resource>
  175. <directory>${project.basedir}/src/main/resources</directory>
  176. <includes>
  177. <include>**/**</include>
  178. </includes>
  179. </resource>
  180. </resources>
  181. </build>
  182. </project>