57 lines
2.0 KiB
XML
57 lines
2.0 KiB
XML
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||
|
<!-- Maven POM configuration for the project -->
|
||
|
<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/maven-v4_0_0.xsd">
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
<groupId>ru.akarpov</groupId>
|
||
|
<artifactId>web-2</artifactId>
|
||
|
<version>1.0-SNAPSHOT</version>
|
||
|
<packaging>war</packaging>
|
||
|
<name>Lab Web 2</name>
|
||
|
<description>Web application for lab 2</description>
|
||
|
|
||
|
<properties>
|
||
|
<maven.compiler.source>17</maven.compiler.source>
|
||
|
<maven.compiler.target>17</maven.compiler.target>
|
||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
</properties>
|
||
|
|
||
|
<dependencies>
|
||
|
<!-- Servlet API -->
|
||
|
<dependency>
|
||
|
<groupId>jakarta.servlet</groupId>
|
||
|
<artifactId>jakarta.servlet-api</artifactId>
|
||
|
<version>5.0.0</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
<!-- JSP API -->
|
||
|
<dependency>
|
||
|
<groupId>jakarta.servlet.jsp</groupId>
|
||
|
<artifactId>jakarta.servlet.jsp-api</artifactId>
|
||
|
<version>3.0.0</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
<!-- JSTL Implementation -->
|
||
|
<dependency>
|
||
|
<groupId>org.glassfish.web</groupId>
|
||
|
<artifactId>jakarta.servlet.jsp.jstl</artifactId>
|
||
|
<version>2.0.0</version>
|
||
|
</dependency>
|
||
|
<!-- Gson for JSON conversion -->
|
||
|
<dependency>
|
||
|
<groupId>com.google.code.gson</groupId>
|
||
|
<artifactId>gson</artifactId>
|
||
|
<version>2.10.1</version>
|
||
|
</dependency>
|
||
|
<!-- JUnit for testing -->
|
||
|
<dependency>
|
||
|
<groupId>junit</groupId>
|
||
|
<artifactId>junit</artifactId>
|
||
|
<version>4.13.2</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
</project>
|