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.

179 lines
6.0 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>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-web</artifactId>
  28. <exclusions>
  29. <exclusion>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-logging</artifactId>
  32. </exclusion>
  33. </exclusions>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.mybatis.spring.boot</groupId>
  37. <artifactId>mybatis-spring-boot-starter</artifactId>
  38. <version>1.3.1</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.alibaba</groupId>
  42. <artifactId>fastjson</artifactId>
  43. <version>1.1.22</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-starter-log4j</artifactId>
  48. <version>1.3.8.RELEASE</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.springframework.boot</groupId>
  52. <artifactId>spring-boot-starter-test</artifactId>
  53. <scope>test</scope>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.bfd.mf</groupId>
  57. <artifactId>serviceManager</artifactId>
  58. <version>2.0-SNAPSHOT</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.bfd.mf</groupId>
  62. <artifactId>dataSaveManager</artifactId>
  63. <version>2.0-SNAPSHOT</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>javax.servlet</groupId>
  67. <artifactId>jstl</artifactId>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.apache.tomcat.embed</groupId>
  71. <artifactId>tomcat-embed-jasper</artifactId>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.apache.poi</groupId>
  75. <artifactId>poi</artifactId>
  76. <version>3.15</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.apache.poi</groupId>
  80. <artifactId>poi-ooxml</artifactId>
  81. <version>3.15</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>net.sf.json-lib</groupId>
  85. <artifactId>json-lib</artifactId>
  86. <version>2.4</version>
  87. <classifier>jdk15</classifier>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.elasticsearch</groupId>
  91. <artifactId>elasticsearch</artifactId>
  92. <version>6.0.0</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.elasticsearch.client</groupId>
  96. <artifactId>transport</artifactId>
  97. <version>6.0.0</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>mysql</groupId>
  101. <artifactId>mysql-connector-java</artifactId>
  102. <scope>runtime</scope>
  103. </dependency>
  104. <dependency>
  105. <groupId>log4j</groupId>
  106. <artifactId>log4j</artifactId>
  107. <version>1.2.17</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>org.slf4j</groupId>
  111. <artifactId>slf4j-api</artifactId>
  112. <version>1.7.25</version>
  113. </dependency>
  114. </dependencies>
  115. <build>
  116. <plugins>
  117. <plugin>
  118. <groupId>org.springframework.boot</groupId>
  119. <artifactId>spring-boot-maven-plugin</artifactId>
  120. <version>1.4.2.RELEASE</version>
  121. <configuration>
  122. <mainClass>com.bfd.mf.TestmybatisApplication</mainClass>
  123. </configuration>
  124. <executions>
  125. <execution>
  126. <goals>
  127. <goal>repackage</goal>
  128. </goals>
  129. </execution>
  130. </executions>
  131. </plugin>
  132. <plugin>
  133. <artifactId>maven-compiler-plugin</artifactId>
  134. <configuration>
  135. <source>1.8</source>
  136. <target>1.8</target>
  137. </configuration>
  138. </plugin>
  139. <plugin>
  140. <groupId>org.apache.maven.plugins</groupId>
  141. <artifactId>maven-war-plugin</artifactId>
  142. <configuration>
  143. <failOnMissingWebXml>false</failOnMissingWebXml>
  144. </configuration>
  145. </plugin>
  146. </plugins>
  147. <resources>
  148. <resource>
  149. <directory>${project.basedir}/src/main/webapp</directory>
  150. <!--注意此次必须要放在此目录下才能被访问到-->
  151. <targetPath>META-INF/resources</targetPath>
  152. <includes>
  153. <include>**/**</include>
  154. </includes>
  155. </resource>
  156. <resource>
  157. <directory>${project.basedir}/src/main/resources</directory>
  158. <includes>
  159. <include>**/**</include>
  160. </includes>
  161. </resource>
  162. </resources>
  163. </build>
  164. </project>