2026-06-05 10:16:30 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0">
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
<groupId>nyx</groupId>
|
|
|
|
|
<artifactId>spring-controller-fixture</artifactId>
|
|
|
|
|
<version>0.0.1</version>
|
|
|
|
|
<properties>
|
|
|
|
|
<maven.compiler.source>17</maven.compiler.source>
|
|
|
|
|
<maven.compiler.target>17</maven.compiler.target>
|
|
|
|
|
</properties>
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-web</artifactId>
|
2026-06-05 12:27:16 -05:00
|
|
|
<version>7.0.7</version>
|
2026-06-05 10:16:30 -05:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-webmvc</artifactId>
|
2026-06-05 12:27:16 -05:00
|
|
|
<version>7.0.7</version>
|
2026-06-05 10:16:30 -05:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-context</artifactId>
|
2026-06-05 12:27:16 -05:00
|
|
|
<version>7.0.7</version>
|
2026-06-05 10:16:30 -05:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-test</artifactId>
|
2026-06-05 12:27:16 -05:00
|
|
|
<version>7.0.7</version>
|
2026-06-05 10:16:30 -05:00
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>jakarta.servlet</groupId>
|
|
|
|
|
<artifactId>jakarta.servlet-api</artifactId>
|
2026-06-05 12:27:16 -05:00
|
|
|
<version>6.1.0</version>
|
2026-06-05 10:16:30 -05:00
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
</project>
|