pom.xml 5.0 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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.hb</groupId>
  6. <artifactId>lhLoggingCarNew</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <packaging>war</packaging>
  9. <name>lhloggingcar Maven Webapp</name>
  10. <!-- FIXME change it to the project's website -->
  11. <url>http://www.example.com</url>
  12. <properties>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. <maven.compiler.source>1.7</maven.compiler.source>
  15. <maven.compiler.target>1.7</maven.compiler.target>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>javax.servlet</groupId>
  20. <artifactId>servlet-api</artifactId>
  21. <version>2.5</version>
  22. <scope>provided</scope>
  23. </dependency>
  24. <dependency>
  25. <groupId>javax.servlet.jsp</groupId>
  26. <artifactId>jsp-api</artifactId>
  27. <version>2.1</version>
  28. <scope>provided</scope>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework</groupId>
  32. <artifactId>spring-webmvc</artifactId>
  33. <version>4.3.21.RELEASE</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springframework</groupId>
  37. <artifactId>spring-tx</artifactId>
  38. <version>4.3.21.RELEASE</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>commons-dbcp</groupId>
  42. <artifactId>commons-dbcp</artifactId>
  43. <version>1.4</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.aspectj</groupId>
  47. <artifactId>aspectjweaver</artifactId>
  48. <version>1.7.1</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.springframework</groupId>
  52. <artifactId>spring-jdbc</artifactId>
  53. <version>4.3.21.RELEASE</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>commons-beanutils</groupId>
  57. <artifactId>commons-beanutils</artifactId>
  58. <version>1.9.4</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.slf4j</groupId>
  62. <artifactId>slf4j-api</artifactId>
  63. <version>1.7.2</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>ch.qos.logback</groupId>
  67. <artifactId>logback-core</artifactId>
  68. <version>1.0.7</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>ch.qos.logback</groupId>
  72. <artifactId>logback-classic</artifactId>
  73. <version>1.0.7</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>com.fasterxml.jackson.core</groupId>
  77. <artifactId>jackson-databind</artifactId>
  78. <version>2.8.11.3</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>commons-lang</groupId>
  82. <artifactId>commons-lang</artifactId>
  83. <version>2.6</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>com.alibaba</groupId>
  87. <artifactId>fastjson</artifactId>
  88. <version>1.2.72</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>com.hb</groupId>
  92. <artifactId>xframework</artifactId>
  93. <version>4.2</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>mysql</groupId>
  97. <artifactId>mysql-connector-java</artifactId>
  98. <version>5.1.25</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>net.sourceforge</groupId>
  102. <artifactId>pinyin4j</artifactId>
  103. <version>2.5.0</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.freemarker</groupId>
  107. <artifactId>freemarker</artifactId>
  108. <version>2.3.9</version>
  109. </dependency>
  110. <dependency>
  111. <groupId>org.apache.poi</groupId>
  112. <artifactId>poi</artifactId>
  113. <version>3.17</version>
  114. </dependency>
  115. <dependency>
  116. <groupId>org.apache.poi</groupId>
  117. <artifactId>poi-ooxml</artifactId>
  118. <version>3.17</version>
  119. </dependency>
  120. <dependency>
  121. <groupId>ognl</groupId>
  122. <artifactId>ognl</artifactId>
  123. <version>3.0.6</version>
  124. </dependency>
  125. <dependency>
  126. <groupId>commons-fileupload</groupId>
  127. <artifactId>commons-fileupload</artifactId>
  128. <version>1.3</version>
  129. </dependency>
  130. <dependency>
  131. <groupId>com.squareup.okhttp3</groupId>
  132. <artifactId>okhttp</artifactId>
  133. <version>3.10.0</version>
  134. </dependency>
  135. </dependencies>
  136. <build>
  137. <finalName>lhLoggingCar</finalName>
  138. <plugins>
  139. <plugin>
  140. <groupId>org.apache.tomcat.maven</groupId>
  141. <artifactId>tomcat7-maven-plugin</artifactId>
  142. <version>2.2</version>
  143. <configuration>
  144. <url>http://localhost:8080/manager/text</url>
  145. <path>/car</path>
  146. <uriEncoding>UTF-8</uriEncoding>
  147. <server>tomcat</server>
  148. </configuration>
  149. </plugin>
  150. <plugin>
  151. <artifactId>maven-compiler-plugin</artifactId>
  152. <version>2.3.2</version>
  153. <configuration>
  154. <encoding>utf8</encoding>
  155. </configuration>
  156. </plugin>
  157. <plugin>
  158. <artifactId>maven-war-plugin</artifactId>
  159. <version>2.4</version>
  160. <configuration>
  161. <includeEmptyDirectories>true</includeEmptyDirectories>
  162. </configuration>
  163. </plugin>
  164. </plugins>
  165. </build>
  166. </project>