68 lines
2.1 KiB
XML
68 lines
2.1 KiB
XML
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
||
|
<groupId>org.example</groupId>
|
||
|
<artifactId>tomcat_main</artifactId>
|
||
|
<version>1.0-SNAPSHOT</version>
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
<configuration>
|
||
|
<source>9</source>
|
||
|
<target>9</target>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
<packaging>war</packaging>
|
||
|
|
||
|
<properties>
|
||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||
|
<maven.compiler.source>11</maven.compiler.source>
|
||
|
<maven.compiler.target>11</maven.compiler.target>
|
||
|
<java.version>11</java.version>
|
||
|
<tomcat.version>9.0.39</tomcat.version>
|
||
|
</properties>
|
||
|
|
||
|
<dependencies>
|
||
|
<!-- jstl表达式依赖-->
|
||
|
<dependency>
|
||
|
<groupId>javax.servlet.jsp.jstl</groupId>
|
||
|
<artifactId>javax.servlet.jsp.jstl-api</artifactId>
|
||
|
<version>1.2.1</version>
|
||
|
</dependency>
|
||
|
<!-- taglibs 标签库依赖-->
|
||
|
<dependency>
|
||
|
<groupId>taglibs</groupId>
|
||
|
<artifactId>standard</artifactId>
|
||
|
<version>1.1.2</version>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- tomcat依赖-->
|
||
|
<dependency>
|
||
|
<groupId>org.apache.tomcat.embed</groupId>
|
||
|
<artifactId>tomcat-embed-core</artifactId>
|
||
|
<version>9.0.39</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.tomcat.embed</groupId>
|
||
|
<artifactId>tomcat-embed-jasper</artifactId>
|
||
|
<version>9.0.39</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
<!-- mysql依赖-->
|
||
|
<dependency>
|
||
|
<groupId>mysql</groupId>
|
||
|
<artifactId>mysql-connector-java</artifactId>
|
||
|
<version>8.0.22</version>
|
||
|
</dependency>
|
||
|
|
||
|
</dependencies>
|
||
|
</project>
|