pom.xml 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  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>org.example</groupId>
  6. <artifactId>biaoge-handler</artifactId>
  7. <version>1.0-SNAPSHOT</version>
  8. <packaging>war</packaging>
  9. <name>biaoge-handler 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>junit</groupId>
  20. <artifactId>junit</artifactId>
  21. <version>4.11</version>
  22. <scope>test</scope>
  23. </dependency>
  24. <!-- https://mvnrepository.com/artifact/javax.servlet/javax.servlet-api -->
  25. <dependency>
  26. <groupId>javax.servlet</groupId>
  27. <artifactId>javax.servlet-api</artifactId>
  28. <version>4.0.1</version>
  29. <scope>provided</scope>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.mysql</groupId>
  33. <artifactId>mysql-connector-j</artifactId>
  34. <version>8.0.31</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework</groupId>
  38. <artifactId>spring-webmvc</artifactId>
  39. <version>5.3.24</version>
  40. </dependency>
  41. <!-- 文件上传 -->
  42. <dependency>
  43. <groupId>org.apache.httpcomponents</groupId>
  44. <artifactId>httpmime</artifactId>
  45. <version>4.5.7</version>
  46. </dependency>
  47. <!-- JSON -->
  48. <dependency>
  49. <groupId>com.alibaba</groupId>
  50. <artifactId>fastjson</artifactId>
  51. <version>1.2.41</version>
  52. </dependency>
  53. <!-- POI -->
  54. <dependency>
  55. <groupId>org.apache.poi</groupId>
  56. <artifactId>poi-ooxml</artifactId>
  57. <version>3.16</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.springframework</groupId>
  61. <artifactId>spring-webmvc</artifactId>
  62. <version>5.3.17</version>
  63. </dependency>
  64. </dependencies>
  65. <build>
  66. <finalName>biaoge-handler</finalName>
  67. <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
  68. <plugins>
  69. <plugin>
  70. <artifactId>maven-clean-plugin</artifactId>
  71. <version>3.1.0</version>
  72. </plugin>
  73. <!-- see http://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_war_packaging -->
  74. <plugin>
  75. <artifactId>maven-resources-plugin</artifactId>
  76. <version>3.0.2</version>
  77. </plugin>
  78. <plugin>
  79. <artifactId>maven-compiler-plugin</artifactId>
  80. <version>3.8.0</version>
  81. </plugin>
  82. <plugin>
  83. <artifactId>maven-surefire-plugin</artifactId>
  84. <version>2.22.1</version>
  85. </plugin>
  86. <plugin>
  87. <artifactId>maven-war-plugin</artifactId>
  88. <version>3.2.2</version>
  89. </plugin>
  90. <plugin>
  91. <artifactId>maven-install-plugin</artifactId>
  92. <version>2.5.2</version>
  93. </plugin>
  94. <plugin>
  95. <artifactId>maven-deploy-plugin</artifactId>
  96. <version>2.8.2</version>
  97. </plugin>
  98. </plugins>
  99. </pluginManagement>
  100. </build>
  101. </project>