84 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			84 lines
		
	
	
		
			3.3 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 https://maven.apache.org/maven-v4_0_0.xsd">
 | 
						|
 | 
						|
    <modelVersion>4.0.0</modelVersion>
 | 
						|
 | 
						|
    <groupId>com.baeldung.spring-thymeleaf-attributes.module</groupId>
 | 
						|
    <artifactId>accessing-session-attributes</artifactId>
 | 
						|
    <version>0.0.1-SNAPSHOT</version>
 | 
						|
    <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>
 | 
						|
 | 
						|
    <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>
 | 
						|
            <version>${junit.jupiter.engine.version}</version>
 | 
						|
            <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>
 | 
						|
            <version>${mockito.version}</version>
 | 
						|
            <scope>test</scope>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.junit.jupiter</groupId>
 | 
						|
            <artifactId>junit-jupiter-api</artifactId>
 | 
						|
            <version>${junit.jupiter.engine.version}</version>
 | 
						|
            <scope>test</scope>
 | 
						|
        </dependency>
 | 
						|
    </dependencies>
 | 
						|
 | 
						|
    <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>
 | 
						|
 | 
						|
    <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>
 | 
						|
        <junit.jupiter.engine.version>5.9.3</junit.jupiter.engine.version>
 | 
						|
        <mockito.version>5.3.1</mockito.version>
 | 
						|
        <thymeleaf.spring6.version>3.1.1.RELEASE</thymeleaf.spring6.version>
 | 
						|
        <spring.boot.starter.thymeleaf>3.1.1</spring.boot.starter.thymeleaf>
 | 
						|
    </properties>
 | 
						|
</project> |