11<?xml version =" 1.0" encoding =" UTF-8" ?>
22<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/maven-v4_0_0.xsd" >
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/maven-v4_0_0.xsd" >
55
6- <modelVersion >4.0.0</modelVersion >
6+ <modelVersion >4.0.0</modelVersion >
77
8- <groupId >com.baeldung.spring-thymeleaf-attributes.module</groupId >
9- <artifactId >accessing-session-attributes</artifactId >
10- <version >0.0.1-SNAPSHOT</version >
11- <packaging >war</packaging >
12-
13- <parent >
14- <groupId >com.baeldung.spring-thymeleaf-attributes</groupId >
15- <artifactId >spring-thymeleaf-attributes</artifactId >
8+ <groupId >com.baeldung.spring-thymeleaf-attributes.module</groupId >
9+ <artifactId >accessing-session-attributes</artifactId >
1610 <version >0.0.1-SNAPSHOT</version >
17- <relativePath >../pom.xml</relativePath >
18- </parent >
11+ <packaging >war</packaging >
12+
13+ <parent >
14+ <groupId >com.baeldung.spring-thymeleaf-attributes</groupId >
15+ <artifactId >spring-thymeleaf-attributes</artifactId >
16+ <version >0.0.1-SNAPSHOT</version >
17+ <relativePath >../pom.xml</relativePath >
18+ </parent >
1919
20- <dependencies >
21- <dependency >
22- <groupId >jakarta.servlet</groupId >
23- <artifactId >jakarta.servlet-api</artifactId >
24- <scope >provided</scope >
25- </dependency >
26- <dependency >
27- <groupId >org.springframework.boot</groupId >
28- <artifactId >spring-boot-starter-web</artifactId >
29- </dependency >
30- <dependency >
31- <groupId >org.thymeleaf</groupId >
32- <artifactId >thymeleaf-spring6</artifactId >
33- <version >${thymeleaf.spring6.version} </version >
34- </dependency >
35- <!-- test scoped -->
36- <dependency >
37- <groupId >org.junit.jupiter</groupId >
38- <artifactId >junit-jupiter-engine</artifactId >
39- <version >${junit.jupiter.engine.version} </version >
40- <scope >test</scope >
41- </dependency >
42- <dependency >
43- <groupId >org.mockito</groupId >
44- <artifactId >mockito-core</artifactId >
45- <version >${mockito.version} </version >
46- <scope >test</scope >
47- </dependency >
48- <dependency >
49- <groupId >org.mockito</groupId >
50- <artifactId >mockito-junit-jupiter</artifactId >
51- <version >${mockito.version} </version >
52- <scope >test</scope >
53- </dependency >
54- <dependency >
55- <groupId >org.junit.jupiter</groupId >
56- <artifactId >junit-jupiter-api</artifactId >
57- <version >${junit.jupiter.engine.version} </version >
58- <scope >test</scope >
59- </dependency >
20+ <dependencies >
21+ <dependency >
22+ <groupId >jakarta.servlet</groupId >
23+ <artifactId >jakarta.servlet-api</artifactId >
24+ <scope >provided</scope >
25+ </dependency >
26+ <dependency >
27+ <groupId >org.springframework.boot</groupId >
28+ <artifactId >spring-boot-starter-web</artifactId >
29+ </dependency >
30+ <dependency >
31+ <groupId >org.thymeleaf</groupId >
32+ <artifactId >thymeleaf-spring6</artifactId >
33+ <version >${thymeleaf.spring6.version} </version >
34+ </dependency >
35+ <!-- test scoped -->
36+ <dependency >
37+ <groupId >org.junit.jupiter</groupId >
38+ <artifactId >junit-jupiter-engine</artifactId >
39+ <version >${junit.jupiter.engine.version} </version >
40+ <scope >test</scope >
41+ </dependency >
42+ <dependency >
43+ <groupId >org.mockito</groupId >
44+ <artifactId >mockito-core</artifactId >
45+ <version >${mockito.version} </version >
46+ <scope >test</scope >
47+ </dependency >
48+ <dependency >
49+ <groupId >org.mockito</groupId >
50+ <artifactId >mockito-junit-jupiter</artifactId >
51+ <version >${mockito.version} </version >
52+ <scope >test</scope >
53+ </dependency >
54+ <dependency >
55+ <groupId >org.junit.jupiter</groupId >
56+ <artifactId >junit-jupiter-api</artifactId >
57+ <version >${junit.jupiter.engine.version} </version >
58+ <scope >test</scope >
59+ </dependency >
6060
61- </dependencies >
61+ </dependencies >
6262
63- <build >
64- <resources >
65- <resource >
66- <directory >src/main/resources</directory >
67- </resource >
68- </resources >
63+ <build >
64+ <resources >
65+ <resource >
66+ <directory >src/main/resources</directory >
67+ </resource >
68+ </resources >
6969
70- <plugins >
71- <plugin >
72- <groupId >org.springframework.boot</groupId >
73- <artifactId >spring-boot-maven-plugin</artifactId >
74- <configuration >
75- <jvmArguments >
76- -Dfile.encoding="UTF-8" -Xdebug
77- -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5005
78- </jvmArguments >
79- </configuration >
80- </plugin >
81- </plugins >
82- </build >
70+ <plugins >
71+ <plugin >
72+ <groupId >org.springframework.boot</groupId >
73+ <artifactId >spring-boot-maven-plugin</artifactId >
74+ <configuration >
75+ <jvmArguments >
76+ -Dfile.encoding="UTF-8" -Xdebug
77+ -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5005
78+ </jvmArguments >
79+ </configuration >
80+ </plugin >
81+ </plugins >
82+ </build >
8383
84- <properties >
85- <start-class >com.baeldung.accesing_session_attributes.SpringWebApplicationInitializer</start-class >
86- <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
87- <project .reporting.outputEncoding>UTF-8</project .reporting.outputEncoding>
88- <file .encoding>UTF-8</file .encoding>
89- <downloadSources >true</downloadSources >
90- <downloadJavadocs >true</downloadJavadocs >
91- <junit .jupiter.engine.version>5.9.3</junit .jupiter.engine.version>
92- <mockito .version>5.3.1</mockito .version>
93- <thymeleaf .spring6.version>3.1.1.RELEASE</thymeleaf .spring6.version>
94- </properties >
84+ <properties >
85+ <start-class >com.baeldung.accesing_session_attributes.SpringWebApplicationInitializer</start-class >
86+ <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
87+ <project .reporting.outputEncoding>UTF-8</project .reporting.outputEncoding>
88+ <file .encoding>UTF-8</file .encoding>
89+ <downloadSources >true</downloadSources >
90+ <downloadJavadocs >true</downloadJavadocs >
91+ <junit .jupiter.engine.version>5.9.3</junit .jupiter.engine.version>
92+ <mockito .version>5.3.1</mockito .version>
93+ <thymeleaf .spring6.version>3.1.1.RELEASE</thymeleaf .spring6.version>
94+ </properties >
9595</project >
0 commit comments