2023-05-20 04:05:43 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
2023-08-28 11:30:09 -04:00
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
|
2023-05-20 04:05:43 -04:00
|
|
|
|
2023-08-28 11:30:09 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2023-05-20 04:05:43 -04:00
|
|
|
|
2023-08-28 11:30:09 -04:00
|
|
|
<groupId>com.baeldung.spring-thymeleaf-attributes.module</groupId>
|
|
|
|
<artifactId>accessing-session-attributes</artifactId>
|
2023-08-03 08:45:32 -04:00
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
2023-08-28 11:30:09 -04:00
|
|
|
<packaging>war</packaging>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung.spring-thymeleaf-attributes</groupId>
|
|
|
|
<artifactId>spring-thymeleaf-attributes</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
<relativePath>../pom.xml</relativePath>
|
|
|
|
</parent>
|
2023-05-20 04:05:43 -04:00
|
|
|
|
2023-08-28 11:30:09 -04:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
|
|
|
<version>${spring.boot.starter.thymeleaf}</version>
|
|
|
|
</dependency>
|
|
|
|
<!-- test scoped -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-engine</artifactId>
|
2024-04-23 12:45:06 -04:00
|
|
|
<version>${junit-jupiter.version}</version>
|
2023-08-28 11:30:09 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-core</artifactId>
|
|
|
|
<version>${mockito.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-junit-jupiter</artifactId>
|
2024-04-23 12:45:06 -04:00
|
|
|
<version>${mockito-junit-jupiter.version}</version>
|
2023-08-28 11:30:09 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-api</artifactId>
|
2024-04-23 12:45:06 -04:00
|
|
|
<version>${junit-jupiter.version}</version>
|
2023-08-28 11:30:09 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2023-05-20 04:05:43 -04:00
|
|
|
|
2023-08-28 11:30:09 -04:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<jvmArguments>
|
|
|
|
-Dfile.encoding="UTF-8" -Xdebug
|
|
|
|
-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5005
|
|
|
|
</jvmArguments>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2023-05-20 04:05:43 -04:00
|
|
|
|
2023-08-28 11:30:09 -04:00
|
|
|
<properties>
|
|
|
|
<start-class>com.baeldung.accesing_session_attributes.SpringWebApplicationInitializer</start-class>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
|
<file.encoding>UTF-8</file.encoding>
|
|
|
|
<downloadSources>true</downloadSources>
|
|
|
|
<downloadJavadocs>true</downloadJavadocs>
|
2024-04-23 12:45:06 -04:00
|
|
|
<mockito.version>5.3.1</mockito.version>
|
2023-08-28 11:30:09 -04:00
|
|
|
<junit.jupiter.engine.version>5.9.3</junit.jupiter.engine.version>
|
|
|
|
<thymeleaf.spring6.version>3.1.1.RELEASE</thymeleaf.spring6.version>
|
|
|
|
<spring.boot.starter.thymeleaf>3.1.1</spring.boot.starter.thymeleaf>
|
|
|
|
</properties>
|
2023-05-20 04:05:43 -04:00
|
|
|
</project>
|