pom.xml 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.lc.stu</groupId>
  7. <artifactId>stu_sys</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <name>stu_sys</name>
  10. <properties>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. <maven.compiler.target>11</maven.compiler.target>
  13. <maven.compiler.source>11</maven.compiler.source>
  14. </properties>
  15. <dependencies>
  16. <dependency>
  17. <groupId>javax.servlet</groupId>
  18. <artifactId>javax.servlet-api</artifactId>
  19. <version>4.0.1</version>
  20. <scope>provided</scope>
  21. </dependency>
  22. <dependency>
  23. <groupId>commons-io</groupId>
  24. <artifactId>commons-io</artifactId>
  25. <version>2.6</version>
  26. </dependency>
  27. <!--jstl-->
  28. <dependency>
  29. <groupId>jstl</groupId>
  30. <artifactId>jstl</artifactId>
  31. <version>1.2</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>javax.servlet.jsp</groupId>
  35. <artifactId>jsp-api</artifactId>
  36. <version>2.2</version>
  37. <scope>provided</scope>
  38. </dependency>
  39. <!--mysql-->
  40. <dependency>
  41. <groupId>mysql</groupId>
  42. <artifactId>mysql-connector-java</artifactId>
  43. <version>5.1.47</version>
  44. </dependency>
  45. <!--mybatis-->
  46. <dependency>
  47. <groupId>org.mybatis</groupId>
  48. <artifactId>mybatis</artifactId>
  49. <version>3.5.6</version>
  50. </dependency>
  51. </dependencies>
  52. <build>
  53. <plugins>
  54. <!--Tomcat插件 -->
  55. <plugin>
  56. <groupId>org.apache.tomcat.maven</groupId>
  57. <artifactId>tomcat7-maven-plugin</artifactId>
  58. <version>2.2</version>
  59. <configuration>
  60. <!--项目访问路径 -->
  61. <path>/web02</path>
  62. <!--端口-->
  63. <port>8090</port>
  64. <!-- 编码 -->
  65. <uriEncoding>UTF-8</uriEncoding>
  66. </configuration>
  67. </plugin>
  68. </plugins>
  69. </build>
  70. </project>